File: macros.c

package info (click to toggle)
chromium 139.0.7258.127-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 6,122,156 kB
  • sloc: cpp: 35,100,771; ansic: 7,163,530; javascript: 4,103,002; python: 1,436,920; asm: 946,517; xml: 746,709; pascal: 187,653; perl: 88,691; sh: 88,436; objc: 79,953; sql: 51,488; cs: 44,583; fortran: 24,137; makefile: 22,147; tcl: 15,277; php: 13,980; yacc: 8,984; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (876 lines) | stat: -rw-r--r-- 65,771 bytes parent folder | download | duplicates (5)
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
/*
 * Do not edit - this file auto-generated by macros.pl from:
 *   version.mac
 *   ./macros/altreg.mac
 *   ./macros/fp.mac
 *   ./macros/ifunc.mac
 *   ./macros/masm.mac
 *   ./macros/smartalign.mac
 *   ./macros/standard.mac
 *   ./output/outaout.mac
 *   ./output/outas86.mac
 *   ./output/outbin.mac
 *   ./output/outcoff.mac
 *   ./output/outdbg.mac
 *   ./output/outelf.mac
 *   ./output/outmacho.mac
 *   ./output/outobj.mac
 */

#include "tables.h"
#include "nasmlib.h"
#include "hashtbl.h"
#include "outform.h"

#define p_if                     128
#define p_ifctx                  129
#define p_ifdef                  130
#define p_ifdefalias             131
#define p_ifdifi                 132
#define p_ifempty                133
#define p_ifenv                  134
#define p_ifid                   135
#define p_ifidn                  136
#define p_ifidni                 137
#define p_ifmacro                138
#define p_ifnum                  139
#define p_ifstr                  140
#define p_iftoken                141
#define p_ifusable               142
#define p_ifusing                143
#define p_ifn                    144
#define p_ifnctx                 145
#define p_ifndef                 146
#define p_ifndefalias            147
#define p_ifndifi                148
#define p_ifnempty               149
#define p_ifnenv                 150
#define p_ifnid                  151
#define p_ifnidn                 152
#define p_ifnidni                153
#define p_ifnmacro               154
#define p_ifnnum                 155
#define p_ifnstr                 156
#define p_ifntoken               157
#define p_ifnusable              158
#define p_ifnusing               159
#define p_elif                   160
#define p_elifctx                161
#define p_elifdef                162
#define p_elifdefalias           163
#define p_elifdifi               164
#define p_elifempty              165
#define p_elifenv                166
#define p_elifid                 167
#define p_elifidn                168
#define p_elifidni               169
#define p_elifmacro              170
#define p_elifnum                171
#define p_elifstr                172
#define p_eliftoken              173
#define p_elifusable             174
#define p_elifusing              175
#define p_elifn                  176
#define p_elifnctx               177
#define p_elifndef               178
#define p_elifndefalias          179
#define p_elifndifi              180
#define p_elifnempty             181
#define p_elifnenv               182
#define p_elifnid                183
#define p_elifnidn               184
#define p_elifnidni              185
#define p_elifnmacro             186
#define p_elifnnum               187
#define p_elifnstr               188
#define p_elifntoken             189
#define p_elifnusable            190
#define p_elifnusing             191
#define p_aliases                192
#define p_arg                    193
#define p_clear                  194
#define p_depend                 195
#define p_else                   196
#define p_endif                  197
#define p_endm                   198
#define p_endmacro               199
#define p_endrep                 200
#define p_error                  201
#define p_exitmacro              202
#define p_exitrep                203
#define p_fatal                  204
#define p_include                205
#define p_line                   206
#define p_local                  207
#define p_note                   208
#define p_null                   209
#define p_pop                    210
#define p_pragma                 211
#define p_push                   212
#define p_rep                    213
#define p_repl                   214
#define p_require                215
#define p_rotate                 216
#define p_stacksize              217
#define p_undef                  218
#define p_undefalias             219
#define p_use                    220
#define p_warning                221
#define p_assign                 222
#define p_iassign                223
#define p_defalias               224
#define p_idefalias              225
#define p_define                 226
#define p_idefine                227
#define p_defstr                 228
#define p_idefstr                229
#define p_deftok                 230
#define p_ideftok                231
#define p_macro                  232
#define p_imacro                 233
#define p_pathsearch             234
#define p_ipathsearch            235
#define p_rmacro                 236
#define p_irmacro                237
#define p_strcat                 238
#define p_istrcat                239
#define p_strlen                 240
#define p_istrlen                241
#define p_substr                 242
#define p_isubstr                243
#define p_xdefine                244
#define p_ixdefine               245
#define p_unmacro                246
#define p_unimacro               247
#define EOL                      127


#if 1
const unsigned char nasm_stdmac_version[] = {
    /* From version.mac */
        /*    0 */ p_define,'_','_','?','N','A','S','M','_','M','A','J','O','R','?','_','_',' ','2',EOL,
        /*   20 */ p_define,'_','_','?','N','A','S','M','_','M','I','N','O','R','?','_','_',' ','1','6',EOL,
        /*   41 */ p_define,'_','_','?','N','A','S','M','_','S','U','B','M','I','N','O','R','?','_','_',' ','9','9',EOL,
        /*   65 */ p_define,'_','_','?','N','A','S','M','_','P','A','T','C','H','L','E','V','E','L','?','_','_',' ','9','0',EOL,
        /*   91 */ p_define,'_','_','?','N','A','S','M','_','V','E','R','S','I','O','N','_','I','D','?','_','_',' ','0','0','2','1','0','6','3','5','A','h',EOL,
        /*  125 */ p_define,'_','_','?','N','A','S','M','_','V','E','R','?','_','_',' ','\"','2','.','1','7','r','c','0','\"',EOL,
        /*  151 */ EOL
};
#endif

#if 1
static const unsigned char nasm_usemac_altreg[] = {
    /* From ./macros/altreg.mac */
        /*    0 */ p_define,'_','_','?','U','S','E','_','A','L','T','R','E','G','?','_','_',EOL,
        /*    0 */ p_defalias,'_','_','U','S','E','_','A','L','T','R','E','G','_','_',' ','_','_','?','U','S','E','A','L','T','R','E','G','?','_','_',EOL,
        /*   32 */ p_idefine,'r','8','l',' ','r','8','b',EOL,
        /*   41 */ p_idefine,'r','9','l',' ','r','9','b',EOL,
        /*   50 */ p_idefine,'r','1','0','l',' ','r','1','0','b',EOL,
        /*   61 */ p_idefine,'r','1','1','l',' ','r','1','1','b',EOL,
        /*   72 */ p_idefine,'r','1','2','l',' ','r','1','2','b',EOL,
        /*   83 */ p_idefine,'r','1','3','l',' ','r','1','3','b',EOL,
        /*   94 */ p_idefine,'r','1','4','l',' ','r','1','4','b',EOL,
        /*  105 */ p_idefine,'r','1','5','l',' ','r','1','5','b',EOL,
        /*  116 */ p_idefine,'r','0',' ','r','a','x',EOL,
        /*  124 */ p_idefine,'r','1',' ','r','c','x',EOL,
        /*  132 */ p_idefine,'r','2',' ','r','d','x',EOL,
        /*  140 */ p_idefine,'r','3',' ','r','b','x',EOL,
        /*  148 */ p_idefine,'r','4',' ','r','s','p',EOL,
        /*  156 */ p_idefine,'r','5',' ','r','b','p',EOL,
        /*  164 */ p_idefine,'r','6',' ','r','s','i',EOL,
        /*  172 */ p_idefine,'r','7',' ','r','d','i',EOL,
        /*  180 */ p_idefine,'r','0','d',' ','e','a','x',EOL,
        /*  189 */ p_idefine,'r','1','d',' ','e','c','x',EOL,
        /*  198 */ p_idefine,'r','2','d',' ','e','d','x',EOL,
        /*  207 */ p_idefine,'r','3','d',' ','e','b','x',EOL,
        /*  216 */ p_idefine,'r','4','d',' ','e','s','p',EOL,
        /*  225 */ p_idefine,'r','5','d',' ','e','b','p',EOL,
        /*  234 */ p_idefine,'r','6','d',' ','e','s','i',EOL,
        /*  243 */ p_idefine,'r','7','d',' ','e','d','i',EOL,
        /*  252 */ p_idefine,'r','0','w',' ','a','x',EOL,
        /*  260 */ p_idefine,'r','1','w',' ','c','x',EOL,
        /*  268 */ p_idefine,'r','2','w',' ','d','x',EOL,
        /*  276 */ p_idefine,'r','3','w',' ','b','x',EOL,
        /*  284 */ p_idefine,'r','4','w',' ','s','p',EOL,
        /*  292 */ p_idefine,'r','5','w',' ','b','p',EOL,
        /*  300 */ p_idefine,'r','6','w',' ','s','i',EOL,
        /*  308 */ p_idefine,'r','7','w',' ','d','i',EOL,
        /*  316 */ p_idefine,'r','0','b',' ','a','l',EOL,
        /*  324 */ p_idefine,'r','1','b',' ','c','l',EOL,
        /*  332 */ p_idefine,'r','2','b',' ','d','l',EOL,
        /*  340 */ p_idefine,'r','3','b',' ','b','l',EOL,
        /*  348 */ p_idefine,'r','4','b',' ','s','p','l',EOL,
        /*  357 */ p_idefine,'r','5','b',' ','b','p','l',EOL,
        /*  366 */ p_idefine,'r','6','b',' ','s','i','l',EOL,
        /*  375 */ p_idefine,'r','7','b',' ','d','i','l',EOL,
        /*  384 */ p_idefine,'r','0','l',' ','a','l',EOL,
        /*  392 */ p_idefine,'r','1','l',' ','c','l',EOL,
        /*  400 */ p_idefine,'r','2','l',' ','d','l',EOL,
        /*  408 */ p_idefine,'r','3','l',' ','b','l',EOL,
        /*  416 */ p_idefine,'r','4','l',' ','s','p','l',EOL,
        /*  425 */ p_idefine,'r','5','l',' ','b','p','l',EOL,
        /*  434 */ p_idefine,'r','6','l',' ','s','i','l',EOL,
        /*  443 */ p_idefine,'r','7','l',' ','d','i','l',EOL,
        /*  452 */ p_idefine,'r','0','h',' ','a','h',EOL,
        /*  460 */ p_idefine,'r','1','h',' ','c','h',EOL,
        /*  468 */ p_idefine,'r','2','h',' ','d','h',EOL,
        /*  476 */ p_idefine,'r','3','h',' ','b','h',EOL,
        /*  484 */ EOL
};
#endif

