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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
|
;; @file
; IPRT - Global YASM/NASM macros
;
;
; Copyright (C) 2006-2019 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.
;
; The contents of this file may alternatively be used under the terms
; of the Common Development and Distribution License Version 1.0
; (CDDL) only, as it comes in the "COPYING.CDDL" file of the
; VirtualBox OSE distribution, in which case the provisions of the
; CDDL are applicable instead of those of the GPL.
;
; You may elect to license modified versions of this file under the
; terms and conditions of either the GPL or the CDDL or both.
;
; Special hack for bs3kit.
%ifdef RT_ASMDEFS_INC_FIRST_FILE
%include "asmdefs-first.mac"
%endif
%ifndef ___iprt_asmdefs_mac
%define ___iprt_asmdefs_mac
;; @defgroup grp_rt_cdefs_size Size Constants
; (Of course, these are binary computer terms, not SI.)
; @{
;; 1 K (Kilo) (1 024).
%define _1K 000000400h
;; 4 K (Kilo) (4 096).
%define _4K 000001000h
;; 8 K (Kilo) (8 192).
%define _8K 000002000h
;; 16 K (Kilo) (16 384).
%define _16K 000004000h
;; 32 K (Kilo) (32 768).
%define _32K 000008000h
;; 64 K (Kilo) (65 536).
%define _64K 000010000h
;; 128 K (Kilo) (131 072).
%define _128K 000020000h
;; 256 K (Kilo) (262 144).
%define _256K 000040000h
;; 512 K (Kilo) (524 288).
%define _512K 000080000h
;; 1 M (Mega) (1 048 576).
%define _1M 000100000h
;; 2 M (Mega) (2 097 152).
%define _2M 000200000h
;; 4 M (Mega) (4 194 304).
%define _4M 000400000h
;; 1 G (Giga) (1 073 741 824).
%define _1G 040000000h
;; 2 G (Giga) (2 147 483 648).
%define _2G 00000000080000000h
;; 4 G (Giga) (4 294 967 296).
%define _4G 00000000100000000h
;; 1 T (Tera) (1 099 511 627 776).
%define _1T 00000010000000000h
;; 1 P (Peta) (1 125 899 906 842 624).
%define _1P 00004000000000000h
;; 1 E (Exa) (1 152 921 504 606 846 976).
%define _1E 01000000000000000h
;; 2 E (Exa) (2 305 843 009 213 693 952).
%define _2E 02000000000000000h
;; @}
;;
; Make the mask for the given bit.
%define RT_BIT(bit) (1 << bit)
;;
; Make the mask for the given bit.
%define RT_BIT_32(bit) (1 << bit)
;;
; Make the mask for the given bit.
%define RT_BIT_64(bit) (1 << bit)
;;
; Makes a 32-bit unsigned (not type safe, but whatever) out of four byte values.
%define RT_MAKE_U32_FROM_U8(b0, b1, b2, b3) ( (b3 << 24) | (b2 << 16) | (b1 << 8) | b0 )
;; Preprocessor concatenation macro.
%define RT_CONCAT(a_1,a_2) a_1 %+ a_2
;; Preprocessor concatenation macro, three arguments.
%define RT_CONCAT3(a_1,a_2,a_3) a_1 %+ a_2 %+ a_3
;; Preprocessor concatenation macro, four arguments.
%define RT_CONCAT4(a_1,a_2,a_3,a_4) a_1 %+ a_2 %+ a_3 %+ a_4
;; Define ASM_FORMAT_PE64 if applicable.
%ifdef ASM_FORMAT_PE
%ifdef RT_ARCH_AMD64
%define ASM_FORMAT_PE64 1
%endif
%endif
;;
; SEH64 macros.
%ifdef RT_ASM_WITH_SEH64
%ifndef ASM_FORMAT_PE64
%undef RT_ASM_WITH_SEH64
%endif
%endif
;;
; Records a xBP push.
%macro SEH64_PUSH_xBP 0
%ifdef RT_ASM_WITH_SEH64
[pushreg rbp]
%endif
%endmacro
;;
; Records a general register push.
; @param 1 Register name.
%macro SEH64_PUSH_GREG 1
%ifdef RT_ASM_WITH_SEH64
[pushreg %1]
%endif
%endmacro
;;
; Sets xBP as frame pointer that's pointing to a stack position %1 relative to xBP.
%macro SEH64_SET_FRAME_xBP 1
%ifdef RT_ASM_WITH_SEH64
[setframe rbp, %1]
%endif
%endmacro
;;
; Records an ADD xSP, %1.
%macro SEH64_ALLOCATE_STACK 1
%ifdef RT_ASM_WITH_SEH64
[allocstack %1]
%endif
%endmacro
;;
; Ends the prologue.
%macro SEH64_END_PROLOGUE 0
%ifdef RT_ASM_WITH_SEH64
[endprolog]
%endif
%endmacro
;;
; Align code, pad with INT3.
%define ALIGNCODE(alignment) align alignment, db 0cch
;;
; Align data, pad with ZEROs.
%define ALIGNDATA(alignment) align alignment, db 0
;;
; Align BSS, pad with ZEROs.
%define ALIGNBSS(alignment) align alignment, resb 1
;;
; NAME_OVERLOAD can be defined by a .asm module to modify all the
; names created using the name macros in this files.
; This is handy when you've got some kind of template code.
%ifndef NAME_OVERLOAD
%define NAME_OVERLOAD(name) name
%endif
;;
; Mangles the given name so it can be referenced using DECLASM() in the
; C/C++ world.
%ifndef ASM_FORMAT_BIN
%ifdef RT_ARCH_X86
%ifdef RT_OS_OS2
%define NAME(name) _ %+ NAME_OVERLOAD(name)
%endif
%ifdef RT_OS_WINDOWS
%define NAME(name) _ %+ NAME_OVERLOAD(name)
%endif
%endif
%ifdef RT_OS_DARWIN
%define NAME(name) _ %+ NAME_OVERLOAD(name)
%endif
%endif
%ifndef NAME
%define NAME(name) NAME_OVERLOAD(name)
%endif
;;
; Mangles the given C name so it will _import_ the right symbol.
%ifdef ASM_FORMAT_PE
%define IMPNAME(name) __imp_ %+ NAME(name)
%else
%define IMPNAME(name) NAME(name)
%endif
;;
; Gets the pointer to an imported object.
%ifdef ASM_FORMAT_PE
%ifdef RT_ARCH_AMD64
%define IMP(name) qword [IMPNAME(name) wrt rip]
%else
%define IMP(name) dword [IMPNAME(name)]
%endif
%else
%define IMP(name) IMPNAME(name)
%endif
;;
; Gets the pointer to an imported object.
%ifdef ASM_FORMAT_PE
%ifdef RT_ARCH_AMD64
%define IMP_SEG(SegOverride, name) qword [SegOverride:IMPNAME(name) wrt rip]
%else
%define IMP_SEG(SegOverride, name) dword [SegOverride:IMPNAME(name)]
%endif
%else
%define IMP_SEG(SegOverride, name) IMPNAME(name)
%endif
;;
; Declares an imported object for use with IMP2.
; @note May change the current section!
%macro EXTERN_IMP2 1
extern IMPNAME(%1)
BEGINDATA
%ifdef ASM_FORMAT_MACHO
g_Imp2_ %+ %1: RTCCPTR_DEF IMPNAME(%1)
%endif
%endmacro
;;
; Gets the pointer to an imported object, version 2.
%ifdef ASM_FORMAT_PE
%ifdef RT_ARCH_AMD64
%define IMP2(name) qword [IMPNAME(name) wrt rip]
%else
%define IMP2(name) dword [IMPNAME(name)]
%endif
%elifdef ASM_FORMAT_ELF
%ifdef PIC
%ifdef RT_ARCH_AMD64
%define IMP2(name) qword [rel IMPNAME(name) wrt ..got]
%else
%define IMP2(name) IMPNAME(name) wrt ..plt
%endif
%endif
%elifdef ASM_FORMAT_MACHO
%define IMP2(name) RTCCPTR_PRE [g_Imp2_ %+ name xWrtRIP]
%endif
%ifndef IMP2
%define IMP2(name) IMPNAME(name)
%endif
;;
; Global marker which is DECLASM() compatible.
%macro GLOBALNAME 1
%ifndef ASM_FORMAT_BIN
global NAME(%1)
%endif
NAME(%1):
%endmacro
;;
; Global exported marker which is DECLASM() compatible.
%macro EXPORTEDNAME 1
%ifdef ASM_FORMAT_PE
export %1=NAME(%1)
%endif
%ifdef __NASM__
%ifdef ASM_FORMAT_OMF
export NAME(%1) NAME(%1)
%endif
%endif
GLOBALNAME %1
%endmacro
;;
; Global marker which is DECLASM() compatible.
%macro GLOBALNAME_EX 2
%ifndef ASM_FORMAT_BIN
%ifdef ASM_FORMAT_ELF
global NAME(%1):%2
%else
global NAME(%1)
%endif
%endif
NAME(%1):
%endmacro
;;
; Global exported marker which is DECLASM() compatible.
%macro EXPORTEDNAME_EX 2
%ifdef ASM_FORMAT_PE
export %1=NAME(%1)
%endif
%ifdef __NASM__
%ifdef ASM_FORMAT_OMF
export NAME(%1) NAME(%1)
%endif
%endif
GLOBALNAME_EX %1, %2
%endmacro
;;
; Begins a C callable procedure.
%macro BEGINPROC 1
%ifdef RT_ASM_WITH_SEH64
global NAME(%1):function
proc_frame NAME(%1)
%else
GLOBALNAME_EX %1, function hidden
%endif
%endmacro
;;
; Begins a C callable exported procedure.
%macro BEGINPROC_EXPORTED 1
%ifdef RT_ASM_WITH_SEH64
%ifdef ASM_FORMAT_PE
export %1=NAME(%1)
%endif
global NAME(%1):function
proc_frame NAME(%1)
%else
EXPORTEDNAME_EX %1, function
%endif
%endmacro
;;
; Ends a C callable procedure.
%macro ENDPROC 1
%ifdef RT_ASM_WITH_SEH64
endproc_frame
%endif
GLOBALNAME_EX %1 %+ _EndProc, function hidden
%ifdef ASM_FORMAT_ELF
%ifndef __NASM__ ; nasm does this in the global directive.
size NAME(%1) NAME(%1 %+ _EndProc) - NAME(%1)
size NAME(%1 %+ _EndProc) 0
%endif
%endif
db 0xCC, 0xCC, 0xCC, 0xCC
%endmacro
;
; Do OMF and Mach-O/Yasm segment definitions
;
; Both format requires this to get the segment order right, in the Mach-O/Yasm case
; it's only to make sure the .bss section ends up last (it's not declared here).
;
%ifdef ASM_FORMAT_OMF
%ifndef RT_NOINC_SEGMENTS
; 16-bit segments first (OMF / OS/2 specific).
%ifdef RT_INCL_16BIT_SEGMENTS
segment DATA16 public CLASS=FAR_DATA align=16 use16
segment DATA16_INIT public CLASS=FAR_DATA align=16 use16
group DGROUP16 DATA16 DATA16_INIT
;;
; Begins 16-bit data
%macro BEGINDATA16 0
segment DATA16
%endmacro
;;
; Begins 16-bit init data
%macro BEGINDATA16INIT 0
segment DATA16_INIT
%endmacro
segment CODE16 public CLASS=FAR_CODE align=16 use16
segment CODE16_INIT public CLASS=FAR_CODE align=16 use16
group CGROUP16 CODE16 CODE16_INIT
;;
; Begins 16-bit code
%macro BEGINCODE16 0
segment CODE16
%endmacro
;;
; Begins 16-bit init code
%macro BEGINCODE16INIT 0
segment CODE16_INIT
%endmacro
%endif
; 32-bit segments.
segment TEXT32 public CLASS=CODE align=16 use32 flat
segment DATA32 public CLASS=DATA align=16 use32 flat
segment BSS32 public CLASS=BSS align=16 use32 flat
; Make the TEXT32 segment default.
segment TEXT32
%endif ; RT_NOINC_SEGMENTS
%endif
%ifdef ASM_FORMAT_MACHO
%ifdef __YASM__
section .text
section .data
%endif
%endif
;;
; Begins code
%ifdef ASM_FORMAT_OMF
%macro BEGINCODE 0
segment TEXT32
%endmacro
%else
%macro BEGINCODE 0
section .text
%endmacro
%endif
;;
; Begins constant (read-only) data
;
; @remarks This is mapped to the CODE section/segment when there isn't
; any dedicated const section/segment. (There is code that
; assumes this, so don't try change it.)
%ifdef ASM_FORMAT_OMF
%macro BEGINCONST 0
segment TEXT32
%endmacro
%else
%macro BEGINCONST 0
%ifdef ASM_FORMAT_MACHO ;; @todo check the other guys too.
section .rodata
%else
section .text
%endif
%endmacro
%endif
;;
; Begins initialized data
%ifdef ASM_FORMAT_OMF
%macro BEGINDATA 0
segment DATA32
%endmacro
%else
%macro BEGINDATA 0
section .data
%endmacro
%endif
;;
; Begins uninitialized data
%ifdef ASM_FORMAT_OMF
%macro BEGINBSS 0
segment BSS32
%endmacro
%else
%macro BEGINBSS 0
section .bss
%endmacro
%endif
;; @def ARCH_BITS
; Defines the bit count of the current context.
%ifndef ARCH_BITS
%ifdef RT_ARCH_AMD64
%define ARCH_BITS 64
%else
%define ARCH_BITS 32
%endif
%endif
;; @def HC_ARCH_BITS
; Defines the host architechture bit count.
%ifndef HC_ARCH_BITS
%ifndef IN_RC
%define HC_ARCH_BITS ARCH_BITS
%else
%define HC_ARCH_BITS 32
%endif
%endif
;; @def R3_ARCH_BITS
; Defines the host ring-3 architechture bit count.
%ifndef R3_ARCH_BITS
%ifdef IN_RING3
%define R3_ARCH_BITS ARCH_BITS
%else
%define R3_ARCH_BITS HC_ARCH_BITS
%endif
%endif
;; @def R0_ARCH_BITS
; Defines the host ring-0 architechture bit count.
%ifndef R0_ARCH_BITS
%ifdef IN_RING0
%define R0_ARCH_BITS ARCH_BITS
%else
%define R0_ARCH_BITS HC_ARCH_BITS
%endif
%endif
;; @def GC_ARCH_BITS
; Defines the guest architechture bit count.
%ifndef GC_ARCH_BITS
%ifdef IN_RC
%define GC_ARCH_BITS ARCH_BITS
%else
%define GC_ARCH_BITS 32
%endif
%endif
;; @def RTHCPTR_DEF
; The pesudo-instruction used to declare an initialized pointer variable in the host context.
%if HC_ARCH_BITS == 64
%define RTHCPTR_DEF dq
%else
%define RTHCPTR_DEF dd
%endif
;; @def RTHCPTR_RES
; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
; variable of the host context.
%if HC_ARCH_BITS == 64
%define RTHCPTR_RES resq
%else
%define RTHCPTR_RES resd
%endif
;; @def RTHCPTR_PRE
; The memory operand prefix used for a pointer in the host context.
%if HC_ARCH_BITS == 64
%define RTHCPTR_PRE qword
%else
%define RTHCPTR_PRE dword
%endif
;; @def RTHCPTR_CB
; The size in bytes of a pointer in the host context.
%if HC_ARCH_BITS == 64
%define RTHCPTR_CB 8
%else
%define RTHCPTR_CB 4
%endif
;; @def RTR0PTR_DEF
; The pesudo-instruction used to declare an initialized pointer variable in the ring-0 host context.
%if R0_ARCH_BITS == 64
%define RTR0PTR_DEF dq
%else
%define RTR0PTR_DEF dd
%endif
;; @def RTR0PTR_RES
; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
; variable of the ring-0 host context.
%if R0_ARCH_BITS == 64
%define RTR0PTR_RES resq
%else
%define RTR0PTR_RES resd
%endif
;; @def RTR0PTR_PRE
; The memory operand prefix used for a pointer in the ring-0 host context.
%if R0_ARCH_BITS == 64
%define RTR0PTR_PRE qword
%else
%define RTR0PTR_PRE dword
%endif
;; @def RTR0PTR_CB
; The size in bytes of a pointer in the ring-0 host context.
%if R0_ARCH_BITS == 64
%define RTR0PTR_CB 8
%else
%define RTR0PTR_CB 4
%endif
;; @def RTR3PTR_DEF
; The pesudo-instruction used to declare an initialized pointer variable in the ring-3 host context.
%if R3_ARCH_BITS == 64
%define RTR3PTR_DEF dq
%else
%define RTR3PTR_DEF dd
%endif
;; @def RTR3PTR_RES
; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
; variable of the ring-3 host context.
%if R3_ARCH_BITS == 64
%define RTR3PTR_RES resq
%else
%define RTR3PTR_RES resd
%endif
;; @def RTR3PTR_PRE
; The memory operand prefix used for a pointer in the ring-3 host context.
%if R3_ARCH_BITS == 64
%define RTR3PTR_PRE qword
%else
%define RTR3PTR_PRE dword
%endif
;; @def RTR3PTR_CB
; The size in bytes of a pointer in the ring-3 host context.
%if R3_ARCH_BITS == 64
%define RTR3PTR_CB 8
%else
%define RTR3PTR_CB 4
%endif
;; @def RTGCPTR_DEF
; The pesudo-instruction used to declare an initialized pointer variable in the guest context.
%if GC_ARCH_BITS == 64
%define RTGCPTR_DEF dq
%else
%define RTGCPTR_DEF dd
%endif
;; @def RTGCPTR_RES
; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
; variable of the guest context.
%if GC_ARCH_BITS == 64
%define RTGCPTR_RES resq
%else
%define RTGCPTR_RES resd
%endif
%define RTGCPTR32_RES resd
%define RTGCPTR64_RES resq
;; @def RTGCPTR_PRE
; The memory operand prefix used for a pointer in the guest context.
%if GC_ARCH_BITS == 64
%define RTGCPTR_PRE qword
%else
%define RTGCPTR_PRE dword
%endif
;; @def RTGCPTR_CB
; The size in bytes of a pointer in the guest context.
%if GC_ARCH_BITS == 64
%define RTGCPTR_CB 8
%else
%define RTGCPTR_CB 4
%endif
;; @def RTRCPTR_DEF
; The pesudo-instruction used to declare an initialized pointer variable in the raw mode context.
%define RTRCPTR_DEF dd
;; @def RTRCPTR_RES
; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
; variable of the raw mode context.
%define RTRCPTR_RES resd
;; @def RTRCPTR_PRE
; The memory operand prefix used for a pointer in the raw mode context.
%define RTRCPTR_PRE dword
;; @def RTRCPTR_CB
; The size in bytes of a pointer in the raw mode context.
%define RTRCPTR_CB 4
;; @def RT_CCPTR_DEF
; The pesudo-instruction used to declare an initialized pointer variable in the current context.
;; @def RT_CCPTR_RES
; The pesudo-instruction used to declare (=reserve space for) an uninitialized pointer
; variable of the current context.
;; @def RT_CCPTR_PRE
; The memory operand prefix used for a pointer in the current context.
;; @def RT_CCPTR_CB
; The size in bytes of a pointer in the current context.
%ifdef IN_RC
%define RTCCPTR_DEF RTRCPTR_DEF
%define RTCCPTR_RES RTRCPTR_RES
%define RTCCPTR_PRE RTRCPTR_PRE
%define RTCCPTR_CB RTRCPTR_CB
%else
%ifdef IN_RING0
%define RTCCPTR_DEF RTR0PTR_DEF
%define RTCCPTR_RES RTR0PTR_RES
%define RTCCPTR_PRE RTR0PTR_PRE
%define RTCCPTR_CB RTR0PTR_CB
%else
%define RTCCPTR_DEF RTR3PTR_DEF
%define RTCCPTR_RES RTR3PTR_RES
%define RTCCPTR_PRE RTR3PTR_PRE
%define RTCCPTR_CB RTR3PTR_CB
%endif
%endif
;; @def RTHCPHYS_DEF
; The pesudo-instruction used to declare an initialized host physical address.
%define RTHCPHYS_DEF dq
;; @def RTHCPTR_RES
; The pesudo-instruction used to declare (=reserve space for) an uninitialized
; host physical address variable
%define RTHCPHYS_RES resq
;; @def RTHCPTR_PRE
; The memory operand prefix used for a host physical address.
%define RTHCPHYS_PRE qword
;; @def RTHCPHYS_CB
; The size in bytes of a host physical address.
%define RTHCPHYS_CB 8
;; @def RTGCPHYS_DEF
; The pesudo-instruction used to declare an initialized guest physical address.
%define RTGCPHYS_DEF dq
;; @def RTGCPHYS_RES
; The pesudo-instruction used to declare (=reserve space for) an uninitialized
; guest physical address variable
%define RTGCPHYS_RES resq
;; @def RTGCPTR_PRE
; The memory operand prefix used for a guest physical address.
%define RTGCPHYS_PRE qword
;; @def RTGCPHYS_CB
; The size in bytes of a guest physical address.
%define RTGCPHYS_CB 8
;;
; The size of the long double C/C++ type.
; On 32-bit Darwin this is 16 bytes, on L4, Linux, OS/2 and Windows
; it's 12 bytes.
; @todo figure out what 64-bit Windows does (I don't recall right now).
%ifdef RT_ARCH_X86
%ifdef RT_OS_DARWIN
%define RTLRD_CB 16
%else
%define RTLRD_CB 12
%endif
%else
%define RTLRD_CB 16
%endif
;; @def ASM_CALL64_GCC
; Indicates that we're using the GCC 64-bit calling convention.
; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
;; @def ASM_CALL64_MSC
; Indicates that we're using the Microsoft 64-bit calling convention (fastcall on steroids).
; @see @ref sec_vboxrem_amd64_compare (in VBoxREMWrapper.cpp) for an ABI description.
; Note: On X86 we're using cdecl unconditionally. There is not yet any common
; calling convention on AMD64, that's why we need to support two different ones.)
%ifdef RT_ARCH_AMD64
%ifndef ASM_CALL64_GCC
%ifndef ASM_CALL64_MSC
; define it based on the object format.
%ifdef ASM_FORMAT_PE
%define ASM_CALL64_MSC
%else
%define ASM_CALL64_GCC
%endif
%endif
%else
; sanity check.
%ifdef ASM_CALL64_MSC
%error "Only one of the ASM_CALL64_* defines should be defined!"
%endif
%endif
%else
;later; %ifdef ASM_CALL64_GCC
;later; %error "ASM_CALL64_GCC is defined without RT_ARCH_AMD64!" ASM_CALL64_GCC
;later; %endif
;later; %ifdef ASM_CALL64_MSC
;later; %error "ASM_CALL64_MSC is defined without RT_ARCH_AMD64!" ASM_CALL64_MSC
;later; %endif
%endif
;; @def RT_NOCRT
; Symbol name wrapper for the No-CRT bits.
;
; In order to coexist in the same process as other CRTs, we need to
; decorate the symbols such that they don't conflict the ones in the
; other CRTs. The result of such conflicts / duplicate symbols can
; confuse the dynamic loader on unix like systems.
;
; @remark Always feed the name to this macro first and then pass the result
; on to the next *NAME* macro.
;
%ifndef RT_WITHOUT_NOCRT_WRAPPERS
%define RT_NOCRT(name) nocrt_ %+ name
%else
%define RT_NOCRT(name) name
%endif
;; @def RT_NOCRT_BEGINPROC
; Starts a NOCRT procedure, taking care of name wrapping and aliasing.
;
; Aliasing (weak ones, if supported) will be created when RT_WITH_NOCRT_ALIASES
; is defined and RT_WITHOUT_NOCRT_WRAPPERS isn't.
;
%macro RT_NOCRT_BEGINPROC 1
%ifdef RT_WITH_NOCRT_ALIASES
BEGINPROC RT_NOCRT(%1)
%ifdef ASM_FORMAT_ELF
global NAME(%1)
weak NAME(%1)
NAME(%1):
%else
GLOBALNAME %1
%endif
%else ; !RT_WITH_NOCRT_ALIASES
BEGINPROC RT_NOCRT(%1)
%endif ; !RT_WITH_NOCRT_ALIASES
%endmacro ; RT_NOCRT_BEGINPROC
%ifdef RT_WITH_NOCRT_ALIASES
%ifdef RT_WITHOUT_NOCRT_WRAPPERS
%error "RT_WITH_NOCRT_ALIASES and RT_WITHOUT_NOCRT_WRAPPERS doesn't mix."
%endif
%endif
;; @def xCB
; The stack unit size / The register unit size.
;; @def xSP
; The stack pointer register (RSP or ESP).
;; @def xBP
; The base pointer register (RBP or ESP).
;; @def xAX
; RAX or EAX depending on context.
;; @def xBX
; RBX or EBX depending on context.
;; @def xCX
; RCX or ECX depending on context.
;; @def xDX
; RDX or EDX depending on context.
;; @def xDI
; RDI or EDI depending on context.
;; @def xSI
; RSI or ESI depending on context.
;; @def xWrtRIP
; 'wrt rip' for AMD64 targets, nothing for x86 ones.
%ifdef RT_ARCH_AMD64
%define xCB 8
%define xSP rsp
%define xBP rbp
%define xAX rax
%define xBX rbx
%define xCX rcx
%define xDX rdx
%define xDI rdi
%define xSI rsi
%define xWrtRIP wrt rip
%else
%define xCB 4
%define xSP esp
%define xBP ebp
%define xAX eax
%define xBX ebx
%define xCX ecx
%define xDX edx
%define xDI edi
%define xSI esi
%define xWrtRIP
%endif
;
; NASM sets __PASS__ to 0 in preprocess-only mode, and to 3 when only generating dependencies.
; YASM has no such setting which is why we must rely on kBuild to tell us what we're doing.
; For simplicity, we'll set the kBuild macro when using NASM.
;
%ifndef KBUILD_GENERATING_MAKEFILE_DEPENDENCIES
%ifdef __NASM__
%if __PASS__ == 0 || __PASS__ == 3
%define KBUILD_GENERATING_MAKEFILE_DEPENDENCIES
%endif
%endif
%endif
;
; Some simple compile time assertions.
;
; Note! Requires new kBuild to work with YASM (see above).
;
;;
; Structure size assertion macro.
%define AssertCompileSize(a_Type, a_Size) AssertCompileSizeML a_Type, a_Size
%macro AssertCompileSizeML 2
%ifndef KBUILD_GENERATING_MAKEFILE_DEPENDENCIES
%assign AssertVar_cbActual %1 %+ _size
%assign AssertVar_cbExpected %2
%if AssertVar_cbActual != AssertVar_cbExpected
%error %1 is AssertVar_cbActual bytes instead of AssertVar_cbExpected
%endif
%endif
%endmacro
;;
; Structure size alignment assertion macro.
%define AssertCompileSizeAlignment(a_Type, a_Align) AssertCompileSizeAlignmentML a_Type, a_Align
%macro AssertCompileSizeAlignmentML 2
%ifndef KBUILD_GENERATING_MAKEFILE_DEPENDENCIES
%assign AssertVar_cbActual %1 %+ _size
%assign AssertVar_cbAlignment %2
%if (AssertVar_cbActual & (AssertVar_cbAlignment - 1)) != 0
%error %1 is AssertVar_cbActual bytes, expected size with AssertVar_cbAlignment bytes alignment.
%endif
%endif
%endmacro
;;
; Structure member offset assertion macro.
%define AssertCompileMemberOffset(a_Type, a_Member, a_off) AssertCompileMemberOffsetML a_Type, a_Member, a_off
%macro AssertCompileMemberOffsetML 3
%ifndef KBUILD_GENERATING_MAKEFILE_DEPENDENCIES
%assign AssertVar_offActual %1 %+ . %+ %2
%assign AssertVar_offExpected %3
%if AssertVar_offActual != AssertVar_offExpected
%error %1 %+ . %+ %2 is at AssertVar_offActual instead of AssertVar_offExpected
%endif
%endif
%endmacro
;;
; Structure member alignment assertion macro.
%define AssertCompileMemberAlignment(a_Type, a_Member, a_cbAlign) AssertCompileMemberAlignmentML a_Type, a_Member, a_cbAlign
%macro AssertCompileMemberAlignmentML 3
%ifndef KBUILD_GENERATING_MAKEFILE_DEPENDENCIES
%assign AssertVar_offActual %1 %+ . %+ %2
%assign AssertVar_cbAlign %3
%if AssertVar_offActual & (AssertVar_cbAlign - 1)
%error %1 %+ . %+ %2 is at AssertVar_offActual, expected AssertVar_cbAlign alignment
%endif
%endif
%endmacro
;;
; Generic compile time expression assertion.
%define AssertCompile(a_Expr) AssertCompileML { a_Expr }
%macro AssertCompileML 1
%ifndef KBUILD_GENERATING_MAKEFILE_DEPENDENCIES
%if (%1) != 1
%assign AssertVar_uResult %1
%error %1 => AssertVar_uResult
%endif
%endif
%endmacro
%endif
|