forked from swizl/tinycc_zh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcc.h
1663 lines (1466 loc) · 52.2 KB
/
tcc.h
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
/*
* TCC - Tiny C Compiler
*
* Copyright (c) 2001-2004 Fabrice Bellard
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#如未定义 _TCC_H
#定义 _TCC_H
#定义 _GNU_SOURCE
#包含 "config.h"
#包含 <stdlib.h>
#包含 <stdio.h>
#包含 <stdarg.h>
#包含 <string.h>
#包含 <errno.h>
#包含 <math.h>
#包含 <fcntl.h>
#包含 <setjmp.h>
#包含 <time.h>
#如未定义 _WIN32
# 包含 <unistd.h>
# 包含 <sys/time.h>
# 如未定义 CONFIG_TCC_STATIC
# 包含 <dlfcn.h>
# 了如
/* XXX: need to define this to use them in non ISOC99 context */
外部 单精 strtof (不变 字 *__nptr, 字 **__endptr);
外部 长 双精 strtold (不变 字 *__nptr, 字 **__endptr);
#了如
#如定义 _WIN32
# 包含 <windows.h>
# 包含 <io.h> /* open, close etc. */
# 包含 <direct.h> /* getcwd */
# 如定义 __GNUC__
# 包含 <stdint.h>
# 了如
# 定义 inline __inline
# 定义 snprintf _snprintf
# 定义 vsnprintf _vsnprintf
# 如未定义 __GNUC__
# 定义 strtold (长 双精)strtod
# 定义 strtof (单精)strtod
# 定义 strtoll _strtoi64
# 定义 strtoull _strtoui64
# 了如
# 如定义 LIBTCC_AS_DLL
# 定义 LIBTCCAPI __declspec(dllexport)
# 定义 PUB_FUNC LIBTCCAPI
# 了如
# 定义 inp next_inp /* inp is an intrinsic on msvc/mingw */
# 如定义 _MSC_VER
# pragma warning (disable : 4244) // conversion from 'uint64_t' to 'int', possible loss of data
# pragma warning (disable : 4267) // conversion from 'size_t' to 'int', possible loss of data
# pragma warning (disable : 4996) // The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name
# pragma warning (disable : 4018) // signed/unsigned mismatch
# pragma warning (disable : 4146) // unary minus operator applied to unsigned type, result still unsigned
# 定义 ssize_t intptr_t
# 了如
# 消定义 CONFIG_TCC_STATIC
#了如
#如未定义 O_BINARY
# 定义 O_BINARY 0
#了如
#如未定义 offsetof
#定义 offsetof(type, field) ((size_t) &((type *)0)->field)
#了如
#如未定义 countof
#定义 countof(tab) (求长度(tab) / 求长度((tab)[0]))
#了如
#如定义 _MSC_VER
# 定义 NORETURN __declspec(noreturn)
# 定义 ALIGNED(x) __declspec(align(x))
#另
# 定义 NORETURN __attribute__((noreturn))
# 定义 ALIGNED(x) __attribute__((aligned(x)))
#了如
#如定义 _WIN32
# 定义 IS_DIRSEP(c) (c == '/' || c == '\\')
# 定义 IS_ABSPATH(p) (IS_DIRSEP(p[0]) || (p[0] && p[1] == ':' && IS_DIRSEP(p[2])))
# 定义 PATHCMP stricmp
#另
# 定义 IS_DIRSEP(c) (c == '/')
# 定义 IS_ABSPATH(p) IS_DIRSEP(p[0])
# 定义 PATHCMP strcmp
#了如
/* -------------------------------------------- */
/* parser debug */
/* #定义 PARSE_DEBUG */
/* preprocessor debug */
/* #定义 PP_DEBUG */
/* include file debug */
/* #定义 INC_DEBUG */
/* memory leak debug */
/* #定义 MEM_DEBUG */
/* assembler debug */
/* #定义 ASM_DEBUG */
/* target selection */
/* #定义 TCC_TARGET_I386 *//* i386 code generator */
/* #定义 TCC_TARGET_X86_64 *//* x86-64 code generator */
/* #定义 TCC_TARGET_ARM *//* ARMv4 code generator */
/* #定义 TCC_TARGET_ARM64 *//* ARMv8 code generator */
/* #定义 TCC_TARGET_C67 *//* TMS320C67xx code generator */
/* default target is I386 */
#如 !已定义(TCC_TARGET_I386) && !已定义(TCC_TARGET_ARM) && \
!已定义(TCC_TARGET_ARM64) && !已定义(TCC_TARGET_C67) && \
!已定义(TCC_TARGET_X86_64)
# 如 已定义 __x86_64__ || 已定义 _AMD64_
# 定义 TCC_TARGET_X86_64
# 另如 已定义 __arm__
# 定义 TCC_TARGET_ARM
# 定义 TCC_ARM_EABI
# 定义 TCC_ARM_HARDFLOAT
# 另如 已定义 __aarch64__
# 定义 TCC_TARGET_ARM64
# 另
# 定义 TCC_TARGET_I386
# 了如
# 如定义 _WIN32
# 定义 TCC_TARGET_PE 1
# 了如
#了如
/* only native compiler supports -run */
#如 已定义 _WIN32 == 已定义 TCC_TARGET_PE
# 如 (已定义 __i386__ || 已定义 _X86_) && 已定义 TCC_TARGET_I386
# 定义 TCC_IS_NATIVE
# 另如 (已定义 __x86_64__ || 已定义 _AMD64_) && 已定义 TCC_TARGET_X86_64
# 定义 TCC_IS_NATIVE
# 另如 已定义 __arm__ && 已定义 TCC_TARGET_ARM
# 定义 TCC_IS_NATIVE
# 另如 已定义 __aarch64__ && 已定义 TCC_TARGET_ARM64
# 定义 TCC_IS_NATIVE
# 了如
#了如
#如 已定义 TCC_IS_NATIVE && !已定义 CONFIG_TCCBOOT
# 定义 CONFIG_TCC_BACKTRACE
# 如 (已定义 TCC_TARGET_I386 || 已定义 TCC_TARGET_X86_64) \
&& !已定义 TCC_UCLIBC && !已定义 TCC_MUSL
# 定义 CONFIG_TCC_BCHECK /* enable bound checking code */
# 了如
#了如
/* ------------ path configuration ------------ */
#如未定义 CONFIG_SYSROOT
# 定义 CONFIG_SYSROOT ""
#了如
#如未定义 CONFIG_TCCDIR
# 定义 CONFIG_TCCDIR "/usr/local/lib/tcc"
#了如
#如未定义 CONFIG_LDDIR
# 定义 CONFIG_LDDIR "lib"
#了如
#如定义 CONFIG_TRIPLET
# 定义 USE_TRIPLET(s) s "/" CONFIG_TRIPLET
# 定义 ALSO_TRIPLET(s) USE_TRIPLET(s) ":" s
#另
# 定义 USE_TRIPLET(s) s
# 定义 ALSO_TRIPLET(s) s
#了如
/* path to find crt1.o, crti.o and crtn.o */
#如未定义 CONFIG_TCC_CRTPREFIX
# 定义 CONFIG_TCC_CRTPREFIX USE_TRIPLET(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR)
#了如
/* Below: {B} is substituted by CONFIG_TCCDIR (rsp. -B option) */
/* system include paths */
#如未定义 CONFIG_TCC_SYSINCLUDEPATHS
# 如定义 TCC_TARGET_PE
# 定义 CONFIG_TCC_SYSINCLUDEPATHS "{B}/include;{B}/include/winapi"
# 另
# 定义 CONFIG_TCC_SYSINCLUDEPATHS \
"{B}/include" \
":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/include") \
":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/include")
# 了如
#了如
/* library search paths */
#如未定义 CONFIG_TCC_LIBPATHS
# 如定义 TCC_TARGET_PE
# 定义 CONFIG_TCC_LIBPATHS "{B}/lib"
# 另
# 定义 CONFIG_TCC_LIBPATHS \
ALSO_TRIPLET(CONFIG_SYSROOT "/usr/" CONFIG_LDDIR) \
":" ALSO_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) \
":" ALSO_TRIPLET(CONFIG_SYSROOT "/usr/local/" CONFIG_LDDIR)
# 了如
#了如
/* name of ELF interpreter */
#如未定义 CONFIG_TCC_ELFINTERP
# 如 已定义 __FreeBSD__
# 定义 CONFIG_TCC_ELFINTERP "/libexec/ld-elf.so.1"
# 另如 已定义 __FreeBSD_kernel__
# 如 已定义(TCC_TARGET_X86_64)
# 定义 CONFIG_TCC_ELFINTERP "/lib/ld-kfreebsd-x86-64.so.1"
# 另
# 定义 CONFIG_TCC_ELFINTERP "/lib/ld.so.1"
# 了如
# 另如 已定义 __DragonFly__
# 定义 CONFIG_TCC_ELFINTERP "/usr/libexec/ld-elf.so.2"
# 另如 已定义 __NetBSD__
# 定义 CONFIG_TCC_ELFINTERP "/usr/libexec/ld.elf_so"
# 另如 已定义 __GNU__
# 定义 CONFIG_TCC_ELFINTERP "/lib/ld.so"
# 另如 已定义(TCC_TARGET_PE)
# 定义 CONFIG_TCC_ELFINTERP "-"
# 另如 已定义(TCC_UCLIBC)
# 定义 CONFIG_TCC_ELFINTERP "/lib/ld-uClibc.so.0" /* is there a uClibc for x86_64 ? */
# 另如 已定义 TCC_TARGET_ARM64
# 如 已定义(TCC_MUSL)
# 定义 CONFIG_TCC_ELFINTERP "/lib/ld-musl-aarch64.so.1"
# 另
# 定义 CONFIG_TCC_ELFINTERP "/lib/ld-linux-aarch64.so.1"
# 了如
# 另如 已定义(TCC_TARGET_X86_64)
# 如 已定义(TCC_MUSL)
# 定义 CONFIG_TCC_ELFINTERP "/lib/ld-musl-x86_64.so.1"
# 另
# 定义 CONFIG_TCC_ELFINTERP "/lib64/ld-linux-x86-64.so.2"
# 了如
# 另如 !已定义(TCC_ARM_EABI)
# 如 已定义(TCC_MUSL)
# 定义 CONFIG_TCC_ELFINTERP "/lib/ld-musl-arm.so.1"
# 另
# 定义 CONFIG_TCC_ELFINTERP "/lib/ld-linux.so.2"
# 了如
# 了如
#了如
/* var elf_interp dans *-gen.c */
#如定义 CONFIG_TCC_ELFINTERP
# 定义 DEFAULT_ELFINTERP(s) CONFIG_TCC_ELFINTERP
#另
# 定义 DEFAULT_ELFINTERP(s) default_elfinterp(s)
#了如
/* (target specific) libtcc1.a */
#如未定义 TCC_LIBTCC1
# 定义 TCC_LIBTCC1 "libtcc1.a"
#了如
/* library to use with CONFIG_USE_LIBGCC instead of libtcc1.a */
#如 已定义 CONFIG_USE_LIBGCC && !已定义 TCC_LIBGCC
#定义 TCC_LIBGCC USE_TRIPLET(CONFIG_SYSROOT "/" CONFIG_LDDIR) "/libgcc_s.so.1"
#了如
#如定义 TCC_TARGET_PE
#定义 PATHSEP ';'
#另
#定义 PATHSEP ':'
#了如
/* -------------------------------------------- */
#包含 "libtcc.h"
#包含 "elf.h"
#包含 "stab.h"
/* -------------------------------------------- */
#如未定义 PUB_FUNC /* functions used by tcc.c but not in libtcc.h */
# 定义 PUB_FUNC
#了如
#如未定义 ONE_SOURCE
# 定义 ONE_SOURCE 1
#了如
#如 ONE_SOURCE
#定义 ST_INLN 静态 inline
#定义 ST_FUNC 静态
#定义 ST_DATA 静态
#另
#定义 ST_INLN
#定义 ST_FUNC
#定义 ST_DATA 外部
#了如
#如定义 TCC_PROFILE /* profile all functions */
# 定义 静态
#了如
/* -------------------------------------------- */
/* include the target specific definitions */
#定义 TARGET_DEFS_ONLY
#如定义 TCC_TARGET_I386
# 包含 "i386-gen.c"
# 包含 "i386-link.c"
#了如
#如定义 TCC_TARGET_X86_64
# 包含 "x86_64-gen.c"
# 包含 "x86_64-link.c"
#了如
#如定义 TCC_TARGET_ARM
# 包含 "arm-gen.c"
# 包含 "arm-link.c"
# 包含 "arm-asm.c"
#了如
#如定义 TCC_TARGET_ARM64
# 包含 "arm64-gen.c"
# 包含 "arm64-link.c"
#了如
#如定义 TCC_TARGET_C67
# 定义 TCC_TARGET_COFF
# 包含 "coff.h"
# 包含 "c67-gen.c"
# 包含 "c67-link.c"
#了如
#消定义 TARGET_DEFS_ONLY
/* -------------------------------------------- */
#如 PTR_SIZE == 8
# 定义 ELFCLASSW ELFCLASS64
# 定义 ElfW(type) Elf##64##_##type
# 定义 ELFW(type) ELF##64##_##type
# 定义 ElfW_Rel ElfW(Rela)
# 定义 SHT_RELX SHT_RELA
# 定义 REL_SECTION_FMT ".rela%s"
#另
# 定义 ELFCLASSW ELFCLASS32
# 定义 ElfW(type) Elf##32##_##type
# 定义 ELFW(type) ELF##32##_##type
# 定义 ElfW_Rel ElfW(Rel)
# 定义 SHT_RELX SHT_REL
# 定义 REL_SECTION_FMT ".rel%s"
#了如
/* target address type */
#定义 addr_t ElfW(Addr)
/* -------------------------------------------- */
#定义 INCLUDE_STACK_SIZE 32
#定义 IFDEF_STACK_SIZE 64
#定义 VSTACK_SIZE 256
#定义 STRING_MAX_SIZE 1024
#定义 TOKSTR_MAX_SIZE 256
#定义 PACK_STACK_SIZE 8
#定义 TOK_HASH_SIZE 16384 /* must be a power of two */
#定义 TOK_ALLOC_INCR 512 /* must be a power of two */
#定义 TOK_MAX_SIZE 4 /* token max size in int unit when stored in string */
/* token symbol management */
类型定义 结构 TokenSym {
结构 TokenSym *hash_next;
结构 Sym *sym_define; /* direct pointer to define */
结构 Sym *sym_label; /* direct pointer to label */
结构 Sym *sym_struct; /* direct pointer to structure */
结构 Sym *sym_identifier; /* direct pointer to identifier */
整 tok; /* token number */
整 len;
字 str[1];
} TokenSym;
#如定义 TCC_TARGET_PE
类型定义 无符 短 nwchar_t;
#另
类型定义 整 nwchar_t;
#了如
类型定义 结构 CString {
整 size; /* size in bytes */
空 *data; /* either 'char *' or 'nwchar_t *' */
整 size_allocated;
} CString;
/* type definition */
类型定义 结构 CType {
整 t;
结构 Sym *ref;
} CType;
/* constant value */
类型定义 联合 CValue {
长 双精 ld;
双精 d;
单精 f;
uint64_t i;
结构 {
整 size;
不变 空 *data;
} str;
整 tab[LDOUBLE_SIZE/4];
} CValue;
/* value on stack */
类型定义 结构 SValue {
CType type; /* type */
无符 短 r; /* register + flags */
无符 短 r2; /* second register, used for 'long long'
type. If not used, set to VT_CONST */
CValue c; /* constant, if VT_CONST */
结构 Sym *sym; /* symbol, if (VT_SYM | VT_CONST), or if
result of unary() for an identifier. */
} SValue;
/* symbol attributes */
结构 SymAttr {
无符 短
aligned : 5, /* alignment as log2+1 (0 == unspecified) */
packed : 1,
weak : 1,
visibility : 2,
dllexport : 1,
dllimport : 1,
unused : 5;
};
/* function attributes or temporary attributes for parsing */
结构 FuncAttr {
无符
func_call : 3, /* calling convention (0..5), see below */
func_type : 2, /* FUNC_OLD/NEW/ELLIPSIS */
func_body : 1, /* body was defined */
func_args : 8; /* PE __stdcall args */
};
/* GNUC attribute definition */
类型定义 结构 AttributeDef {
结构 SymAttr a;
结构 FuncAttr f;
结构 Section *section;
整 alias_target; /* token */
整 asm_label; /* associated asm label */
字 attr_mode; /* __attribute__((__mode__(...))) */
} AttributeDef;
/* symbol management */
类型定义 结构 Sym {
整 v; /* symbol token */
无符 短 r; /* associated register or VT_CONST/VT_LOCAL and LVAL type */
结构 SymAttr a; /* symbol attributes */
联合 {
结构 {
整 c; /* associated number or Elf symbol index */
联合 {
整 sym_scope; /* scope level for locals */
整 jnext; /* next jump label */
结构 FuncAttr f; /* function attributes */
整 auxtype; /* bitfield access type */
};
};
长 长 enum_val; /* enum constant if IS_ENUM_VAL */
整 *d; /* define token stream */
};
CType type; /* associated type */
联合 {
结构 Sym *next; /* next related symbol (for fields and anoms) */
整 asm_label; /* associated asm label */
};
结构 Sym *prev; /* prev symbol in stack */
结构 Sym *prev_tok; /* previous symbol for this token */
} Sym;
/* section definition */
/* XXX: use directly ELF structure for parameters ? */
/* special flag to indicate that the section should not be linked to
the other ones */
#定义 SHF_PRIVATE 0x80000000
/* special flag, too */
#定义 SECTION_ABS ((空 *)1)
类型定义 结构 Section {
无符 长 data_offset; /* current data offset */
无符 字 *data; /* section data */
无符 长 data_allocated; /* used for realloc() handling */
整 sh_name; /* elf section name (only used during output) */
整 sh_num; /* elf section number */
整 sh_type; /* elf section type */
整 sh_flags; /* elf section flags */
整 sh_info; /* elf section info */
整 sh_addralign; /* elf section alignment */
整 sh_entsize; /* elf entry size */
无符 长 sh_size; /* section size (only used during output) */
addr_t sh_addr; /* address at which the section is relocated */
无符 长 sh_offset; /* file offset */
整 nb_hashed_syms; /* used to resize the hash table */
结构 Section *link; /* link to another section */
结构 Section *reloc; /* corresponding section for relocation, if any */
结构 Section *hash; /* hash table for symbols */
结构 Section *prev; /* previous section on section stack */
字 name[1]; /* section name */
} Section;
类型定义 结构 DLLReference {
整 level;
空 *handle;
字 name[1];
} DLLReference;
/* -------------------------------------------------- */
#定义 SYM_STRUCT 0x40000000 /* struct/union/enum symbol space */
#定义 SYM_FIELD 0x20000000 /* struct/union field symbol space */
#定义 SYM_FIRST_ANOM 0x10000000 /* first anonymous sym */
/* stored in 'Sym->f.func_type' field */
#定义 FUNC_NEW 1 /* ansi function prototype */
#定义 FUNC_OLD 2 /* old function prototype */
#定义 FUNC_ELLIPSIS 3 /* ansi function prototype with ... */
/* stored in 'Sym->f.func_call' field */
#定义 FUNC_CDECL 0 /* standard c call */
#定义 FUNC_STDCALL 1 /* pascal c call */
#定义 FUNC_FASTCALL1 2 /* first param in %eax */
#定义 FUNC_FASTCALL2 3 /* first parameters in %eax, %edx */
#定义 FUNC_FASTCALL3 4 /* first parameter in %eax, %edx, %ecx */
#定义 FUNC_FASTCALLW 5 /* first parameter in %ecx, %edx */
/* field 'Sym.t' for macros */
#定义 MACRO_OBJ 0 /* object like macro */
#定义 MACRO_FUNC 1 /* function like macro */
/* field 'Sym.r' for C labels */
#定义 LABEL_DEFINED 0 /* label is defined */
#定义 LABEL_FORWARD 1 /* label is forward defined */
#定义 LABEL_DECLARED 2 /* label is declared but never used */
/* type_decl() types */
#定义 TYPE_ABSTRACT 1 /* type without variable */
#定义 TYPE_DIRECT 2 /* type with variable */
#定义 IO_BUF_SIZE 8192
类型定义 结构 BufferedFile {
uint8_t *buf_ptr;
uint8_t *buf_end;
整 fd;
结构 BufferedFile *prev;
整 line_num; /* current line number - here to simplify code */
整 line_ref; /* tcc -E: last printed line */
整 ifndef_macro; /* #ifndef macro / #endif search */
整 ifndef_macro_saved; /* saved ifndef_macro */
整 *ifdef_stack_ptr; /* ifdef_stack value at the start of the file */
整 include_next_index; /* next search path */
字 filename[1024]; /* filename */
字 *true_filename; /* filename not modified by # line directive */
无符 字 unget[4];
无符 字 buffer[1]; /* extra size for CH_EOB char */
} BufferedFile;
#定义 CH_EOB '\\' /* end of buffer or '\0' char in file */
#定义 CH_EOF (-1) /* end of file */
/* used to record tokens */
类型定义 结构 TokenString {
整 *str;
整 len;
整 lastlen;
整 allocated_len;
整 last_line_num;
整 save_line_num;
/* used to chain token-strings with begin/end_macro() */
结构 TokenString *prev;
不变 整 *prev_ptr;
字 alloc;
} TokenString;
/* inline functions */
类型定义 结构 InlineFunc {
TokenString *func_str;
Sym *sym;
字 filename[1];
} InlineFunc;
/* include file cache, used to find files faster and also to eliminate
inclusion if the include file is protected by #ifndef ... #endif */
类型定义 结构 CachedInclude {
整 ifndef_macro;
整 once;
整 hash_next; /* -1 if none */
字 filename[1]; /* path specified in #include */
} CachedInclude;
#定义 CACHED_INCLUDES_HASH_SIZE 32
#如定义 CONFIG_TCC_ASM
类型定义 结构 ExprValue {
uint64_t v;
Sym *sym;
整 pcrel;
} ExprValue;
#定义 MAX_ASM_OPERANDS 30
类型定义 结构 ASMOperand {
整 id; /* GCC 3 optional identifier (0 if number only supported */
字 *constraint;
字 asm_str[16]; /* computed asm string for operand */
SValue *vt; /* C value of the expression */
整 ref_index; /* if >= 0, gives reference to a output constraint */
整 input_index; /* if >= 0, gives reference to an input constraint */
整 priority; /* priority, used to assign registers */
整 reg; /* if >= 0, register number used for this operand */
整 is_llong; /* true if double register value */
整 is_memory; /* true if memory operand */
整 is_rw; /* for '+' modifier */
} ASMOperand;
#了如
/* extra symbol attributes (not in symbol table) */
结构 sym_attr {
无符 got_offset;
无符 plt_offset;
整 plt_sym;
整 dyn_index;
#如定义 TCC_TARGET_ARM
无符 字 plt_thumb_stub:1;
#了如
};
结构 TCCState {
整 verbose; /* if true, display some information during compilation */
整 nostdinc; /* if true, no standard headers are added */
整 nostdlib; /* if true, no standard libraries are added */
整 nocommon; /* if true, do not use common symbols for .bss data */
整 static_link; /* if true, static linking is performed */
整 rdynamic; /* if true, all symbols are exported */
整 symbolic; /* if true, resolve symbols in the current module first */
整 alacarte_link; /* if true, only link in referenced objects from archive */
字 *tcc_lib_path; /* CONFIG_TCCDIR or -B option */
字 *soname; /* as specified on the command line (-soname) */
字 *rpath; /* as specified on the command line (-Wl,-rpath=) */
整 enable_new_dtags; /* ditto, (-Wl,--enable-new-dtags) */
/* output type, see TCC_OUTPUT_XXX */
整 output_type;
/* output format, see TCC_OUTPUT_FORMAT_xxx */
整 output_format;
/* C language options */
整 char_is_unsigned;
整 leading_underscore;
整 ms_extensions; /* allow nested named struct w/o identifier behave like unnamed */
整 dollars_in_identifiers; /* allows '$' char in identifiers */
整 ms_bitfields; /* if true, emulate MS algorithm for aligning bitfields */
/* warning switches */
整 warn_write_strings;
整 warn_unsupported;
整 warn_error;
整 warn_none;
整 warn_implicit_function_declaration;
整 warn_gcc_compat;
/* compile with debug symbol (and use them if error during execution) */
整 do_debug;
#如定义 CONFIG_TCC_BCHECK
/* compile with built-in memory and bounds checker */
整 do_bounds_check;
#了如
#如定义 TCC_TARGET_ARM
枚举 float_abi float_abi; /* float ABI of the generated code*/
#了如
整 run_test; /* nth test to run with -dt -run */
addr_t text_addr; /* address of text section */
整 has_text_addr;
无符 section_align; /* section alignment */
字 *init_symbol; /* symbols to call at load-time (not used currently) */
字 *fini_symbol; /* symbols to call at unload-time (not used currently) */
#如定义 TCC_TARGET_I386
整 seg_size; /* 32. Can be 16 with i386 assembler (.code16) */
#了如
#如定义 TCC_TARGET_X86_64
整 nosse; /* For -mno-sse support. */
#了如
/* array of all loaded dlls (including those referenced by loaded dlls) */
DLLReference **loaded_dlls;
整 nb_loaded_dlls;
/* include paths */
字 **include_paths;
整 nb_include_paths;
字 **sysinclude_paths;
整 nb_sysinclude_paths;
/* library paths */
字 **library_paths;
整 nb_library_paths;
/* crt?.o object path */
字 **crt_paths;
整 nb_crt_paths;
/* -include files */
字 **cmd_include_files;
整 nb_cmd_include_files;
/* error handling */
空 *error_opaque;
空 (*error_func)(空 *opaque, 不变 字 *msg);
整 error_set_jmp_enabled;
jmp_buf error_jmp_buf;
整 nb_errors;
/* output file for preprocessing (-E) */
FILE *ppfp;
枚举 {
LINE_MACRO_OUTPUT_FORMAT_GCC,
LINE_MACRO_OUTPUT_FORMAT_NONE,
LINE_MACRO_OUTPUT_FORMAT_STD,
LINE_MACRO_OUTPUT_FORMAT_P10 = 11
} Pflag; /* -P switch */
字 dflag; /* -dX value */
/* for -MD/-MF: collected dependencies for this compilation */
字 **target_deps;
整 nb_target_deps;
/* compilation */
BufferedFile *include_stack[INCLUDE_STACK_SIZE];
BufferedFile **include_stack_ptr;
整 ifdef_stack[IFDEF_STACK_SIZE];
整 *ifdef_stack_ptr;
/* included files enclosed with #ifndef MACRO */
整 cached_includes_hash[CACHED_INCLUDES_HASH_SIZE];
CachedInclude **cached_includes;
整 nb_cached_includes;
/* #pragma pack stack */
整 pack_stack[PACK_STACK_SIZE];
整 *pack_stack_ptr;
字 **pragma_libs;
整 nb_pragma_libs;
/* inline functions are stored as token lists and compiled last
only if referenced */
结构 InlineFunc **inline_fns;
整 nb_inline_fns;
/* sections */
Section **sections;
整 nb_sections; /* number of sections, including first dummy section */
Section **priv_sections;
整 nb_priv_sections; /* number of private sections */
/* got & plt handling */
Section *got;
Section *plt;
/* temporary dynamic symbol sections (for dll loading) */
Section *dynsymtab_section;
/* exported dynamic symbol section */
Section *dynsym;
/* copy of the global symtab_section variable */
Section *symtab;
/* extra attributes (eg. GOT/PLT value) for symtab symbols */
结构 sym_attr *sym_attrs;
整 nb_sym_attrs;
/* tiny assembler state */
Sym *asm_labels;
#如定义 TCC_TARGET_PE
/* PE info */
整 pe_subsystem;
无符 pe_characteristics;
无符 pe_file_align;
无符 pe_stack_size;
# 如定义 TCC_TARGET_X86_64
Section *uw_pdata;
整 uw_sym;
无符 uw_offs;
# 了如
#了如
#如定义 TCC_IS_NATIVE
不变 字 *runtime_main;
空 **runtime_mem;
整 nb_runtime_mem;
#了如
/* used by main and tcc_parse_args only */
结构 filespec **files; /* files seen on command line */
整 nb_files; /* number thereof */
整 nb_libraries; /* number of libs thereof */
整 filetype;
字 *outfile; /* output filename */
整 option_r; /* option -r */
整 do_bench; /* option -bench */
整 gen_deps; /* option -MD */
字 *deps_outfile; /* option -MF */
整 option_pthread; /* -pthread option */
整 argc;
字 **argv;
};
结构 filespec {
字 type;
字 alacarte;
字 name[1];
};
/* The current value can be: */
#定义 VT_VALMASK 0x003f /* mask for value location, register or: */
#定义 VT_CONST 0x0030 /* constant in vc (must be first non register value) */
#定义 VT_LLOCAL 0x0031 /* lvalue, offset on stack */
#定义 VT_LOCAL 0x0032 /* offset on stack */
#定义 VT_CMP 0x0033 /* the value is stored in processor flags (in vc) */
#定义 VT_JMP 0x0034 /* value is the consequence of jmp true (even) */
#定义 VT_JMPI 0x0035 /* value is the consequence of jmp false (odd) */
#定义 VT_LVAL 0x0100 /* var is an lvalue */
#定义 VT_SYM 0x0200 /* a symbol value is added */
#定义 VT_MUSTCAST 0x0400 /* value must be casted to be correct (used for
char/short stored in integer registers) */
#定义 VT_MUSTBOUND 0x0800 /* bound checking must be done before
dereferencing value */
#定义 VT_BOUNDED 0x8000 /* value is bounded. The address of the
bounding function call point is in vc */
#定义 VT_LVAL_BYTE 0x1000 /* lvalue is a byte */
#定义 VT_LVAL_SHORT 0x2000 /* lvalue is a short */
#定义 VT_LVAL_UNSIGNED 0x4000 /* lvalue is unsigned */
#定义 VT_LVAL_TYPE (VT_LVAL_BYTE | VT_LVAL_SHORT | VT_LVAL_UNSIGNED)
/* types */
#定义 VT_BTYPE 0x000f /* mask for basic type */
#定义 VT_VOID 0 /* void type */
#定义 VT_BYTE 1 /* signed byte type */
#定义 VT_SHORT 2 /* short type */
#定义 VT_INT 3 /* integer type */
#定义 VT_LLONG 4 /* 64 bit integer */
#定义 VT_PTR 5 /* pointer */
#定义 VT_FUNC 6 /* function type */
#定义 VT_STRUCT 7 /* struct/union definition */
#定义 VT_FLOAT 8 /* IEEE float */
#定义 VT_DOUBLE 9 /* IEEE double */
#定义 VT_LDOUBLE 10 /* IEEE long double */
#定义 VT_BOOL 11 /* ISOC99 boolean type */
#定义 VT_QLONG 13 /* 128-bit integer. Only used for x86-64 ABI */
#定义 VT_QFLOAT 14 /* 128-bit float. Only used for x86-64 ABI */
#定义 VT_UNSIGNED 0x0010 /* unsigned type */
#定义 VT_DEFSIGN 0x0020 /* explicitly signed or unsigned */
#定义 VT_ARRAY 0x0040 /* array type (also has VT_PTR) */
#定义 VT_BITFIELD 0x0080 /* bitfield modifier */
#定义 VT_CONSTANT 0x0100 /* const modifier */
#定义 VT_VOLATILE 0x0200 /* volatile modifier */
#定义 VT_VLA 0x0400 /* VLA type (also has VT_PTR and VT_ARRAY) */
#定义 VT_LONG 0x0800
/* storage */
#定义 VT_EXTERN 0x00001000 /* extern definition */
#定义 VT_STATIC 0x00002000 /* static variable */
#定义 VT_TYPEDEF 0x00004000 /* typedef definition */
#定义 VT_INLINE 0x00008000 /* inline definition */
/* currently unused: 0x0800, 0x000[1248]0000 */
#定义 VT_STRUCT_SHIFT 20 /* shift for bitfield shift values (32 - 2*6) */
#定义 VT_STRUCT_MASK (((1 << (6+6)) - 1) << VT_STRUCT_SHIFT | VT_BITFIELD)
#定义 BIT_POS(t) (((t) >> VT_STRUCT_SHIFT) & 0x3f)
#定义 BIT_SIZE(t) (((t) >> (VT_STRUCT_SHIFT + 6)) & 0x3f)
#定义 VT_UNION (1 << VT_STRUCT_SHIFT | VT_STRUCT)
#定义 VT_ENUM (2 << VT_STRUCT_SHIFT) /* integral type is an enum really */
#定义 VT_ENUM_VAL (3 << VT_STRUCT_SHIFT) /* integral type is an enum constant really */
#定义 IS_ENUM(t) ((t & VT_STRUCT_MASK) == VT_ENUM)
#定义 IS_ENUM_VAL(t) ((t & VT_STRUCT_MASK) == VT_ENUM_VAL)
#定义 IS_UNION(t) ((t & (VT_STRUCT_MASK|VT_BTYPE)) == VT_UNION)
/* type mask (except storage) */
#定义 VT_STORAGE (VT_EXTERN | VT_STATIC | VT_TYPEDEF | VT_INLINE)
#定义 VT_TYPE (~(VT_STORAGE|VT_STRUCT_MASK))
/* token values */
/* warning: the following compare tokens depend on i386 asm code */
#定义 TOK_ULT 0x92
#定义 TOK_UGE 0x93
#定义 TOK_EQ 0x94
#定义 TOK_NE 0x95
#定义 TOK_ULE 0x96
#定义 TOK_UGT 0x97
#定义 TOK_Nset 0x98
#定义 TOK_Nclear 0x99
#定义 TOK_LT 0x9c
#定义 TOK_GE 0x9d
#定义 TOK_LE 0x9e
#定义 TOK_GT 0x9f
#定义 TOK_LAND 0xa0
#定义 TOK_LOR 0xa1
#定义 TOK_DEC 0xa2
#定义 TOK_MID 0xa3 /* inc/dec, to void constant */
#定义 TOK_INC 0xa4
#定义 TOK_UDIV 0xb0 /* unsigned division */
#定义 TOK_UMOD 0xb1 /* unsigned modulo */
#定义 TOK_PDIV 0xb2 /* fast division with undefined rounding for pointers */
/* tokens that carry values (in additional token string space / tokc) --> */
#定义 TOK_CCHAR 0xb3 /* char constant in tokc */
#定义 TOK_LCHAR 0xb4
#定义 TOK_CINT 0xb5 /* number in tokc */
#定义 TOK_CUINT 0xb6 /* unsigned int constant */
#定义 TOK_CLLONG 0xb7 /* long long constant */
#定义 TOK_CULLONG 0xb8 /* unsigned long long constant */
#定义 TOK_STR 0xb9 /* pointer to string in tokc */
#定义 TOK_LSTR 0xba
#定义 TOK_CFLOAT 0xbb /* float constant */
#定义 TOK_CDOUBLE 0xbc /* double constant */
#定义 TOK_CLDOUBLE 0xbd /* long double constant */
#定义 TOK_PPNUM 0xbe /* preprocessor number */
#定义 TOK_PPSTR 0xbf /* preprocessor string */
#定义 TOK_LINENUM 0xc0 /* line number info */
/* <-- */
#定义 TOK_UMULL 0xc2 /* unsigned 32x32 -> 64 mul */
#定义 TOK_ADDC1 0xc3 /* add with carry generation */
#定义 TOK_ADDC2 0xc4 /* add with carry use */
#定义 TOK_SUBC1 0xc5 /* add with carry generation */
#定义 TOK_SUBC2 0xc6 /* add with carry use */
#定义 TOK_ARROW 0xc7
#定义 TOK_DOTS 0xc8 /* three dots */
#定义 TOK_SHR 0xc9 /* unsigned shift right */
#定义 TOK_TWOSHARPS 0xca /* ## preprocessing token */
#定义 TOK_PLCHLDR 0xcb /* placeholder token as 已定义 in C99 */
#定义 TOK_NOSUBST 0xcc /* means following token has already been pp'd */
#定义 TOK_PPJOIN 0xcd /* A '##' in the right position to mean pasting */
#定义 TOK_CLONG 0xce /* long constant */
#定义 TOK_CULONG 0xcf /* unsigned long constant */
#如 已定义 TCC_TARGET_X86_64 && !已定义 TCC_TARGET_PE
#定义 TCC_LONG_ARE_64_BIT
#了如
#定义 TOK_SHL 0x01 /* shift left */
#定义 TOK_SAR 0x02 /* signed shift right */
/* assignment operators : normal operator or 0x80 */
#定义 TOK_A_MOD 0xa5
#定义 TOK_A_AND 0xa6
#定义 TOK_A_MUL 0xaa
#定义 TOK_A_ADD 0xab
#定义 TOK_A_SUB 0xad
#定义 TOK_A_DIV 0xaf
#定义 TOK_A_XOR 0xde
#定义 TOK_A_OR 0xfc
#定义 TOK_A_SHL 0x81
#定义 TOK_A_SAR 0x82
#定义 TOK_EOF (-1) /* end of file */
#定义 TOK_LINEFEED 10 /* line feed */
/* all identifiers and strings have token above that */
#定义 TOK_IDENT 256
#定义 DEF_ASM(x) DEF(TOK_ASM_ ## x, #x)
#定义 TOK_ASM_int TOK_INT
#定义 DEF_ASMDIR(x) DEF(TOK_ASMDIR_ ## x, "." #x)
#定义 TOK_ASMDIR_FIRST TOK_ASMDIR_byte
#定义 TOK_ASMDIR_LAST TOK_ASMDIR_section