#if 1
static const unsigned char nasm_usemac_fp[] = {
    /* From ./macros/fp.mac */
        /*    0 */ p_define,'_','_','?','U','S','E','_','F','P','?','_','_',EOL,
        /*    0 */ p_defalias,'_','_','U','S','E','_','F','P','_','_',' ','_','_','?','U','S','E','F','P','?','_','_',EOL,
        /*   24 */ p_define,'I','n','f',' ','_','_','?','I','n','f','i','n','i','t','y','?','_','_',EOL,
        /*   44 */ p_define,'N','a','N',' ','_','_','?','Q','N','a','N','?','_','_',EOL,
        /*   60 */ p_define,'Q','N','a','N',' ','_','_','?','Q','N','a','N','?','_','_',EOL,
        /*   77 */ p_define,'S','N','a','N',' ','_','_','?','S','N','a','N','?','_','_',EOL,
        /*   94 */ p_define,'f','l','o','a','t','8','(','x',')',' ','_','_','?','f','l','o','a','t','8','?','_','_','(','x',')',EOL,
        /*  121 */ p_define,'f','l','o','a','t','1','6','(','x',')',' ','_','_','?','f','l','o','a','t','1','6','?','_','_','(','x',')',EOL,
        /*  150 */ p_define,'b','f','l','o','a','t','1','6','(','x',')',' ','_','_','?','b','f','l','o','a','t','1','6','?','_','_','(','x',')',EOL,
        /*  181 */ p_define,'f','l','o','a','t','3','2','(','x',')',' ','_','_','?','f','l','o','a','t','3','2','?','_','_','(','x',')',EOL,
        /*  210 */ p_define,'f','l','o','a','t','6','4','(','x',')',' ','_','_','?','f','l','o','a','t','6','4','?','_','_','(','x',')',EOL,
        /*  239 */ p_define,'f','l','o','a','t','8','0','m','(','x',')',' ','_','_','?','f','l','o','a','t','8','0','m','?','_','_','(','x',')',EOL,
        /*  270 */ p_define,'f','l','o','a','t','8','0','e','(','x',')',' ','_','_','?','f','l','o','a','t','8','0','e','?','_','_','(','x',')',EOL,
        /*  301 */ p_define,'f','l','o','a','t','1','2','8','l','(','x',')',' ','_','_','?','f','l','o','a','t','1','2','8','l','?','_','_','(','x',')',EOL,
        /*  334 */ p_define,'f','l','o','a','t','1','2','8','h','(','x',')',' ','_','_','?','f','l','o','a','t','1','2','8','h','?','_','_','(','x',')',EOL,
        /*  367 */ p_imacro,'b','f','1','6',' ','1','-','*','.','n','o','l','i','s','t',EOL,
        /*  384 */ p_rep,'%','0',EOL,
        /*  388 */ 'd','w',' ','_','_','?','b','f','l','o','a','t','1','6','?','_','_','(','%','1',')',EOL,
        /*  410 */ p_rotate,'1',EOL,
        /*  413 */ p_endrep,EOL,
        /*  415 */ p_endmacro,EOL,
        /*  417 */ EOL
};
#endif

#if 1
static const unsigned char nasm_usemac_ifunc[] = {
    /* From ./macros/ifunc.mac */
        /*    0 */ p_define,'_','_','?','U','S','E','_','I','F','U','N','C','?','_','_',EOL,
        /*    0 */ p_defalias,'_','_','U','S','E','_','I','F','U','N','C','_','_',' ','_','_','?','U','S','E','I','F','U','N','C','?','_','_',EOL,
        /*   30 */ p_idefine,'i','l','o','g','2','(','x',')',' ','(','_','_','?','i','l','o','g','2','e','?','_','_','(','x',')',')',EOL,
        /*   58 */ p_idefine,'i','l','o','g','2','e','(','x',')',' ','(','_','_','?','i','l','o','g','2','e','?','_','_','(','x',')',')',EOL,
        /*   87 */ p_idefine,'i','l','o','g','2','w','(','x',')',' ','(','_','_','?','i','l','o','g','2','w','?','_','_','(','x',')',')',EOL,
        /*  116 */ p_idefine,'i','l','o','g','2','f','w','(','x',')',' ','(','_','_','?','i','l','o','g','2','w','?','_','_','(','x',')',')',EOL,
        /*  146 */ p_idefine,'i','l','o','g','2','f','(','x',')',' ','(','_','_','?','i','l','o','g','2','f','?','_','_','(','x',')',')',EOL,
        /*  175 */ p_idefine,'i','l','o','g','2','c','w','(','x',')',' ','(','_','_','?','i','l','o','g','2','w','?','_','_','(','x',')',' ','*',' ','0',' ','+',' ','_','_','?','i','l','o','g','2','c','?','_','_','(','x',')',')',EOL,
        /*  227 */ p_idefine,'i','l','o','g','2','c','(','x',')',' ','(','_','_','?','i','l','o','g','2','c','?','_','_','(','x',')',')',EOL,
        /*  256 */ EOL
};
#endif

#if 1
static const unsigned char nasm_usemac_masm[] = {
    /* From ./macros/masm.mac */
        /*    0 */ p_define,'_','_','?','U','S','E','_','M','A','S','M','?','_','_',EOL,
        /*    0 */ p_defalias,'_','_','U','S','E','_','M','A','S','M','_','_',' ','_','_','?','U','S','E','M','A','S','M','?','_','_',EOL,
        /*   28 */ p_unimacro,'s','e','g','m','e','n','t',' ','1','+',EOL,
        /*   40 */ p_imacro,'s','e','g','m','e','n','t',' ','0','-','1','+','.','n','o','l','i','s','t',EOL,
        /*   61 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','g','m','e','n','t',' ','%','0','0',' ','%','1',']',EOL,
        /*   90 */ '_','_','?','S','E','C','T','?','_','_',EOL,
        /*  101 */ p_endmacro,EOL,
        /*  103 */ p_imacro,'e','n','d','s',' ','0','+','.','n','o','l','i','s','t',EOL,
        /*  119 */ p_null,'e','n','d','s',' ','%','0','0',EOL,
        /*  129 */ p_endmacro,EOL,
        /*  131 */ p_imacro,'p','r','o','c',' ','0','-','*','.','n','o','l','i','s','t',EOL,
        /*  148 */ p_rep,'%','0',EOL,
        /*  152 */ p_ifidni,'%','1',',','f','a','r',EOL,
        /*  160 */ p_idefine,'r','e','t',' ','r','e','t','f',EOL,
        /*  170 */ p_else,EOL,
        /*  172 */ p_idefine,'r','e','t',' ','r','e','t','n',EOL,
        /*  182 */ p_endif,EOL,
        /*  184 */ p_rotate,'1',EOL,
        /*  187 */ p_endrep,EOL,
        /*  189 */ p_endmacro,EOL,
        /*  191 */ p_imacro,'e','n','d','p',' ','0','.','n','o','l','i','s','t',EOL,
        /*  206 */ p_null,'e','n','d','p',' ','%','0','0',EOL,
        /*  216 */ p_undef,'r','e','t',EOL,
        /*  221 */ p_endmacro,EOL,
        /*  223 */ p_idefine,'p','t','r',' ','_','_','?','m','a','s','m','_','p','t','r','?','_','_',EOL,
        /*  243 */ p_idefine,'f','l','a','t',' ','_','_','?','m','a','s','m','_','f','l','a','t','?','_','_',EOL,
        /*  265 */ p_idefine,'o','f','f','s','e','t',EOL,
        /*  273 */ p_imacro,'e','n','d',' ','0','+','.','n','o','l','i','s','t',EOL,
        /*  288 */ p_endmacro,EOL,
        /*  290 */ p_idefine,'t','b','y','t','e',' ','t','w','o','r','d',EOL,
        /*  303 */ 'd','e','f','a','u','l','t',' ','r','e','l',EOL,
        /*  315 */ EOL
};
#endif

