-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlibwindows.inc
1256 lines (1063 loc) · 30 KB
/
libwindows.inc
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
; libwindows.inc - A 32-bit and 64-bit win32 assembly helper library
; Made by Bastiaan van der Plaat (https://bplaat.nl/)
; Use -DWIN64 to enable 64-bit mode
; Setup instruction set
%ifdef WIN64
[bits 64]
%else
[bits 32]
%endif
; Setup executable base
%define _base 0x400000
%define _alignment 0x1000
[org _base]
%define RVA(_address) (_address - _base)
; Virtual extended registers
%ifdef WIN64
%idefine _ax rax
%idefine _bx rbx
%idefine _cx rcx
%idefine _dx rdx
%idefine _si rsi
%idefine _di rdi
%idefine _bp rbp
%idefine _sp rsp
%else
%idefine _ax eax
%idefine _bx ebx
%idefine _cx ecx
%idefine _dx edx
%idefine _si esi
%idefine _di edi
%idefine _bp ebp
%idefine _sp esp
%endif
; Sizes
%define BYTE_size 1
%define WORD_size 2
%define DWORD_size 4
%define QWORD_size 8
%ifdef WIN64
%idefine pointer qword
%idefine dp dq
%define POINTER_size QWORD_size
%else
%idefine pointer dword
%idefine dp dd
%define POINTER_size DWORD_size
%endif
; Unicode macro
%define utf16(string) __?utf16?__(string)
; Header
%define HEADER_GUI 2
%define HEADER_CONSOLE 3
%define HEADER_HAS_NO_RESOURCES 0
%define HEADER_HAS_RESOURCES 1
%macro header 2
_header:
; MS-DOS Header
db 0x4D, 0x5A, 0x90, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00
db 0xB8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
db 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
db 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00
; MS-DOS Stub
db 0x0E, 0x1F, 0xBA, 0x0E, 0x00, 0xB4, 0x09, 0xCD, 0x21, 0xB8, 0x01, 0x4C, 0xCD, 0x21, 0x54, 0x68
db 0x69, 0x73, 0x20, 0x70, 0x72, 0x6F, 0x67, 0x72, 0x61, 0x6D, 0x20, 0x63, 0x61, 0x6E, 0x6E, 0x6F
db 0x74, 0x20, 0x62, 0x65, 0x20, 0x72, 0x75, 0x6E, 0x20, 0x69, 0x6E, 0x20, 0x44, 0x4F, 0x53, 0x20
db 0x6D, 0x6F, 0x64, 0x65, 0x2E, 0x0D, 0x0D, 0x0A, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
; COFF Header
db "PE", 0, 0 ; Signature
%ifdef WIN64
dw 0x8664 ; Machine
%else
dw 0x014C ; Machine
%endif
dw _sections_count ; NumberOfSections
dd __?POSIX_TIME?__ ; TimeDateStamp
dd 0 ; PointerToSymbolTable
dd 0 ; NumberOfSymbols
dw _optional_header_size ; SizeOfOptionalHeader
dw 0x030F ; Characteristics
; Standard COFF Fields
_optional_header:
%ifdef WIN64
dw 0x020B ; Magic
%else
dw 0x010B ; Magic
%endif
db 0 ; MajorLinkerVersion
db 0 ; MinorLinkerVersion
dd _code_section_aligned_size ; SizeOfCode
dd _data_section_aligned_size ; SizeOfInitializedData
dd 0 ; SizeOfUninitializedData
dd RVA(_entrypoint) ; AddressOfEntryPoint
dd RVA(_code_section) ; BaseOfCode
%ifndef WIN64
dd RVA(_data_section) ; BaseOfData
%endif
; Windows-Specific Fields
%ifdef WIN64
dq _base ; ImageBase
%else
dd _base ; ImageBase
%endif
dd _alignment ; SectionAlignment
dd _alignment ; FileAlignment
dw 4 ; MajorOperatingSystemVersion
dw 0 ; MinorOperatingSystemVersion
dw 0 ; MajorImageVersion
dw 0 ; MinorImageVersion
dw 4 ; MajorSubsystemVersion
dw 0 ; MinorSubsystemVersion
dd 0 ; Win32VersionValue
%if %2 == HEADER_HAS_RESOURCES
dd _header_aligned_size + _code_section_aligned_size + _data_section_aligned_size + _resources_section_aligned_size ; SizeOfImage
%else
dd _header_aligned_size + _code_section_aligned_size + _data_section_aligned_size ; SizeOfImage
%endif
dd _header_aligned_size ; SizeOfHeaders
dd 0 ; CheckSum
dw %1 ; Subsystem
dw 0 ; DllCharacteristics
%ifdef WIN64
dq 0x100000 ; SizeOfStackReserve
dq 0x1000 ; SizeOfStackCommit
dq 0x100000 ; SizeOfHeapReserve
dq 0x1000 ; SizeOfHeapCommit
%else
dd 0x100000 ; SizeOfStackReserve
dd 0x1000 ; SizeOfStackCommit
dd 0x100000 ; SizeOfHeapReserve
dd 0x1000 ; SizeOfHeapCommit
%endif
dd 0 ; LoaderFlags
dd 16 ; NumberOfRvaAndSizes
; Data Directories
dd 0, 0
dd RVA(_import_table), _import_table_size
%if %2 == HEADER_HAS_RESOURCES
dd RVA(_resources_section), _resources_section_size
%else
dd 0, 0
%endif
times 13 dd 0, 0
_optional_header_size equ $ - _optional_header
; Section Table
_sections:
; Code Section
db ".text", 0, 0, 0 ; Name
dd _code_section_size ; VirtualSize
dd RVA(_code_section) ; VirtualAddress
dd _code_section_aligned_size ; SizeOfRawData
dd RVA(_code_section) ; PointerToRawData
dd 0 ; PointerToRelocations
dd 0 ; PointerToLinenumbers
dw 0 ; NumberOfRelocations
dw 0 ; NumberOfLinenumbers
dd 0x60000020 ; Characteristics
; Data Section
db ".data", 0, 0, 0 ; Name
dd _data_section_size ; VirtualSize
dd RVA(_data_section) ; VirtualAddress
dd _data_section_aligned_size ; SizeOfRawData
dd RVA(_data_section) ; PointerToRawData
dd 0 ; PointerToRelocations
dd 0 ; PointerToLinenumbers
dw 0 ; NumberOfRelocations
dw 0 ; NumberOfLinenumbers
dd 0xC0000040 ; Characteristics
; Resources Section
%if %2 == HEADER_HAS_RESOURCES
db ".rsrc", 0, 0, 0 ; Name
dd _resources_section_size ; VirtualSize
dd RVA(_resources_section) ; VirtualAddress
dd _resources_section_aligned_size ; SizeOfRawData
dd RVA(_resources_section) ; PointerToRawData
dd 0 ; PointerToRelocations
dd 0 ; PointerToLinenumbers
dw 0 ; NumberOfRelocations
dw 0 ; NumberOfLinenumbers
dd 0x40000040 ; Characteristics
%endif
_sections_count equ ($ - _sections) / (8 + 4 * 6 + 2 * 2 + 4)
_header_size equ $ - _header
align _alignment, db 0
_header_aligned_size equ $ - _header
%endmacro
%macro header 1
header %1, HEADER_HAS_NO_RESOURCES
%endmacro
%macro header 0
header HEADER_GUI, HEADER_HAS_NO_RESOURCES
%endmacro
; Code section
%macro code_section 0
_code_section:
%endmacro
%macro end_code_section 0
_code_section_size equ $ - _code_section
align _alignment, db 0
_code_section_aligned_size equ $ - _code_section
%endmacro
%macro entrypoint 0
_entrypoint:
%ifdef WIN64
sub rsp, QWORD_size
%endif
mov _bp, _sp
%endmacro
; Data section
%macro data_section 0
_data_section:
%endmacro
%macro end_data_section 0
_data_section_size equ $ - _data_section
align _alignment, db 0
_data_section_aligned_size equ $ - _data_section
%endmacro
; Import table
%macro import_table 0
_import_table:
%endmacro
%macro end_import_table 0
_import_table_size equ $ - _import_table
%endmacro
%macro library 2-*
%rep %0 / 2
dd 0, 0, 0, RVA(_%1), RVA(%1)
%rotate 2
%endrep
dd 0, 0, 0, 0, 0
%rep %0 / 2
_%1 db %2, 0
%rotate 2
%endrep
%endmacro
%macro import 3-*
%1:
%rotate 1
%rep (%0 - 1) / 2
%ifdef WIN64
%1 dq RVA(_%1)
%else
%1 dd RVA(_%1)
%endif
%rotate 2
%endrep
%ifdef WIN64
dq 0
%else
dd 0
%endif
%rotate 1
%rep (%0 - 1) / 2
_%1 db 0, 0, %2, 0
%rotate 2
%endrep
%endmacro
; Resources section
%macro resources_section 0
_resources_section:
%endmacro
%macro end_resources_section 0
_resources_section_size equ $ - _resources_section
align _alignment, db 0
_resources_section_aligned_size equ $ - _resources_section
%endmacro
%macro directory 2-*
dd 0, 0, 0
dw 0, %0 / 2
%rep %0 / 2
dd %1, 0x80000000 + (%2 - _resources_section)
%rotate 2
%endrep
%endmacro
%define RT_BITMAP 2
%define RT_VERSION 16
%define RT_MANIFEST 24
%define LANG_NEUTRAL 0
%define LANG_ENGLISH 9
%define SUBLANG_ENGLISH_US (1 << 10)
%macro resource 4-*
%1:
dd 0, 0, 0
dw 0, (%0 - 1) / 2
%rotate 1
%rep (%0 - 1) / 3
dd %1, 0x80000000 + (.%3 - _resources_section)
%rotate 3
%endrep
%rotate 1
%rep (%0 - 1) / 3
.%3:
dd 0, 0, 0
dw 0, 1
dd %2, (%3 - _resources_section)
%rotate 3
%endrep
%endmacro
%macro bitmap 2
%1:
dd RVA(.data), .data_size, 0, 0
.data:
incbin %2, 0x0e
.data_size equ $ - .data
%endmacro
%define VOS__WINDOWS32 0x00000004
%define VFT_APP 0x00000001
%define VFT2_UNKNOWN 0x00000000
%macro versioninfo 1-*
%1:
dd RVA(.data), .data_size, 0, 0
.data:
dw .data_size, .version_info_size
dw 0, utf16("VS_VERSION_INFO"), 0, 0
.version_info:
dd 0xFEEF04BD ;dwSignature
dw 1, 0 ; dwStrucVersion
dd %2 >> 32 ; dwFileVersionMS
dd %2 & 0xffffffff ; dwFileVersionLS
dd %3 >> 32 ; dwProductVersionMS
dd %3 & 0xffffffff ; dwProductVersionLS
dd 0 ; dwFileFlagsMask
dd 0 ; dwFileFlags
dd %4 ; dwFileOS
dd %5 ; dwFileType
dd %6 ; dwFileSubtype
dd 0 ; dwFileDateMS
dd 0 ; dwFileDateLS
.version_info_size equ $ - .version_info
.string_file_info:
dw .string_file_info_size, 0
dw 1, utf16("StringFileInfo"), 0
.string_table:
dw .string_table_size, 0
dw 1, utf16("04090000"), 0 ; Harcode language string id
%rotate 7
%rep (%0 - 7) / 2
.string_table_%1:
dw .string_table_%1_size, .string_table_%1.value_size / 2
%defstr key %1
dw 1, utf16(key), 0
%undef key
align 4, db 0
.string_table_%1.value:
dw utf16(%2), 0
.string_table_%1.value_size equ $ - .string_table_%1.value
align 4, db 0
.string_table_%1_size equ $ - .string_table_%1
%rotate 2
%endrep
.string_table_size equ $ - .string_table
.string_file_info_size equ $ - .string_file_info
.var_file_info:
dw .var_file_info_size, 0
dw 1, utf16("VarFileInfo"), 0, 0
.var:
dw .var_size, .var.value_size
dw 0, utf16("Translation"), 0, 0
.var.value:
dw %7, 0
.var.value_size equ $ - .var.value
.var_size equ $ - .var
.var_file_info_size equ $ - .var_file_info
.data_size equ $ - .data
%endmacro
%macro manifest 2
%1:
dd RVA(.data), .data_size, 0, 0
.data:
incbin %2
.data_size equ $ - .data
%endmacro
; Code helpers
%macro struct 3-*
%1:
%rotate 1
%assign _index 0
%assign _position 0
%rep (%0 - 1) / 2
.%1 equ _position
%assign _position _position + %2
%rotate 2
; Pointer align items
%if _index != ((%0 - 1) / 2 - 1)
%if (_position % POINTER_size) > 0
%ifnum %2
%if %2 == POINTER_size
%assign _position _position + (_position % POINTER_size)
%endif
%else
%error struct macro argument: %1, %2
%endif
%endif
%else
%if (_position % POINTER_size) > 0
%assign _position _position + (_position % POINTER_size)
%endif
%endif
%assign _index _index + 1
%endrep
%xdefine %1_size _position
%endmacro
%macro function 1-*
%1:
push _bp
mov _bp, _sp
%ifdef WIN64
%assign _index 1
%rotate 1
%rep %0 - 1
%xdefine %1 rbp + (_index + 1) * QWORD_size
%if _index == 1
mov [%1], rcx
%endif
%if _index == 2
mov [%1], rdx
%endif
%if _index == 3
mov [%1], r8
%endif
%if _index == 4
mov [%1], r9
%endif
%assign _index _index + 1
%rotate 1
%endrep
%else
%assign _index 1
%rotate 1
%rep %0 - 1
%xdefine %1 ebp + (_index + 1) * DWORD_size
%assign _index _index + 1
%rotate 1
%endrep
._arguments_size equ (%0 - 1) * DWORD_size
%endif
%endmacro
%macro return 0
leave
%ifdef WIN64
ret
%else
ret ._arguments_size
%endif
%endmacro
%macro return 1
mov _ax, %1
return
%endmacro
%macro local 2-*
%assign _index 0
%assign _size 0
%rep %0 / 2
%assign _size _size + %2
%rotate 2
; Pointer align items
%if _index != (%0 / 2 - 1)
%if (_size % POINTER_size) > 0
%ifnum %2
%if %2 == POINTER_size
%assign _size _size + (_size % POINTER_size)
%endif
%else
%error local macro argument: %1, %2
%endif
%endif
%endif
%assign _index _index + 1
%endrep
%ifdef WIN64
%ifndef _fastcall_frame
%define _fastcall_frame
%assign _size _size + 4 * QWORD_size
%endif
sub rsp, (_size + 15) & (~15)
%else
sub esp, (_size + 3) & (~3)
%endif
%assign _index 0
%assign _position 0
%rep %0 / 2
%assign _position _position + %2
%xdefine %1 _bp - _position
%rotate 2
; Pointer align items
%if _index != (%0 / 2 - 1)
%if (_position % POINTER_size) > 0
%ifnum %2
%if %2 == POINTER_size
%assign _position _position + (_position % POINTER_size)
%endif
%else
%error local macro argument: %1, %2
%endif
%endif
%endif
%assign _index _index + 1
%endrep
%endmacro
%macro end_local 0
%ifdef _fastcall_frame
%undef _fastcall_frame
%endif
%endmacro
%macro if 3
%push if
%ifnum %3
%if %3 == 0
test %1, %1
%else
cmp %1, %3
%endif
%else
cmp %1, %3
%endif
%ifstr %2
%if %2 == "=="
jne %$if_not
%elif %2 == "!="
je %$if_not
%elif %2 == "<"
jge %$if_not
%elif %2 == "<="
jg %$if_not
%elif %2 == ">"
jle %$if_not
%elif %2 == ">="
jl %$if_not
%else
j%-2 %$if_not
%endif
%else
j%-2 %$if_not
%endif
%endmacro
%macro else 0
%ifctx if
%repl else
jmp %$if_end
%$if_not:
%else
%error "expected if macro before else macro"
%endif
%endmacro
%macro end_if 0
%ifctx if
%$if_not:
%pop
%elifctx else
%$if_end:
%pop
%else
%error "expected if or else macro before end_if macro"
%endif
%endmacro
%macro loop 0
%push loop
%$loop:
%endmacro
%macro end_loop 0
%ifctx loop
jmp %$loop
%$end_loop:
%pop
%else
%error "expected loop macro before end_loop macro"
%endif
%endmacro
%macro while 3
%push while
%$while:
%ifnum %3
%if %3 == 0
test %1, %1
%else
cmp %1, %3
%endif
%else
cmp %1, %3
%endif
%ifstr %2
%if %2 == "=="
jne %$end_while
%elif %2 == "!="
je %$end_while
%elif %2 == "<"
jge %$end_while
%elif %2 == "<="
jg %$end_while
%elif %2 == ">"
jle %$end_while
%elif %2 == ">="
jl %$end_while
%else
j%-2 %$end_while
%endif
%else
j%-2 %$end_while
%endif
%endmacro
%macro end_while 0
%ifctx while
jmp %$while
%$end_while:
%pop
%else
%error "expected while macro before end_while macro"
%endif
%endmacro
; Calling conventions
%macro frame 0
%ifdef WIN64
%ifndef _fastcall_frame
%define _fastcall_frame
sub rsp, 4 * QWORD_size
%endif
%endif
%endmacro
%macro end_frame 0
%ifdef WIN64
%ifdef _fastcall_frame
%undef _fastcall_frame
add rsp, 4 * QWORD_size
%endif
%endif
%endmacro
%define float "f",
%define addr "&",
; Fastcall
%macro fastcall 1-*
; Count good arguments
%assign _arguments_count 0
%rotate 1
%rep %0 - 1
%ifnstr %1
%assign _arguments_count _arguments_count + 1
%endif
%rotate 1
%endrep
; Reserve stack space 16 byte aligned
%ifdef _fastcall_frame
%if _arguments_count > 4
sub rsp, (((_arguments_count - 4) * QWORD_size) + 15) & (~15)
%endif
%else
%if _arguments_count > 4
sub rsp, ((_arguments_count * QWORD_size) + 15) & (~15)
%else
sub rsp, 4 * QWORD_size
%endif
%endif
; Loop over arguments
%assign _index %0 - 1
%assign _position _arguments_count
%rep %0
%if _index < 0
%exitrep
%endif
%rotate -2
%assign _isHandled 0
%ifstr %1
; Load address helper
%if %1 == "&"
%rotate 1
%if _position == 1
lea rcx, [%1]
%elif _position == 2
lea rdx, [%1]
%elif _position == 3
lea r8, [%1]
%elif _position == 4
lea r9, [%1]
%else
lea rcx, [%1]
mov [rsp + (_position - 1) * QWORD_size], rcx
%endif
%rotate -1
%assign _index _index - 2
%assign _isHandled 1
%endif
; Float helper
%if %1 == "f"
%rotate 1
%if _position == 1
movss xmm0, %1
%elif _position == 2
movss xmm1, %1
%elif _position == 3
movss xmm2, %1
%elif _position == 4
movss xmm3, %1
%else
%ifnum %1
%if %1 == 0
xor rcx, rcx
%else
mov rcx, %1
%endif
%else
mov rcx, %1
%endif
mov [rsp + (_position - 1) * QWORD_size], rcx
%endif
%rotate -1
%assign _index _index - 2
%assign _isHandled 1
%endif
%endif
; Or just a normal value
%if _isHandled == 0
%rotate 1
%if _position == 0
call %1
%elif _position == 1
%ifnum %1
%if %1 == 0
xor rcx, rcx
%else
mov rcx, %1
%endif
%else
mov rcx, %1
%endif
%elif _position == 2
%ifnum %1
%if %1 == 0
xor rdx, rdx
%else
mov rdx, %1
%endif
%else
mov rdx, %1
%endif
%elif _position == 3
%ifnum %1
%if %1 == 0
xor r8, r8
%else
mov r8, %1
%endif
%else
mov r8, %1
%endif
%elif _position == 4
%ifnum %1
%if %1 == 0
xor r9, r9
%else
mov r9, %1
%endif
%else
mov r9, %1
%endif
%else
%ifnum %1
%if %1 == 0
xor rcx, rcx
%else
mov rcx, %1
%endif
%else
mov rcx, %1
%endif
mov [rsp + (_position - 1) * QWORD_size], rcx
%endif
%assign _index _index - 1
%endif
%assign _position _position - 1
%endrep
; Free stack space 16 byte aligned
%ifdef _fastcall_frame
%if _arguments_count > 4
add rsp, (((_arguments_count - 4) * QWORD_size) + 15) & (~15)
%endif
%else
%if _arguments_count > 4
add rsp, ((_arguments_count * QWORD_size) + 15) & (~15)
%else
add rsp, 4 * QWORD_size
%endif
%endif
%endmacro
; Stdcall and cdeclcall
%macro push_reverse 1-*
%assign _index %0 - 1
%rep %0
%if _index < 0
%exitrep
%endif
%rotate -2
%assign _isHandled 0
%ifstr %1
; Load address helper
%if %1 == "&"
%rotate 1
lea eax, [%1]
push eax
%rotate -1
%assign _index _index - 2
%assign _isHandled 1
%endif
; Ignore float helper only for 64-bit fastcall
%if %1 == "f"
%rotate 1
push dword %1
%rotate -1
%assign _index _index - 2
%assign _isHandled 1
%endif
%endif
; Or just push the value
%if _isHandled == 0
%rotate 1
push dword %1
%assign _index _index - 1
%endif
%endrep
%endmacro
%macro stdcall 2+
push_reverse %2
call %1
%endmacro
%macro stdcall 1
call %1
%endmacro
%macro cdeclcall 2+
push_reverse %2
call %1
add esp, (%0 - 1) * DWORD_size
%endmacro
%macro cdeclcall 1
call %1
%endmacro
; Calls and invokes prefixes
%macro fcall 1+
%ifdef WIN64
fastcall %1
%else
stdcall %1
%endif
%endmacro
%macro invoke 2+
%ifdef WIN64
fastcall [%1], %2
%else
stdcall [%1], %2
%endif
%endmacro
%macro invoke 1
%ifdef WIN64
fastcall [%1]
%else
stdcall [%1]
%endif
%endmacro
%macro cinvoke 2+
%ifdef WIN64
fastcall [%1], %2
%else
cdeclcall [%1], %2
%endif
%endmacro
%macro cinvoke 1
%ifdef WIN64
fastcall [%1]
%else