#if 1
static const unsigned char nasm_usemac_smartalign[] = {
    /* From ./macros/smartalign.mac */
        /*    0 */ p_define,'_','_','?','U','S','E','_','S','M','A','R','T','A','L','I','G','N','?','_','_',EOL,
        /*    0 */ p_defalias,'_','_','U','S','E','_','S','M','A','R','T','A','L','I','G','N','_','_',' ','_','_','?','U','S','E','S','M','A','R','T','A','L','I','G','N','?','_','_',EOL,
        /*   40 */ p_imacro,'a','l','i','g','n','m','o','d','e',' ','1','-','2','.','n','o','l','i','s','t',EOL,
        /*   62 */ p_ifidni,'%','1',',','n','o','p',EOL,
        /*   70 */ p_define,'_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',' ','1','6',EOL,
        /*  100 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /*  127 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','G','R','O','U','P','?','_','_',' ','1',EOL,
        /*  154 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /*  181 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','G','R','O','U','P','?','_','_',' ','1',EOL,
        /*  208 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /*  235 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','G','R','O','U','P','?','_','_',' ','1',EOL,
        /*  262 */ p_elifidni,'%','1',',','g','e','n','e','r','i','c',EOL,
        /*  274 */ p_define,'_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',' ','8',EOL,
        /*  303 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /*  330 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','2','B','?','_','_',' ','0','x','8','9',',','0','x','f','6',EOL,
        /*  362 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','3','B','?','_','_',' ','0','x','8','d',',','0','x','7','4',',','0','x','0','0',EOL,
        /*  399 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','4','B','?','_','_',' ','0','x','8','d',',','0','x','b','4',',','0','x','0','0',',','0','x','0','0',EOL,
        /*  441 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','5','B','?','_','_',' ','0','x','8','d',',','0','x','b','4',',','0','x','0','0',',','0','x','0','0',',','0','x','9','0',EOL,
        /*  488 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','6','B','?','_','_',' ','0','x','8','d',',','0','x','b','4',',','0','x','0','0',',','0','x','0','0',',','0','x','8','9',',','0','x','f','f',EOL,
        /*  540 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','7','B','?','_','_',' ','0','x','8','d',',','0','x','b','4',',','0','x','0','0',',','0','x','0','0',',','0','x','8','d',',','0','x','7','d',',','0','x','0','0',EOL,
        /*  597 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','8','B','?','_','_',' ','0','x','8','d',',','0','x','b','4',',','0','x','0','0',',','0','x','0','0',',','0','x','8','d',',','0','x','b','d',',','0','x','0','0',',','0','x','0','0',EOL,
        /*  659 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','G','R','O','U','P','?','_','_',' ','8',EOL,
        /*  686 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /*  713 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','2','B','?','_','_',' ','0','x','8','9',',','0','x','f','6',EOL,
        /*  745 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','3','B','?','_','_',' ','0','x','8','d',',','0','x','7','6',',','0','x','0','0',EOL,
        /*  782 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','4','B','?','_','_',' ','0','x','8','d',',','0','x','7','4',',','0','x','2','6',',','0','x','0','0',EOL,
        /*  824 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','5','B','?','_','_',' ','0','x','9','0',',','0','x','8','d',',','0','x','7','4',',','0','x','2','6',',','0','x','0','0',EOL,
        /*  871 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','6','B','?','_','_',' ','0','x','8','d',',','0','x','b','6',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',EOL,
        /*  923 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','7','B','?','_','_',' ','0','x','8','d',',','0','x','b','4',',','0','x','2','6',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',EOL,
        /*  980 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','G','R','O','U','P','?','_','_',' ','7',EOL,
        /* 1007 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 1034 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','2','B','?','_','_',' ','0','x','6','6',',','0','x','9','0',EOL,
        /* 1066 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','3','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1103 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','4','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1145 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','G','R','O','U','P','?','_','_',' ','4',EOL,
        /* 1172 */ p_elifidni,'%','1',',','k','8',EOL,
        /* 1179 */ p_define,'_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',' ','1','6',EOL,
        /* 1209 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 1236 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','2','B','?','_','_',' ','0','x','6','6',',','0','x','9','0',EOL,
        /* 1268 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','3','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1305 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','4','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1347 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','G','R','O','U','P','?','_','_',' ','4',EOL,
        /* 1374 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 1401 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','2','B','?','_','_',' ','0','x','6','6',',','0','x','9','0',EOL,
        /* 1433 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','3','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1470 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','4','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1512 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','G','R','O','U','P','?','_','_',' ','4',EOL,
        /* 1539 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 1566 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','2','B','?','_','_',' ','0','x','6','6',',','0','x','9','0',EOL,
        /* 1598 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','3','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1635 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','4','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1677 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','G','R','O','U','P','?','_','_',' ','4',EOL,
        /* 1704 */ p_elifidni,'%','1',',','k','7',EOL,
        /* 1711 */ p_define,'_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',' ','1','6',EOL,
        /* 1741 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 1768 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','2','B','?','_','_',' ','0','x','6','6',',','0','x','9','0',EOL,
        /* 1800 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','3','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1837 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','4','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 1879 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','G','R','O','U','P','?','_','_',' ','4',EOL,
        /* 1906 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 1933 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','2','B','?','_','_',' ','0','x','8','b',',','0','x','c','0',EOL,
        /* 1965 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','3','B','?','_','_',' ','0','x','8','d',',','0','x','0','4',',','0','x','2','0',EOL,
        /* 2002 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','4','B','?','_','_',' ','0','x','8','d',',','0','x','4','4',',','0','x','2','0',',','0','x','0','0',EOL,
        /* 2044 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','5','B','?','_','_',' ','0','x','8','d',',','0','x','4','4',',','0','x','2','0',',','0','x','0','0',',','0','x','9','0',EOL,
        /* 2091 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','6','B','?','_','_',' ','0','x','8','d',',','0','x','8','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 2143 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','7','B','?','_','_',' ','0','x','8','d',',','0','x','0','4',',','0','x','0','5',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 2200 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','G','R','O','U','P','?','_','_',' ','7',EOL,
        /* 2227 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 2254 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','2','B','?','_','_',' ','0','x','6','6',',','0','x','9','0',EOL,
        /* 2286 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','3','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 2323 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','4','B','?','_','_',' ','0','x','6','6',',','0','x','6','6',',','0','x','6','6',',','0','x','9','0',EOL,
        /* 2365 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','G','R','O','U','P','?','_','_',' ','4',EOL,
        /* 2392 */ p_elifidni,'%','1',',','p','6',EOL,
        /* 2399 */ p_define,'_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',' ','1','6',EOL,
        /* 2429 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 2456 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','2','B','?','_','_',' ','0','x','6','6',',','0','x','9','0',EOL,
        /* 2488 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','3','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','0','0',EOL,
        /* 2525 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','4','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','4','0',',','0','x','0','0',EOL,
        /* 2567 */ p_define,'_','_','?','A','L','I','G','N','_','1','6','B','I','T','_','G','R','O','U','P','?','_','_',' ','4',EOL,
        /* 2594 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 2621 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','2','B','?','_','_',' ','0','x','6','6',',','0','x','9','0',EOL,
        /* 2653 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','3','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','0','0',EOL,
        /* 2690 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','4','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','4','0',',','0','x','0','0',EOL,
        /* 2732 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','5','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','4','4',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 2779 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','6','B','?','_','_',' ','0','x','6','6',',','0','x','0','f',',','0','x','1','f',',','0','x','4','4',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 2831 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','7','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','8','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 2888 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','8','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','8','4',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 2950 */ p_define,'_','_','?','A','L','I','G','N','_','3','2','B','I','T','_','G','R','O','U','P','?','_','_',' ','8',EOL,
        /* 2977 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','1','B','?','_','_',' ','0','x','9','0',EOL,
        /* 3004 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','2','B','?','_','_',' ','0','x','6','6',',','0','x','9','0',EOL,
        /* 3036 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','3','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','0','0',EOL,
        /* 3073 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','4','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','4','0',',','0','x','0','0',EOL,
        /* 3115 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','5','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','4','4',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 3162 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','6','B','?','_','_',' ','0','x','6','6',',','0','x','0','f',',','0','x','1','f',',','0','x','4','4',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 3214 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','7','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','8','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 3271 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','8','B','?','_','_',' ','0','x','0','f',',','0','x','1','f',',','0','x','8','4',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',',','0','x','0','0',EOL,
        /* 3333 */ p_define,'_','_','?','A','L','I','G','N','_','6','4','B','I','T','_','G','R','O','U','P','?','_','_',' ','8',EOL,
        /* 3360 */ p_else,EOL,
        /* 3362 */ p_error,'u','n','k','n','o','w','n',' ','a','l','i','g','n','m','e','n','t',' ','m','o','d','e',':',' ','%','1',EOL,
        /* 3390 */ p_endif,EOL,
        /* 3392 */ p_ifnempty,'%','2',EOL,
        /* 3396 */ p_ifidni,'%','2',',','n','o','j','m','p',EOL,
        /* 3406 */ p_xdefine,'_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',' ','-','1',EOL,
        /* 3436 */ p_else,EOL,
        /* 3438 */ p_xdefine,'_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',' ','%','2',EOL,
        /* 3468 */ p_endif,EOL,
        /* 3470 */ p_endif,EOL,
        /* 3472 */ p_xdefine,'_','_','?','A','L','I','G','N','M','O','D','E','?','_','_',' ','%','1',',','_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',EOL,
        /* 3518 */ p_endmacro,EOL,
        /* 3520 */ p_defalias,'_','_','A','L','I','G','N','M','O','D','E','_','_',' ','_','_','?','A','L','I','G','N','M','O','D','E','?','_','_',EOL,
        /* 3551 */ p_unimacro,'a','l','i','g','n',' ','1','-','2','+','.','n','o','l','i','s','t',EOL,
        /* 3570 */ p_imacro,'a','l','i','g','n',' ','1','-','2','+','.','n','o','l','i','s','t',EOL,
        /* 3589 */ 's','e','c','t','a','l','i','g','n',' ','%','1',EOL,
        /* 3602 */ p_ifnempty,'%','2',EOL,
        /* 3606 */ 't','i','m','e','s',' ','(','(','(','%','1',')',' ','-',' ','(','(','$','-','$','$',')',' ','%',' ','(','%','1',')',')',')',' ','%',' ','(','%','1',')',')',' ','%','2',EOL,
        /* 3649 */ p_elif,'_','_','?','P','A','S','S','?','_','_',' ','=','=',' ','0',' ','|','|',' ','_','_','?','P','A','S','S','?','_','_',' ','=','=',' ','3',EOL,
        /* 3685 */ 't','i','m','e','s',' ','(','(','(','%','1',')',' ','-',' ','(','(','$','-','$','$',')',' ','%',' ','(','%','1',')',')',')',' ','%',' ','(','%','1',')',')',' ','n','o','p',EOL,
        /* 3729 */ p_else,EOL,
        /* 3731 */ p_push,EOL,
        /* 3733 */ p_assign,'%','$','p','a','d',' ','(','(','(','%','1',')',' ','-',' ','(','(','$','-','$','$',')',' ','%',' ','(','%','1',')',')',')',' ','%',' ','(','%','1',')',')',EOL,
        /* 3774 */ p_if,'_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',' ','!','=',' ','-','1',' ','&','&',' ','%','$','p','a','d',' ','>',' ','_','_','?','A','L','I','G','N','_','J','M','P','_','T','H','R','E','S','H','O','L','D','?','_','_',EOL,
        /* 3844 */ 'j','m','p',' ','%','$','e','n','d',EOL,
        /* 3854 */ 't','i','m','e','s',' ','(','(','(','%','1',')',' ','-',' ','(','(','$','-','$','$',')',' ','%',' ','(','%','1',')',')',')',' ','%',' ','(','%','1',')',')',' ','n','o','p',EOL,
        /* 3898 */ p_else,EOL,
        /* 3900 */ 't','i','m','e','s',' ','(','%','$','p','a','d',' ','/',' ','_','_','?','A','L','I','G','N','_','%','[','_','_','?','B','I','T','S','?','_','_',']','B','I','T','_','G','R','O','U','P','?','_','_',')',' ','d','b',' ','_','_','?','A','L','I','G','N','_','%','[','_','_','?','B','I','T','S','?','_','_',']','B','I','T','_','%','[','_','_','?','A','L','I','G','N','_','%','[','_','_','?','B','I','T','S','?','_','_',']','B','I','T','_','G','R','O','U','P','?','_','_',']','B','?','_','_',EOL,
        /* 4022 */ p_assign,'%','$','p','a','d',' ','%','$','p','a','d',' ','%',' ','_','_','?','A','L','I','G','N','_','%','[','_','_','?','B','I','T','S','?','_','_',']','B','I','T','_','G','R','O','U','P','?','_','_',EOL,
        /* 4072 */ p_if,'%','$','p','a','d',' ','>',' ','0',EOL,
        /* 4083 */ 'd','b',' ','_','_','?','A','L','I','G','N','_','%','[','_','_','?','B','I','T','S','?','_','_',']','B','I','T','_','%','[','%','$','p','a','d',']','B','?','_','_',EOL,
        /* 4125 */ p_endif,EOL,
        /* 4127 */ p_endif,EOL,
        /* 4129 */ '%','$','e','n','d',':',EOL,
        /* 4136 */ p_pop,EOL,
        /* 4138 */ p_endif,EOL,
        /* 4140 */ p_endmacro,EOL,
        /* 4142 */ 'a','l','i','g','n','m','o','d','e',' ','g','e','n','e','r','i','c',EOL,
        /* 4160 */ EOL
};
#endif

#if 1
const unsigned char nasm_stdmac_tasm[] = {
    /* From ./macros/standard.mac */
        /*    0 */ p_idefine,'I','D','E','A','L',EOL,
        /*    7 */ p_idefine,'J','U','M','P','S',EOL,
        /*   14 */ p_idefine,'P','3','8','6',EOL,
        /*   20 */ p_idefine,'P','4','8','6',EOL,
        /*   26 */ p_idefine,'P','5','8','6',EOL,
        /*   32 */ p_idefine,'E','N','D',EOL,
        /*   37 */ EOL
};
#endif

#if 1
const unsigned char nasm_stdmac_nasm[] = {
    /* From ./macros/standard.mac */
        /*    0 */ p_define,'_','_','?','S','E','C','T','?','_','_',EOL,
        /*   12 */ p_defalias,'_','_','S','E','C','T','_','_',' ','_','_','?','S','E','C','T','?','_','_',EOL,
        /*   33 */ p_imacro,'s','e','c','t','i','o','n',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*   52 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','c','t','i','o','n',' ','%','1',']',EOL,
        /*   77 */ '_','_','?','S','E','C','T','?','_','_',EOL,
        /*   88 */ p_endmacro,EOL,
        /*   90 */ p_imacro,'s','e','g','m','e','n','t',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*  109 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','g','m','e','n','t',' ','%','1',']',EOL,
        /*  134 */ '_','_','?','S','E','C','T','?','_','_',EOL,
        /*  145 */ p_endmacro,EOL,
        /*  147 */ p_define,'_','_','?','S','E','C','T','A','L','I','G','N','_','A','L','I','G','N','_','U','P','D','A','T','E','S','_','S','E','C','T','I','O','N','?','_','_',' ','1',EOL,
        /*  188 */ p_imacro,'s','e','c','t','a','l','i','g','n',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*  209 */ p_ifidni,'%','1',',','o','f','f',EOL,
        /*  217 */ p_define,'_','_','?','S','E','C','T','A','L','I','G','N','_','A','L','I','G','N','_','U','P','D','A','T','E','S','_','S','E','C','T','I','O','N','?','_','_',' ','0',EOL,
        /*  258 */ p_elifidni,'%','1',',','o','n',EOL,
        /*  265 */ p_define,'_','_','?','S','E','C','T','A','L','I','G','N','_','A','L','I','G','N','_','U','P','D','A','T','E','S','_','S','E','C','T','I','O','N','?','_','_',' ','1',EOL,
        /*  306 */ p_else,EOL,
        /*  308 */ '[','s','e','c','t','a','l','i','g','n',' ','%','1',']',EOL,
        /*  323 */ p_endif,EOL,
        /*  325 */ p_endmacro,EOL,
        /*  327 */ p_defalias,'_','_','S','E','C','T','A','L','I','G','N','_','A','L','I','G','N','_','U','P','D','A','T','E','S','_','S','E','C','T','I','O','N','_','_',' ','_','_','?','S','E','C','T','A','L','I','G','N','_','A','L','I','G','N','_','U','P','D','A','T','E','S','_','S','E','C','T','I','O','N','?','_','_',EOL,
        /*  402 */ p_imacro,'a','b','s','o','l','u','t','e',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*  422 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','a','b','s','o','l','u','t','e',' ','%','1',']',EOL,
        /*  448 */ '_','_','?','S','E','C','T','?','_','_',EOL,
        /*  459 */ p_endmacro,EOL,
        /*  461 */ p_imacro,'s','t','r','u','c',' ','1','-','2','.','n','o','l','i','s','t',' ','0',EOL,
        /*  481 */ p_push,EOL,
        /*  483 */ p_define,'%','$','s','t','r','u','c','n','a','m','e',' ','%','1',EOL,
        /*  499 */ '[','a','b','s','o','l','u','t','e',' ','%','2',']',EOL,
        /*  513 */ '%','$','s','t','r','u','c','n','a','m','e',':',EOL,
        /*  526 */ p_endmacro,EOL,
        /*  528 */ p_imacro,'e','n','d','s','t','r','u','c',' ','0','.','n','o','l','i','s','t',EOL,
        /*  547 */ '%','{','$','s','t','r','u','c','n','a','m','e','}','_','s','i','z','e',' ','e','q','u',' ','(','$','-','%','$','s','t','r','u','c','n','a','m','e',')',EOL,
        /*  586 */ p_pop,EOL,
        /*  588 */ '_','_','?','S','E','C','T','?','_','_',EOL,
        /*  599 */ p_endmacro,EOL,
        /*  601 */ p_imacro,'i','s','t','r','u','c',' ','1','.','n','o','l','i','s','t',EOL,
        /*  618 */ p_push,EOL,
        /*  620 */ p_define,'%','$','s','t','r','u','c','n','a','m','e',' ','%','1',EOL,
        /*  636 */ '%','$','s','t','r','u','c','s','t','a','r','t',':',EOL,
        /*  650 */ p_endmacro,EOL,
        /*  652 */ p_imacro,'a','t',' ','1','-','2','+','.','n','o','l','i','s','t',EOL,
        /*  668 */ p_defstr,'%','$','m','e','m','b','e','r',' ','%','1',EOL,
        /*  681 */ p_substr,'%','$','m','e','m','b','e','r','1',' ','%','$','m','e','m','b','e','r',' ','1',EOL,
        /*  703 */ p_ifidn,'%','$','m','e','m','b','e','r','1',',',' ','\'','.','\'',EOL,
        /*  719 */ 't','i','m','e','s',' ','(','%','$','s','t','r','u','c','n','a','m','e','%','1','-','%','$','s','t','r','u','c','n','a','m','e',')','-','(','$','-','%','$','s','t','r','u','c','s','t','a','r','t',')',' ','d','b',' ','0',EOL,
        /*  775 */ p_else,EOL,
        /*  777 */ 't','i','m','e','s',' ','(','%','1','-','%','$','s','t','r','u','c','n','a','m','e',')','-','(','$','-','%','$','s','t','r','u','c','s','t','a','r','t',')',' ','d','b',' ','0',EOL,
        /*  822 */ p_endif,EOL,
        /*  824 */ '%','2',EOL,
        /*  827 */ p_endmacro,EOL,
        /*  829 */ p_imacro,'i','e','n','d',' ','0','.','n','o','l','i','s','t',EOL,
        /*  844 */ 't','i','m','e','s',' ','%','{','$','s','t','r','u','c','n','a','m','e','}','_','s','i','z','e','-','(','$','-','%','$','s','t','r','u','c','s','t','a','r','t',')',' ','d','b',' ','0',EOL,
        /*  891 */ p_pop,EOL,
        /*  893 */ p_endmacro,EOL,
        /*  895 */ p_imacro,'a','l','i','g','n',' ','1','-','2','+','.','n','o','l','i','s','t',' ','n','o','p',EOL,
        /*  918 */ p_if,'_','_','?','S','E','C','T','A','L','I','G','N','_','A','L','I','G','N','_','U','P','D','A','T','E','S','_','S','E','C','T','I','O','N','?','_','_',EOL,
        /*  957 */ 's','e','c','t','a','l','i','g','n',' ','%','1',EOL,
        /*  970 */ p_endif,EOL,
        /*  972 */ 't','i','m','e','s',' ','(','(','(','%','1',')',' ','-',' ','(','(','$','-','$','$',')',' ','%',' ','(','%','1',')',')',')',' ','%',' ','(','%','1',')',')',' ','%','2',EOL,
        /* 1015 */ p_endmacro,EOL,
        /* 1017 */ p_imacro,'a','l','i','g','n','b',' ','1','-','2','+','.','n','o','l','i','s','t',EOL,
        /* 1037 */ p_if,'_','_','?','S','E','C','T','A','L','I','G','N','_','A','L','I','G','N','_','U','P','D','A','T','E','S','_','S','E','C','T','I','O','N','?','_','_',EOL,
        /* 1076 */ 's','e','c','t','a','l','i','g','n',' ','%','1',EOL,
        /* 1089 */ p_endif,EOL,
        /* 1091 */ p_ifempty,'%','2',EOL,
        /* 1095 */ '[','w','a','r','n','i','n','g',' ','p','u','s','h',']',EOL,
        /* 1110 */ '[','w','a','r','n','i','n','g',' ','-','z','e','r','o','i','n','g',']',EOL,
        /* 1129 */ 'r','e','s','b',' ','(','(','(','%','1',')',' ','-',' ','(','(','$','-','$','$',')',' ','%',' ','(','%','1',')',')',')',' ','%',' ','(','%','1',')',')',EOL,
        /* 1168 */ '[','w','a','r','n','i','n','g',' ','p','o','p',']',EOL,
        /* 1182 */ p_else,EOL,
        /* 1184 */ 't','i','m','e','s',' ','(','(','(','%','1',')',' ','-',' ','(','(','$','-','$','$',')',' ','%',' ','(','%','1',')',')',')',' ','%',' ','(','%','1',')',')',' ','%','2',EOL,
        /* 1227 */ p_endif,EOL,
        /* 1229 */ p_endmacro,EOL,
        /* 1231 */ p_imacro,'b','i','t','s',' ','1','+','.','n','o','l','i','s','t',EOL,
        /* 1247 */ '[','b','i','t','s',' ','%','1',']',EOL,
        /* 1257 */ p_endmacro,EOL,
        /* 1259 */ p_imacro,'u','s','e','1','6',' ','0','.','n','o','l','i','s','t',EOL,
        /* 1275 */ '[','b','i','t','s',' ','1','6',']',EOL,
        /* 1285 */ p_endmacro,EOL,
        /* 1287 */ p_imacro,'u','s','e','3','2',' ','0','.','n','o','l','i','s','t',EOL,
        /* 1303 */ '[','b','i','t','s',' ','3','2',']',EOL,
        /* 1313 */ p_endmacro,EOL,
        /* 1315 */ p_imacro,'u','s','e','6','4',' ','0','.','n','o','l','i','s','t',EOL,
        /* 1331 */ '[','b','i','t','s',' ','6','4',']',EOL,
        /* 1341 */ p_endmacro,EOL,
        /* 1343 */ p_imacro,'e','x','t','e','r','n',' ','1','-','*','.','n','o','l','i','s','t',EOL,
        /* 1362 */ p_rep,'%','0',EOL,
        /* 1366 */ '[','e','x','t','e','r','n',' ','%','1',']',EOL,
        /* 1378 */ p_rotate,'1',EOL,
        /* 1381 */ p_endrep,EOL,
        /* 1383 */ p_endmacro,EOL,
        /* 1385 */ p_imacro,'s','t','a','t','i','c',' ','1','-','*','.','n','o','l','i','s','t',EOL,
        /* 1404 */ p_rep,'%','0',EOL,
        /* 1408 */ '[','s','t','a','t','i','c',' ','%','1',']',EOL,
        /* 1420 */ p_rotate,'1',EOL,
        /* 1423 */ p_endrep,EOL,
        /* 1425 */ p_endmacro,EOL,
        /* 1427 */ p_imacro,'g','l','o','b','a','l',' ','1','-','*','.','n','o','l','i','s','t',EOL,
        /* 1446 */ p_rep,'%','0',EOL,
        /* 1450 */ '[','g','l','o','b','a','l',' ','%','1',']',EOL,
        /* 1462 */ p_rotate,'1',EOL,
        /* 1465 */ p_endrep,EOL,
        /* 1467 */ p_endmacro,EOL,
        /* 1469 */ p_imacro,'r','e','q','u','i','r','e','d',' ','1','-','*','.','n','o','l','i','s','t',EOL,
        /* 1490 */ p_rep,'%','0',EOL,
        /* 1494 */ '[','r','e','q','u','i','r','e','d',' ','%','1',']',EOL,
        /* 1508 */ p_rotate,'1',EOL,
        /* 1511 */ p_endrep,EOL,
        /* 1513 */ p_endmacro,EOL,
        /* 1515 */ p_imacro,'c','o','m','m','o','n',' ','1','-','*','.','n','o','l','i','s','t',EOL,
        /* 1534 */ p_rep,'%','0',EOL,
        /* 1538 */ '[','c','o','m','m','o','n',' ','%','1',']',EOL,
        /* 1550 */ p_rotate,'1',EOL,
        /* 1553 */ p_endrep,EOL,
        /* 1555 */ p_endmacro,EOL,
        /* 1557 */ p_imacro,'c','p','u',' ','1','+','.','n','o','l','i','s','t',EOL,
        /* 1572 */ '[','c','p','u',' ','%','1',']',EOL,
        /* 1581 */ p_endmacro,EOL,
        /* 1583 */ p_define,'_','_','?','F','L','O','A','T','_','D','A','Z','?','_','_',' ','n','o','d','a','z',EOL,
        /* 1606 */ p_define,'_','_','?','F','L','O','A','T','_','R','O','U','N','D','?','_','_',' ','n','e','a','r',EOL,
        /* 1630 */ p_define,'_','_','?','F','L','O','A','T','?','_','_',' ','_','_','?','F','L','O','A','T','_','D','A','Z','?','_','_',',','_','_','?','F','L','O','A','T','_','R','O','U','N','D','?','_','_',EOL,
        /* 1677 */ p_defalias,'_','_','F','L','O','A','T','_','D','A','Z','_','_',' ','_','_','?','F','L','O','A','T','_','D','A','Z','?','_','_',EOL,
        /* 1708 */ p_defalias,'_','_','F','L','O','A','T','_','R','O','U','N','D','_','_',' ','_','_','?','F','L','O','A','T','_','R','O','U','N','D','?','_','_',EOL,
        /* 1743 */ p_defalias,'_','_','F','L','O','A','T','_','_',' ','_','_','?','F','L','O','A','T','?','_','_',EOL,
        /* 1766 */ p_imacro,'f','l','o','a','t',' ','1','-','*','.','n','o','l','i','s','t',EOL,
        /* 1784 */ p_rep,'%','0',EOL,
        /* 1788 */ '[','f','l','o','a','t',' ','%','1',']',EOL,
        /* 1799 */ p_ifidni,'%','1',',','d','a','z',EOL,
        /* 1807 */ p_define,'_','_','?','F','L','O','A','T','_','D','A','Z','?','_','_',' ','d','a','z',EOL,
        /* 1828 */ p_elifidni,'%','1',',','n','o','d','a','z',EOL,
        /* 1838 */ p_define,'_','_','?','F','L','O','A','T','_','D','A','Z','?','_','_',' ','n','o','d','a','z',EOL,
        /* 1861 */ p_elifidni,'%','1',',','n','e','a','r',EOL,
        /* 1870 */ p_define,'_','_','?','F','L','O','A','T','_','R','O','U','N','D','?','_','_',' ','n','e','a','r',EOL,
        /* 1894 */ p_elifidni,'%','1',',','u','p',EOL,
        /* 1901 */ p_define,'_','_','?','F','L','O','A','T','_','R','O','U','N','D','?','_','_',' ','u','p',EOL,
        /* 1923 */ p_elifidni,'%','1',',','d','o','w','n',EOL,
        /* 1932 */ p_define,'_','_','?','F','L','O','A','T','_','R','O','U','N','D','?','_','_',' ','d','o','w','n',EOL,
        /* 1956 */ p_elifidni,'%','1',',','z','e','r','o',EOL,
        /* 1965 */ p_define,'_','_','?','F','L','O','A','T','_','R','O','U','N','D','?','_','_',' ','z','e','r','o',EOL,
        /* 1989 */ p_elifidni,'%','1',',','d','e','f','a','u','l','t',EOL,
        /* 2001 */ p_define,'_','_','?','F','L','O','A','T','_','D','A','Z','?','_','_',' ','n','o','d','a','z',EOL,
        /* 2024 */ p_define,'_','_','?','F','L','O','A','T','_','R','O','U','N','D','?','_','_',' ','n','e','a','r',EOL,
        /* 2048 */ p_endif,EOL,
        /* 2050 */ p_rotate,'1',EOL,
        /* 2053 */ p_endrep,EOL,
        /* 2055 */ p_endmacro,EOL,
        /* 2057 */ p_imacro,'d','e','f','a','u','l','t',' ','1','+','.','n','o','l','i','s','t',EOL,
        /* 2076 */ '[','d','e','f','a','u','l','t',' ','%','1',']',EOL,
        /* 2089 */ p_endmacro,EOL,
        /* 2091 */ p_imacro,'u','s','e','r','e','l',' ','0','.','n','o','l','i','s','t',EOL,
        /* 2108 */ '[','d','e','f','a','u','l','t',' ','r','e','l',']',EOL,
        /* 2122 */ p_endmacro,EOL,
        /* 2124 */ p_imacro,'u','s','e','a','b','s',' ','0','.','n','o','l','i','s','t',EOL,
        /* 2141 */ '[','d','e','f','a','u','l','t',' ','a','b','s',']',EOL,
        /* 2155 */ p_endmacro,EOL,
        /* 2157 */ p_imacro,'u','s','e','b','n','d',' ','0','.','n','o','l','i','s','t',EOL,
        /* 2174 */ '[','d','e','f','a','u','l','t',' ','b','n','d',']',EOL,
        /* 2188 */ p_endmacro,EOL,
        /* 2190 */ p_imacro,'u','s','e','n','o','b','n','d',' ','0','.','n','o','l','i','s','t',EOL,
        /* 2209 */ '[','d','e','f','a','u','l','t',' ','n','o','b','n','d',']',EOL,
        /* 2225 */ p_endmacro,EOL,
        /* 2227 */ p_imacro,'i','n','c','b','i','n',' ','1','-','2','+','.','n','o','l','i','s','t',' ','0',EOL,
        /* 2249 */ p_push,EOL,
        /* 2251 */ p_pathsearch,'%','$','d','e','p',' ','%','1',EOL,
        /* 2261 */ p_depend,'%','$','d','e','p',EOL,
        /* 2268 */ '%','?',' ','%','$','d','e','p',',','%','2',EOL,
        /* 2280 */ p_pop,EOL,
        /* 2282 */ p_endmacro,EOL,
        /* 2284 */ p_defalias,'_','_','N','A','S','M','_','M','A','J','O','R','_','_',' ','_','_','?','N','A','S','M','_','M','A','J','O','R','?','_','_',EOL,
        /* 2317 */ p_defalias,'_','_','N','A','S','M','_','M','I','N','O','R','_','_',' ','_','_','?','N','A','S','M','_','M','I','N','O','R','?','_','_',EOL,
        /* 2350 */ p_defalias,'_','_','N','A','S','M','_','S','U','B','M','I','N','O','R','_','_',' ','_','_','?','N','A','S','M','_','S','U','B','M','I','N','O','R','?','_','_',EOL,
        /* 2389 */ p_defalias,'_','_','N','A','S','M','_','P','A','T','C','H','L','E','V','E','L','_','_',' ','_','_','?','N','A','S','M','_','P','A','T','C','H','L','E','V','E','L','?','_','_',EOL,
        /* 2432 */ p_defalias,'_','_','N','A','S','M','_','S','N','A','P','S','H','O','T','_','_',' ','_','_','?','N','A','S','M','_','S','N','A','P','S','H','O','T','?','_','_',EOL,
        /* 2471 */ p_defalias,'_','_','N','A','S','M','_','V','E','R','S','I','O','N','_','I','D','_','_',' ','_','_','?','N','A','S','M','_','V','E','R','S','I','O','N','_','I','D','?','_','_',EOL,
        /* 2514 */ p_defalias,'_','_','N','A','S','M','_','V','E','R','_','_',' ','_','_','?','N','A','S','M','_','V','E','R','?','_','_',EOL,
        /* 2543 */ p_defalias,'_','_','O','U','T','P','U','T','_','F','O','R','M','A','T','_','_',' ','_','_','?','O','U','T','P','U','T','_','F','O','R','M','A','T','?','_','_',EOL,
        /* 2582 */ p_defalias,'_','_','D','E','B','U','G','_','F','O','R','M','A','T','_','_',' ','_','_','?','D','E','B','U','G','_','F','O','R','M','A','T','?','_','_',EOL,
        /* 2619 */ p_defalias,'_','_','D','A','T','E','_','_',' ','_','_','?','D','A','T','E','?','_','_',EOL,
        /* 2640 */ p_defalias,'_','_','D','A','T','E','_','N','U','M','_','_',' ','_','_','?','D','A','T','E','_','N','U','M','?','_','_',EOL,
        /* 2669 */ p_defalias,'_','_','T','I','M','E','_','_',' ','_','_','?','T','I','M','E','?','_','_',EOL,
        /* 2690 */ p_defalias,'_','_','T','I','M','E','_','N','U','M','_','_',' ','_','_','?','T','I','M','E','_','N','U','M','?','_','_',EOL,
        /* 2719 */ p_defalias,'_','_','U','T','C','_','D','A','T','E','_','_',' ','_','_','?','U','T','C','_','D','A','T','E','?','_','_',EOL,
        /* 2748 */ p_defalias,'_','_','U','T','C','_','D','A','T','E','_','N','U','M','_','_',' ','_','_','?','U','T','C','_','D','A','T','E','_','N','U','M','?','_','_',EOL,
        /* 2785 */ p_defalias,'_','_','U','T','C','_','T','I','M','E','_','_',' ','_','_','?','U','T','C','_','T','I','M','E','?','_','_',EOL,
        /* 2814 */ p_defalias,'_','_','U','T','C','_','T','I','M','E','_','N','U','M','_','_',' ','_','_','?','U','T','C','_','T','I','M','E','_','N','U','M','?','_','_',EOL,
        /* 2851 */ p_defalias,'_','_','P','O','S','I','X','_','T','I','M','E','_','_',' ','_','_','?','P','O','S','I','X','_','T','I','M','E','?','_','_',EOL,
        /* 2884 */ p_defalias,'_','_','F','I','L','E','_','_',' ','_','_','?','F','I','L','E','?','_','_',EOL,
        /* 2905 */ p_defalias,'_','_','L','I','N','E','_','_',' ','_','_','?','L','I','N','E','?','_','_',EOL,
        /* 2926 */ p_defalias,'_','_','B','I','T','S','_','_',' ','_','_','?','B','I','T','S','?','_','_',EOL,
        /* 2947 */ p_defalias,'_','_','P','T','R','_','_',' ','_','_','?','P','T','R','?','_','_',EOL,
        /* 2966 */ p_defalias,'_','_','P','A','S','S','_','_',' ','_','_','?','P','A','S','S','?','_','_',EOL,
        /* 2987 */ p_idefine,'_','_','?','i','n','f','i','n','i','t','y','?','_','_',' ','%','?',EOL,
        /* 3006 */ p_idefine,'_','_','?','n','a','n','?','_','_',' ','%','?',EOL,
        /* 3020 */ p_idefine,'_','_','?','q','n','a','n','?','_','_',' ','%','?',EOL,
        /* 3035 */ p_idefine,'_','_','?','s','n','a','n','?','_','_',' ','%','?',EOL,
        /* 3050 */ p_idefine,'_','_','?','f','l','o','a','t','8','?','_','_',' ','%','?',EOL,
        /* 3067 */ p_idefine,'_','_','?','f','l','o','a','t','1','6','?','_','_',' ','%','?',EOL,
        /* 3085 */ p_idefine,'_','_','?','f','l','o','a','t','3','2','?','_','_',' ','%','?',EOL,
        /* 3103 */ p_idefine,'_','_','?','f','l','o','a','t','6','4','?','_','_',' ','%','?',EOL,
        /* 3121 */ p_idefine,'_','_','?','f','l','o','a','t','8','0','m','?','_','_',' ','%','?',EOL,
        /* 3140 */ p_idefine,'_','_','?','f','l','o','a','t','8','0','e','?','_','_',' ','%','?',EOL,
        /* 3159 */ p_idefine,'_','_','?','f','l','o','a','t','1','2','8','l','?','_','_',' ','%','?',EOL,
        /* 3179 */ p_idefine,'_','_','?','f','l','o','a','t','1','2','8','h','?','_','_',' ','%','?',EOL,
        /* 3199 */ p_idefine,'_','_','?','u','t','f','1','6','?','_','_',' ','%','?',EOL,
        /* 3215 */ p_idefine,'_','_','?','u','t','f','1','6','l','e','?','_','_',' ','%','?',EOL,
        /* 3233 */ p_idefine,'_','_','?','u','t','f','1','6','b','e','?','_','_',' ','%','?',EOL,
        /* 3251 */ p_idefine,'_','_','?','u','t','f','3','2','?','_','_',' ','%','?',EOL,
        /* 3267 */ p_idefine,'_','_','?','u','t','f','3','2','l','e','?','_','_',' ','%','?',EOL,
        /* 3285 */ p_idefine,'_','_','?','u','t','f','3','2','b','e','?','_','_',' ','%','?',EOL,
        /* 3303 */ p_idefine,'_','_','?','i','l','o','g','2','e','?','_','_',' ','%','?',EOL,
        /* 3320 */ p_idefine,'_','_','?','i','l','o','g','2','w','?','_','_',' ','%','?',EOL,
        /* 3337 */ p_idefine,'_','_','?','i','l','o','g','2','f','?','_','_',' ','%','?',EOL,
        /* 3354 */ p_idefine,'_','_','?','i','l','o','g','2','c','?','_','_',' ','%','?',EOL,
        /* 3371 */ p_idefalias,'_','_','i','n','f','i','n','i','t','y','_','_',' ','_','_','?','i','n','f','i','n','i','t','y','?','_','_',EOL,
        /* 3400 */ p_idefalias,'_','_','n','a','n','_','_',' ','_','_','?','n','a','n','?','_','_',EOL,
        /* 3419 */ p_idefalias,'_','_','q','n','a','n','_','_',' ','_','_','?','q','n','a','n','?','_','_',EOL,
        /* 3440 */ p_idefalias,'_','_','s','n','a','n','_','_',' ','_','_','?','s','n','a','n','?','_','_',EOL,
        /* 3461 */ p_idefalias,'_','_','f','l','o','a','t','8','_','_',' ','_','_','?','f','l','o','a','t','8','?','_','_',EOL,
        /* 3486 */ p_idefalias,'_','_','f','l','o','a','t','1','6','_','_',' ','_','_','?','f','l','o','a','t','1','6','?','_','_',EOL,
        /* 3513 */ p_idefalias,'_','_','f','l','o','a','t','3','2','_','_',' ','_','_','?','f','l','o','a','t','3','2','?','_','_',EOL,
        /* 3540 */ p_idefalias,'_','_','f','l','o','a','t','6','4','_','_',' ','_','_','?','f','l','o','a','t','6','4','?','_','_',EOL,
        /* 3567 */ p_idefalias,'_','_','f','l','o','a','t','8','0','m','_','_',' ','_','_','?','f','l','o','a','t','8','0','m','?','_','_',EOL,
        /* 3596 */ p_idefalias,'_','_','f','l','o','a','t','8','0','e','_','_',' ','_','_','?','f','l','o','a','t','8','0','e','?','_','_',EOL,
        /* 3625 */ p_idefalias,'_','_','f','l','o','a','t','1','2','8','l','_','_',' ','_','_','?','f','l','o','a','t','1','2','8','l','?','_','_',EOL,
        /* 3656 */ p_idefalias,'_','_','f','l','o','a','t','1','2','8','h','_','_',' ','_','_','?','f','l','o','a','t','1','2','8','h','?','_','_',EOL,
        /* 3687 */ p_idefalias,'_','_','u','t','f','1','6','_','_',' ','_','_','?','u','t','f','1','6','?','_','_',EOL,
        /* 3710 */ p_idefalias,'_','_','u','t','f','1','6','l','e','_','_',' ','_','_','?','u','t','f','1','6','l','e','?','_','_',EOL,
        /* 3737 */ p_idefalias,'_','_','u','t','f','1','6','b','e','_','_',' ','_','_','?','u','t','f','1','6','b','e','?','_','_',EOL,
        /* 3764 */ p_idefalias,'_','_','u','t','f','3','2','_','_',' ','_','_','?','u','t','f','3','2','?','_','_',EOL,
        /* 3787 */ p_idefalias,'_','_','u','t','f','3','2','l','e','_','_',' ','_','_','?','u','t','f','3','2','l','e','?','_','_',EOL,
        /* 3814 */ p_idefalias,'_','_','u','t','f','3','2','b','e','_','_',' ','_','_','?','u','t','f','3','2','b','e','?','_','_',EOL,
        /* 3841 */ p_idefalias,'_','_','i','l','o','g','2','e','_','_',' ','_','_','?','i','l','o','g','2','e','?','_','_',EOL,
        /* 3866 */ p_idefalias,'_','_','i','l','o','g','2','w','_','_',' ','_','_','?','i','l','o','g','2','w','?','_','_',EOL,
        /* 3891 */ p_idefalias,'_','_','i','l','o','g','2','f','_','_',' ','_','_','?','i','l','o','g','2','f','?','_','_',EOL,
        /* 3916 */ p_idefalias,'_','_','i','l','o','g','2','c','_','_',' ','_','_','?','i','l','o','g','2','c','?','_','_',EOL,
        /* 3941 */ EOL
};
#endif

#if defined(OF_AOUT) || defined(OF_AOUTB)
const unsigned char aout_stdmac[] = {
    /* From ./output/outaout.mac */
        /*    0 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','c','t','i','o','n',' ','.','t','e','x','t',']',EOL,
        /*   28 */ p_macro,'_','_','?','N','A','S','M','_','C','D','e','c','l','?','_','_',' ','1',EOL,
        /*   48 */ p_endmacro,EOL,
        /*   50 */ EOL
};
#endif

#if defined(OF_AS86)
const unsigned char as86_stdmac[] = {
    /* From ./output/outas86.mac */
        /*    0 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','c','t','i','o','n',' ','.','t','e','x','t',']',EOL,
        /*   28 */ p_macro,'_','_','?','N','A','S','M','_','C','D','e','c','l','?','_','_',' ','1',EOL,
        /*   48 */ p_endmacro,EOL,
        /*   50 */ EOL
};
#endif

#if defined(OF_BIN)
const unsigned char bin_stdmac[] = {
    /* From ./output/outbin.mac */
        /*    0 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','c','t','i','o','n',' ','.','t','e','x','t',']',EOL,
        /*   28 */ p_imacro,'o','r','g',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*   43 */ '[','o','r','g',' ','%','1',']',EOL,
        /*   52 */ p_endmacro,EOL,
        /*   54 */ p_macro,'_','_','?','N','A','S','M','_','C','D','e','c','l','?','_','_',' ','1',EOL,
        /*   74 */ p_endmacro,EOL,
        /*   76 */ EOL
};
#endif

#if defined(OF_COFF) || defined(OF_WIN32) || defined(OF_WIN64)
const unsigned char coff_stdmac[] = {
    /* From ./output/outcoff.mac */
        /*    0 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','c','t','i','o','n',' ','.','t','e','x','t',']',EOL,
        /*   28 */ p_macro,'_','_','?','N','A','S','M','_','C','D','e','c','l','?','_','_',' ','1',EOL,
        /*   48 */ p_endmacro,EOL,
        /*   50 */ p_imacro,'e','x','p','o','r','t',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*   68 */ '[','e','x','p','o','r','t',' ','%','1',']',EOL,
        /*   80 */ p_endmacro,EOL,
        /*   82 */ p_imacro,'s','a','f','e','s','e','h',' ','1','.','n','o','l','i','s','t',EOL,
        /*  100 */ '[','s','a','f','e','s','e','h',' ','%','1',']',EOL,
        /*  113 */ p_endmacro,EOL,
        /*  115 */ EOL
};
#endif

#if defined(OF_DBG)
const unsigned char dbg_stdmac[] = {
    /* From ./output/outdbg.mac */
        /*    0 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','c','t','i','o','n',' ','.','t','e','x','t',']',EOL,
        /*   28 */ p_imacro,'g','r','o','u','p',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*   45 */ '[','g','r','o','u','p',' ','%','1',']',EOL,
        /*   56 */ p_endmacro,EOL,
        /*   58 */ p_imacro,'u','p','p','e','r','c','a','s','e',' ','0','+','.','n','o','l','i','s','t',EOL,
        /*   79 */ p_pragma,'d','b','g',' ','u','p','p','e','r','c','a','s','e',' ','%','1',EOL,
        /*   97 */ p_endmacro,EOL,
        /*   99 */ p_imacro,'e','x','p','o','r','t',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*  117 */ p_pragma,'d','b','g',' ','e','x','p','o','r','t',' ','%','1',EOL,
        /*  132 */ p_endmacro,EOL,
        /*  134 */ p_imacro,'i','m','p','o','r','t',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*  152 */ p_pragma,'d','b','g',' ','i','m','p','o','r','t',' ','%','1',EOL,
        /*  167 */ p_endmacro,EOL,
        /*  169 */ p_imacro,'o','r','g',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*  184 */ p_pragma,'d','b','g',' ','o','r','g',' ','%','1',EOL,
        /*  196 */ p_endmacro,EOL,
        /*  198 */ p_macro,'_','_','?','N','A','S','M','_','C','D','e','c','l','?','_','_',' ','1',EOL,
        /*  218 */ p_endmacro,EOL,
        /*  220 */ EOL
};
#endif

#if defined(OF_ELF) || defined(OF_ELF32) || defined(OF_ELF64)
const unsigned char elf_stdmac[] = {
    /* From ./output/outelf.mac */
        /*    0 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','c','t','i','o','n',' ','.','t','e','x','t',']',EOL,
        /*   28 */ p_macro,'_','_','?','N','A','S','M','_','C','D','e','c','l','?','_','_',' ','1',EOL,
        /*   48 */ p_define,'$','_','%','1',' ','$','%','1',EOL,
        /*   58 */ p_endmacro,EOL,
        /*   60 */ p_imacro,'o','s','a','b','i',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*   77 */ '[','%','?',' ','%','1',']',EOL,
        /*   85 */ p_endmacro,EOL,
        /*   87 */ EOL
};
#endif

#if defined(OF_MACHO) || defined(OF_MACHO32) || defined(OF_MACHO64)
const unsigned char macho_stdmac[] = {
    /* From ./output/outmacho.mac */
        /*    0 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','c','t','i','o','n',' ','.','t','e','x','t',']',EOL,
        /*   28 */ p_macro,'_','_','?','N','A','S','M','_','C','D','e','c','l','?','_','_',' ','1',EOL,
        /*   48 */ p_endmacro,EOL,
        /*   50 */ p_imacro,'s','u','b','s','e','c','t','i','o','n','s','_','v','i','a','_','s','y','m','b','o','l','s',' ','0','.','n','o','l','i','s','t',EOL,
        /*   84 */ p_pragma,'_','_','?','O','U','T','P','U','T','_','F','O','R','M','A','T','?','_','_',' ','%','?',EOL,
        /*  108 */ p_endmacro,EOL,
        /*  110 */ p_imacro,'n','o','_','d','e','a','d','_','s','t','r','i','p',' ','1','-','*','.','n','o','l','i','s','t',EOL,
        /*  136 */ p_rep,'%','0',EOL,
        /*  140 */ p_pragma,'_','_','?','O','U','T','P','U','T','_','F','O','R','M','A','T','?','_','_',' ','%','?',' ','%','1',EOL,
        /*  167 */ p_rotate,'1',EOL,
        /*  170 */ p_endrep,EOL,
        /*  172 */ p_endmacro,EOL,
        /*  174 */ EOL
};
#endif

#if defined(OF_OBJ)
const unsigned char obj_stdmac[] = {
    /* From ./output/outobj.mac */
        /*    0 */ p_define,'_','_','?','S','E','C','T','?','_','_',' ','[','s','e','c','t','i','o','n',' ','.','t','e','x','t',']',EOL,
        /*   28 */ p_imacro,'g','r','o','u','p',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*   45 */ '[','g','r','o','u','p',' ','%','1',']',EOL,
        /*   56 */ p_endmacro,EOL,
        /*   58 */ p_imacro,'u','p','p','e','r','c','a','s','e',' ','0','+','.','n','o','l','i','s','t',EOL,
        /*   79 */ '[','u','p','p','e','r','c','a','s','e',' ','%','1',']',EOL,
        /*   94 */ p_endmacro,EOL,
        /*   96 */ p_imacro,'e','x','p','o','r','t',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*  114 */ '[','e','x','p','o','r','t',' ','%','1',']',EOL,
        /*  126 */ p_endmacro,EOL,
        /*  128 */ p_imacro,'i','m','p','o','r','t',' ','1','+','.','n','o','l','i','s','t',EOL,
        /*  146 */ '[','i','m','p','o','r','t',' ','%','1',']',EOL,
        /*  158 */ p_endmacro,EOL,
        /*  160 */ p_macro,'_','_','?','N','A','S','M','_','C','D','e','c','l','?','_','_',' ','1',EOL,
        /*  180 */ p_endmacro,EOL,
        /*  182 */ EOL
};
#endif
const int use_package_count = 5;

const struct use_package *nasm_find_use_package(const char *name)
{
    static const struct use_package packages[5] = {
        { "altreg", nasm_usemac_altreg, 0 },
        { "fp", nasm_usemac_fp, 1 },
        { "ifunc", nasm_usemac_ifunc, 2 },
        { "masm", nasm_usemac_masm, 3 },
        { "smartalign", nasm_usemac_smartalign, 4 },
    };
#define INVALID_HASH_ENTRY (65535/3)
    static const int16_t hashdata[16] = {
        INVALID_HASH_ENTRY,
        0,
        INVALID_HASH_ENTRY,
        INVALID_HASH_ENTRY,
        2,
        0,
        INVALID_HASH_ENTRY,
        3,
        0,
        1,
        0,
        INVALID_HASH_ENTRY,
        INVALID_HASH_ENTRY,
        4,
        INVALID_HASH_ENTRY,
        INVALID_HASH_ENTRY,
    };
    uint32_t k1, k2;
    uint64_t crc;
    uint16_t ix;

    crc = crc64i(UINT64_C(0x076259c3e291c26c), name);
    k1 = ((uint32_t)crc & 0xe) + 0;
    k2 = ((uint32_t)(crc >> 32) & 0xe) + 1;

    ix = hashdata[k1] + hashdata[k2];
    if (ix >= 5)
        return NULL;

    if (nasm_stricmp(packages[ix].package, name))
        return NULL;

    return &packages[ix];
}