-
Notifications
You must be signed in to change notification settings - Fork 556
Expand file tree
/
Copy pathtcc-doc.texi
More file actions
1986 lines (1537 loc) · 63.9 KB
/
Copy pathtcc-doc.texi
File metadata and controls
1986 lines (1537 loc) · 63.9 KB
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
\input texinfo @c -*- texinfo -*-
@c %**start of header
@setfilename tcc-doc.info
@settitle Tiny C Compiler Reference Documentation
@dircategory Software development
@direntry
* TCC: (tcc-doc). The Tiny C Compiler.
@end direntry
@c %**end of header
@include config.texi
@iftex
@titlepage
@afourpaper
@sp 7
@center @titlefont{Tiny C Compiler Reference Documentation}
@sp 3
@end titlepage
@headings double
@end iftex
@contents
@node Top, Introduction, (dir), (dir)
@top Tiny C Compiler Reference Documentation
This manual documents version @value{VERSION} of the Tiny C Compiler.
@menu
* Introduction:: Introduction to tcc.
* Invoke:: Invocation of tcc (command line, options).
* Clang:: ANSI C and extensions.
* asm:: Assembler syntax.
* linker:: Output file generation and supported targets.
* Bounds:: Automatic bounds-checking of C code.
* Libtcc:: The libtcc library.
* devel:: Guide for Developers.
@end menu
@node Introduction
@chapter Introduction
TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike other C
compilers, it is meant to be self-relying: you do not need an
external assembler or linker because TCC does that for you.
TCC compiles so @emph{fast} that even for big projects @code{Makefile}s may
not be necessary.
TCC not only supports ANSI C, but also most of the ISO C99 standard,
many ISO C11 features, and many GNUC extensions including inline assembly.
TCC can also be used to make @emph{C scripts}, i.e. pieces of C source
that you run as a Perl or Python script. Compilation is so fast that
your script will be as fast as if it was an executable.
TCC can also automatically generate memory and bound checks
(@pxref{Bounds}) while allowing all C pointers operations. TCC can do
these checks even if non patched libraries are used.
With @code{libtcc}, you can use TCC as a backend for dynamic code
generation (@pxref{Libtcc}).
TCC supports the following target and platform combinations:
@multitable @columnfractions .15 .10 .12 .11 .11 .18 .09
@item @strong{OS} @tab @strong{i386} @tab @strong{x86-64} @tab @strong{ARM} @tab @strong{ARM64} @tab @strong{RISC-V 64} @tab @strong{C67}
@item Linux @tab yes @tab yes @tab yes @tab yes @tab yes @tab yes
@item macOS @tab @tab yes @tab @tab yes @tab @tab
@item Windows @tab yes @tab yes @tab WinCE @tab yes @tab @tab
@item Android @tab yes @tab yes @tab yes @tab yes @tab @tab
@item FreeBSD @tab @tab yes @tab @tab yes @tab @tab
@item NetBSD @tab @tab yes @tab yes @tab yes @tab @tab
@item OpenBSD @tab yes @tab yes @tab @tab yes @tab yes @tab
@item DragonFly @tab @tab yes @tab @tab @tab @tab
@end multitable
The TMS320C67xx (C67) target is a cross compiler for the digital signal
processors of that family. It outputs COFF instead of ELF and has neither
@file{libtcc1.a} nor bound checking.
For usage on Windows, see also @url{tcc-win32.txt}.
@node Invoke
@chapter Command line invocation
@section Quick start
@example
@c man begin SYNOPSIS
usage: tcc [options] [@var{infile1} @var{infile2}@dots{}] [@option{-run} @var{infile} @var{args}@dots{}]
@c man end
@end example
@noindent
@c man begin DESCRIPTION
TCC options are very much like gcc options. The main difference is that TCC
can also execute directly the resulting program and give it runtime
arguments.
Here are some examples to understand the logic:
@table @code
@item @samp{tcc -run a.c}
Compile @file{a.c} and execute it directly
@item @samp{tcc -run a.c arg1}
Compile a.c and execute it directly. arg1 is given as first argument to
the @code{main()} of a.c.
@item @samp{tcc a.c -run b.c arg1}
Compile @file{a.c} and @file{b.c}, link them together and execute them. arg1 is given
as first argument to the @code{main()} of the resulting program.
@ignore
Because multiple C files are specified, @option{--} are necessary to clearly
separate the program arguments from the TCC options.
@end ignore
@item @samp{tcc -o myprog a.c b.c}
Compile @file{a.c} and @file{b.c}, link them and generate the executable @file{myprog}.
@item @samp{tcc -o myprog a.o b.o}
link @file{a.o} and @file{b.o} together and generate the executable @file{myprog}.
@item @samp{tcc -c a.c}
Compile @file{a.c} and generate object file @file{a.o}.
@item @samp{tcc -c asmfile.S}
Preprocess with C preprocess and assemble @file{asmfile.S} and generate
object file @file{asmfile.o}.
@item @samp{tcc -c asmfile.s}
Assemble (but not preprocess) @file{asmfile.s} and generate object file
@file{asmfile.o}.
@item @samp{tcc -r -o ab.o a.c b.c}
Compile @file{a.c} and @file{b.c}, link them together and generate the object file @file{ab.o}.
@end table
Scripting:
TCC can be invoked from @emph{scripts}, just as shell scripts. You just
need to add @code{#!/usr/local/bin/tcc -run} at the start of your C source:
@example
#!/usr/local/bin/tcc -run
#include <stdio.h>
int main()
@{
printf("Hello World\n");
return 0;
@}
@end example
TCC can read C source code from @emph{standard input} when @option{-} is used in
place of @option{infile}. Example:
@example
echo 'main()@{puts("hello");@}' | tcc -run -
@end example
@c man end
@section Option summary
@c man begin OPTIONS
@subheading General Options
@table @option
@item -c
Generate an object file.
@item -o outfile
Put object file, executable, or dll into output file @file{outfile}.
@item -run source [args...]
Compile file @var{source} and run it with the command line arguments
@var{args}. In order to be able to give more than one argument to a
script, several TCC options can be given @emph{after} the
@option{-run} option, separated by spaces:
@example
tcc "-run -L/usr/X11R6/lib -lX11" ex4.c
@end example
In a script, it gives the following header:
@example
#!/usr/local/bin/tcc -run -L/usr/X11R6/lib -lX11
@end example
@item -rstdin file
With @option{-run}: reopen standard input from @file{file} before executing
the program. This is mainly useful when the C source itself was read from
standard input (see @option{-} above).
@item -v
Display TCC version.
@item -vv
Show included files. As sole argument, print search dirs. -vvv shows tries too.
@item -bench
Display compilation statistics.
@item -dumpmachine
Print target machine architecture triplet.
@item -dumpversion
Print TCC compiler version.
@end table
@subheading Preprocessor Options
@table @option
@item -Idir
Specify an additional include path. Include paths are searched in the
order they are specified.
System include paths are always searched after. The defaults are
@file{@var{tccdir}/include} and then @file{/usr/include}, where
@var{tccdir} is the tcc private directory (@file{PREFIX/lib/tcc}, see
@option{-B}; @file{PREFIX} is usually @file{/usr} or @file{/usr/local}).
On Windows the defaults are @file{@var{tccdir}/include} and
@file{@var{tccdir}/include/winapi}. Use @option{-vv} as sole argument to
print the paths of the current build.
@item -isystem dir
Specify a system include path to be added to the defaults.
@item -nostdinc
Do not search the default system include paths; only search include paths
provided on the command line.
@item -include file
Include @option{file} above each input file.
@item -Dsym[=val]
Define preprocessor symbol @samp{sym} to
val. If val is not present, its value is @samp{1}. Function-like macros can
also be defined: @option{-DF(a)=a+1}
@item -Usym
Undefine preprocessor symbol @samp{sym}.
@item -E
Preprocess only, to stdout or file (with -o).
@item -P
Do not output @code{#line} directives.
@item -P1
Output alternative @code{#line} directives.
@item -dD, -dM
Output @code{#define} directives.
@item -Wp,-opt
Same as @option{-opt}.
@end table
@subheading Compilation Flags
Note: each of the following options has a negative form beginning with
@option{-fno-}.
@table @option
@item -funsigned-char
Let the @code{char} type be unsigned.
@item -fsigned-char
Let the @code{char} type be signed.
@item -fcommon
Generate common symbols for uninitialized data. The default is
@option{-fno-common}, which puts tentative definitions directly in the
bss section.
@item -fleading-underscore
Add a leading underscore at the beginning of each C symbol.
@item -fms-extensions
Allow a MS C compiler extensions to the language. Currently this
assumes a nested named structure declaration without an identifier
behaves like an unnamed one.
@item -fdollars-in-identifiers
Allow dollar signs in identifiers
@item -freverse-funcargs
Evaluate function arguments right to left.
@item -fgnu89-inline
@code{extern inline} is like @code{static inline}.
@item -fasynchronous-unwind-tables
Create eh_frame section [on]
@item -ftest-coverage
Create code coverage code. After running the resulting code an executable.tcov
or sofile.tcov file is generated with code coverage.
@end table
@subheading Warning Options
@table @option
@item -w
Disable all warnings.
@end table
Note: each of the following warning options has a negative form beginning with
@option{-Wno-}.
@table @option
@item -Wimplicit-function-declaration
Warn about implicit function declaration (missing prototype).
@item -Wdiscarded-qualifiers
Warn when const is dropped.
@item -Wunsupported
Warn about unsupported GCC features that are ignored by TCC.
@item -Wwrite-strings
Make string constants be of type @code{const char *} instead of @code{char
*}.
@item -Werror
Abort compilation if a warning is issued. Can be given an option to enable
the specified warning and turn it into an error, for example
@option{-Werror=unsupported}.
@item -Wall
Activate some useful warnings (@option{-Wimplicit-function-declaration},
@option{-Wdiscarded-qualifiers}).
@end table
@subheading Linker Options
@table @option
@item -Ldir
Specify an additional static library path for the @option{-l} option. The
defaults are the tcc private directory (see @option{-B}) and
@file{/usr/lib}, which the build may replace by the library directory of
the host (@file{/usr/lib64} or a multiarch triplet directory). On Windows
the default is @file{@var{tccdir}/lib}. Use @option{-vv} as sole argument
to print the paths of the current build.
@item -lxxx
Link your program with dynamic library libxxx.so or static library
libxxx.a. The library is searched in the paths specified by the
@option{-L} option and @env{LIBRARY_PATH} variable.
@item -Bdir
Set the path where the tcc internal libraries (and include files) can be
found (default is @file{PREFIX/lib/tcc}).
@item -shared
Generate a shared library instead of an executable.
@item -soname name
set name for shared library to be used at runtime
@item -static
Generate a statically linked executable (default is a shared linked
executable).
@item -rdynamic
Export global symbols to the dynamic linker. It is useful when a library
opened with @code{dlopen()} needs to access executable symbols.
@item -pthread
Preprocess with @option{-D_REENTRANT} and link with @option{-lpthread}.
@item -r
Generate an object file combining all input files.
@item -nostdlib
Don't implicitly link with libc, the C runtime files, and libtcc1.
@item -Wl,-nostdlib
Don't search the default library paths (see @option{-L}). Only the paths
specified with @option{-L} and @env{LIBRARY_PATH} are searched.
@item -Wl,-rpath=path
Put custom search path for dynamic libraries into executable.
@item -Wl,-Ipath
@item -Wl,--dynamic-linker=path
Set the ELF interpreter (dynamic linker). This defaults to the value of the
environment variable @env{LD_SO} if set, or a compiled-in default.
@item -Wl,--enable-new-dtags
When putting a custom search path for dynamic libraries into the executable,
create the new ELF dynamic tag DT_RUNPATH instead of the old legacy DT_RPATH.
@item -Wl,--oformat=fmt
Use @var{fmt} as output format. The supported output formats are:
@table @code
@item elf32-i386
ELF output format (default)
@item binary
Binary image (only for executable output)
@item coff
COFF output format (only for executable output for TMS320C67xx target)
@end table
@item -Wl,--export-all-symbols
@item -Wl,--export-dynamic
Export global symbols to the dynamic linker. It is useful when a library
opened with @code{dlopen()} needs to access executable symbols.
@item -Wl,-subsystem=console/gui/wince/...
Set type for PE (Windows) executables.
@item -Wl,-[Ttext=# | section-alignment=# | file-alignment=# | image-base=# | stack=#]
Modify executable layout.
@item -Wl,-(no-|disable-)[dynamicbase | nxcompat | high-entropy-va | tsaware]
Set or clear PE (Windows) executable header hardening flags. The
@option{-Wl,-high-entropy-va} option is supported on x86-64 and ARM64 PE
targets and implies @option{-Wl,-dynamicbase}. Clearing dynamicbase also
clears high-entropy-va. When @option{-Wl,-dynamicbase} is used for an
executable, TCC also enables base relocation emission for Windows ASLR.
@item -Wl,-Bsymbolic
Set DT_SYMBOLIC tag.
@item -Wl,-(no-)whole-archive
Turn on/off linking of all objects in archives.
@end table
@subheading Debugger Options
@table @option
@item -g
Generate run time stab debug information so that you get clear run time
error messages: @code{ test.c:68: in function 'test5()': dereferencing
invalid pointer} instead of the laconic @code{Segmentation
fault}.
@item -gdwarf[-x]
Generate run time dwarf debug information instead of stab debug information.
@item -b
Generate additional support code to check memory allocations and array/pointer
bounds (@pxref{Bounds}). @option{-g} is implied.
@item -bt[N]
Display N callers in stack traces. This is useful with @option{-g} or @option{-b}.
When activated, @code{__TCC_BACKTRACE__} is defined.
With executables, additional support for stack traces is included. A function
@code{ int tcc_backtrace(const char *fmt, ...); }
is provided to trigger a stack trace with a message on demand.
@end table
@subheading Misc Options
@table @option
@item -std=version
Define @code{__STDC_VERSION__} to @code{201112} if @option{version} is
c11 or gnu11; @code{199901} otherwise.
@item -x[c|a|b|n]
Specify content of next input file: respectively C, assembly, binary, or none.
@item -O[n]
Same as @option{-D__OPTIMIZE__} except for -O0. @option{-Os} is treated
the same as @option{-O1}.
@item -M
Just output makefile fragment with dependencies
@item -MM
Like -M except mention only user header files, not system header files.
@item -MD
Generate makefile fragment with dependencies.
@item -MMD
Like -MD except mention only user header files, not system header files.
@item -MF depfile
Use @file{depfile} as output for -MD.
@item -MP
Mention all dependencies as targets too.
@item -print-search-dirs
Print the configured installation directory and a list of library
and include directories tcc will search.
@item -dt
With @option{-run}/@option{-E}: auto-define 'test_...' macros
@end table
@subheading Target Specific Options
@table @option
@item -mms-bitfields
Use an algorithm for bitfield alignment consistent with MSVC. Default is
gcc's algorithm.
@item -mfloat-abi (ARM only)
Select the float ABI. Possible values: @code{softfp} and @code{hard}
@item -mno-sse
Do not use sse registers on x86_64
@item -m32, -m64
Pass command line to the i386/x86_64 cross compiler.
@end table
@subheading macOS Specific Options (Mach-O Targets Only)
@table @option
@item -dynamiclib
Generate a dynamic library instead of an executable.
@item -install_name name
Set the install name for a dynamic library.
@item -flat_namespace
Use a flat namespace (ignored, accepted for compatibility).
@item -two_levelnamespace
Use a two-level namespace (default, accepted for compatibility).
@item -undefined @var{treatment}
Specify how undefined symbols are treated (accepted for compatibility).
@item -compatibility_version version
Set the compatibility version for a dynamic library.
@item -current_version version
Set the current version for a dynamic library.
@end table
@subheading Tool Modes
@table @option
@item tcc -ar [crstvx] lib [files]
Create a static library archive. TCC can function as an @command{ar}
replacement without requiring an external archiver tool. The
@code{[abdiopN]} keys are not supported.
@item tcc -impdef lib.dll [-v] [-o lib.def] (Windows only)
Create a @file{.def} definition file from a DLL.
@end table
Note: GCC options @option{-fx}, @option{-mx}, @option{-arch}, @option{-C},
@option{--param}, @option{-pedantic}, @option{-pie}, @option{-no-pie},
@option{-pipe}, @option{-s}, and @option{-traditional} are ignored.
@option{-Wunsupported} makes TCC warn about them.
@c man end
@c man begin ENVIRONMENT
Environment variables that affect how tcc operates.
@table @option
@item CPATH
@item C_INCLUDE_PATH
A colon-separated list of directories searched for include files,
directories given with @option{-I} are searched first.
@item LIBRARY_PATH
A colon-separated list of directories searched for libraries for the
@option{-l} option, directories given with @option{-L} are searched first.
@end table
@c man end
@ignore
@setfilename tcc
@settitle Tiny C Compiler
@c man begin SEEALSO
cpp(1),
gcc(1)
@c man end
@c man begin AUTHOR
Fabrice Bellard
@c man end
@end ignore
@node Clang
@chapter C language support
@section ANSI C
TCC implements all the ANSI C standard, including structure bit fields
and floating point numbers (@code{long double}, @code{double}, and
@code{float} fully supported).
@section ISOC99 extensions
TCC implements many features of the new C standard: ISO C99. Currently
missing items are: complex and imaginary numbers.
Currently implemented ISOC99 features:
@itemize
@item variable length arrays.
@item 64 bit @code{long long} types are fully supported.
@item The boolean type @code{_Bool} is supported.
@item @code{__func__} is a string variable containing the current
function name.
@item Variadic macros: @code{__VA_ARGS__} can be used for
function-like macros:
@example
#define dprintf(level, __VA_ARGS__) printf(__VA_ARGS__)
@end example
@noindent
@code{dprintf} can then be used with a variable number of parameters.
@item Declarations can appear anywhere in a block (as in C++).
@item Array and struct/union elements can be initialized in any order by
using designators:
@example
struct @{ int x, y; @} st[10] = @{ [0].x = 1, [0].y = 2 @};
int tab[10] = @{ 1, 2, [5] = 5, [9] = 9@};
@end example
@item Compound initializers are supported:
@example
int *p = (int [])@{ 1, 2, 3 @};
@end example
to initialize a pointer pointing to an initialized array. The same
works for structures and strings.
@item Hexadecimal floating point constants are supported:
@example
double d = 0x1234p10;
@end example
@noindent
is the same as writing
@example
double d = 4771840.0;
@end example
@item @code{inline} keyword is supported. Static inline functions are
emitted at the end of the compilation unit only if used. The behavior
of @code{extern inline} depends on @option{-fgnu89-inline} (@pxref{Invoke}).
@item @code{restrict} keyword is ignored.
@end itemize
@section ISO C11 extensions
TCC implements several features of the ISO C11 standard:
@itemize
@item @code{_Generic} keyword for type-generic expressions:
@example
#define print_type(x) _Generic((x), \
int: "int", \
float: "float", \
default: "other")
@end example
@item @code{_Static_assert(expr, msg)} for compile-time assertions.
The single-argument form @code{_Static_assert(expr)} (C23) is also
supported.
@item @code{_Atomic} type qualifier for atomic types.
@item @code{_Thread_local} storage-class specifier for thread-local
storage. The GCC extension @code{__thread} is also supported.
@item @code{_Noreturn} function specifier (equivalent to the
@code{__attribute__((noreturn))} GNU extension).
@item @code{_Alignas(n)} specifier to request alignment of a variable
or structure field.
@item @code{_Alignof} operator to query the alignment of a type or
expression.
@end itemize
@section GNU C extensions
TCC implements some GNU C extensions:
@itemize
@item array designators can be used without '=':
@example
int a[10] = @{ [0] 1, [5] 2, 3, 4 @};
@end example
@item Structure field designators can be a label:
@example
struct @{ int x, y; @} st = @{ x: 1, y: 1@};
@end example
instead of
@example
struct @{ int x, y; @} st = @{ .x = 1, .y = 1@};
@end example
@item @code{\e} is ASCII character 27.
@item case ranges : ranges can be used in @code{case}s:
@example
switch(a) @{
case 1 @dots{} 9:
printf("range 1 to 9\n");
break;
default:
printf("unexpected\n");
break;
@}
@end example
@cindex aligned attribute
@cindex packed attribute
@cindex section attribute
@cindex unused attribute
@cindex cleanup attribute
@cindex constructor attribute
@cindex destructor attribute
@cindex always_inline attribute
@cindex alias attribute
@cindex visibility attribute
@cindex weak attribute
@cindex noreturn attribute
@cindex cdecl attribute
@cindex stdcall attribute
@cindex fastcall attribute
@cindex thiscall attribute
@cindex regparm attribute
@cindex mode attribute
@cindex dllexport attribute
@cindex dllimport attribute
@cindex nodecorate attribute
@cindex format attribute
@cindex used attribute
@cindex nodebug attribute
@item The keyword @code{__attribute__} is handled to specify variable or
function attributes. The following attributes are supported:
@itemize
@item @code{aligned(n)}: align a variable or a structure field to n bytes
(must be a power of two).
@item @code{packed}: force alignment of a variable or a structure field to
1.
@item @code{section(name)}: generate function or data in assembly section
name (name is a string containing the section name) instead of the default
section.
@item @code{unused}: specify that the variable or the function is unused.
Accepted but currently ignored.
@item @code{cleanup(func)}: specify a function to be called automatically
when the variable goes out of scope. The cleanup function must take one
parameter, a pointer to a type compatible with the variable, and return
@code{void}.
@item @code{constructor}: specify that the function is to be executed automatically before @code{main()} is called.
@item @code{destructor}: specify that the function is to be executed automatically after @code{main()} returns or @code{exit()} is called.
@item @code{always_inline}: force inline expansion of the function.
@item @code{alias("target")}: declare the function or variable as an alias for symbol @code{target} (a string containing the target symbol name).
@item @code{visibility("mode")}: set symbol visibility. Supported modes are @code{"default"}, @code{"hidden"}, @code{"internal"}, and @code{"protected"}.
@item @code{weak}: declare the symbol as a weak symbol.
@item @code{noreturn}: specify that the function does not return to its caller.
@item @code{cdecl}: use standard C calling convention (default).
@item @code{stdcall}: use Pascal-like calling convention.
@item @code{fastcall}: use fastcall calling convention (i386 only).
@item @code{thiscall}: use C++-style thiscall calling convention (i386 only).
@item @code{regparm(n)}: use fast i386 calling convention. @var{n} must be
between 1 and 3. The first @var{n} function parameters are respectively put in
registers @code{%eax}, @code{%edx} and @code{%ecx}.
@item @code{__mode__(mode)}: specify the data type size mode for integer
variables or typedefs (supported modes: @code{__QI__}, @code{__HI__},
@code{__SI__}, @code{__DI__}, @code{__word__}). The attribute is only
taken into account when it is given with the declaration specifiers, that
is before the declarator:
@example
typedef __attribute__ ((__mode__(__QI__))) int int8_type;
@end example
@item @code{dllexport}: export function from dll/executable (win32 only).
@item @code{dllimport}: import function from dll/executable (win32 only).
@item @code{nodecorate}: do not apply any decorations that would otherwise be applied when exporting function from dll/executable (win32 only).
@item @code{nodebug}: suppress debug information for the symbol.
@item @code{format(archetype, fmt_idx, chk_idx)}: marks functions that
take @code{printf}- or @code{scanf}-style format strings. Accepted but
currently ignored (not checked by TCC).
@item @code{used}: indicates that the symbol must be retained even if it
appears unreferenced. Accepted but currently ignored.
@end itemize
Here are some examples:
@example
int a __attribute__ ((aligned(8), section(".mysection")));
@end example
@noindent
align variable @code{a} to 8 bytes and put it in section @code{.mysection}.
@example
int my_add(int a, int b) __attribute__ ((section(".mycodesection")))
@{
return a + b;
@}
@end example
@noindent
generate function @code{my_add} in section @code{.mycodesection}.
@example
void free_ptr(void *p) @{ free(*(void **)p); @}
void foo(void) @{
char *buf __attribute__((cleanup(free_ptr))) = malloc(1024);
/* buf is freed automatically when leaving foo */
@}
@end example
@noindent
automatically call @code{free_ptr(&buf)} when variable @code{buf} goes out of scope.
@item GNU style variadic macros:
@example
#define dprintf(fmt, args@dots{}) printf(fmt, ## args)
dprintf("no arg\n");
dprintf("one arg %d\n", 1);
@end example
@item @code{__FUNCTION__} is interpreted as C99 @code{__func__}
(so it has not exactly the same semantics as string literal GNUC
where it is a string literal).
@item The @code{__alignof__} keyword can be used as @code{sizeof}
to get the alignment of a type or an expression.
@item The @code{typeof(x)} returns the type of @code{x}.
@code{x} is an expression or a type.
@item Computed gotos: @code{&&label} returns a pointer of type
@code{void *} on the goto label @code{label}. @code{goto *expr} can be
used to jump on the pointer resulting from @code{expr}.
@item Statement expressions: a compound statement enclosed in
parentheses may appear as an expression. The value of the expression is
the value of the last statement. This is commonly used in macros:
@example
#define max(a,b) (@{ int _a = (a), _b = (b); _a > _b ? _a : _b; @})
@end example
@item The @code{__label__} keyword declares local labels within a block:
@example
@{ __label__ done; /* ... */ done: ; @}
@end example
@item The @code{__extension__} keyword suppresses warnings for GNU
extensions in strict compilation modes.
@item Inline assembly with asm instruction:
@cindex inline assembly
@cindex assembly, inline
@cindex __asm__
@example
static inline void * my_memcpy(void * to, const void * from, size_t n)
@{
int d0, d1, d2;
__asm__ __volatile__(
"rep ; movsl\n\t"
"testb $2,%b4\n\t"
"je 1f\n\t"
"movsw\n"
"1:\ttestb $1,%b4\n\t"
"je 2f\n\t"
"movsb\n"
"2:"
: "=&c" (d0), "=&D" (d1), "=&S" (d2)
:"0" (n/4), "q" (n),"1" ((long) to),"2" ((long) from)
: "memory");
return (to);
@}
@end example
@noindent
@cindex gas
TCC includes its own x86 inline assembler with a @code{gas}-like (GNU
assembler) syntax. No intermediate files are generated. GCC 3.x named
operands are supported. @code{asm goto} is also supported for
control-flow transfer to C labels:
@example
asm goto ("jmp %l[label]" : : : : label);
@end example
@item The following GCC built-in functions are supported:
@itemize
@item @code{__builtin_types_compatible_p(type1, type2)}: returns 1 if @code{type1} is compatible with @code{type2}, 0 otherwise.
@item @code{__builtin_constant_p(exp)}: returns 1 if @code{exp} evaluates to a compile-time constant, 0 otherwise.
@item @code{__builtin_choose_expr(const_expr, exp1, exp2)}: evaluates to @code{exp1} if @code{const_expr} is non-zero, otherwise @code{exp2}.
@item @code{__builtin_expect(expr, expected)}: branch prediction hint (evaluates to @code{expr}).
@item @code{__builtin_unreachable()}: informs the compiler that the code location cannot be reached.
@item @code{__builtin_frame_address(level)}: returns the frame pointer address for stack level @code{level}.
@item @code{__builtin_return_address(level)}: returns the return address for stack level @code{level}.
@item @code{__builtin_offsetof(type, field)}: returns the byte offset of @code{field} within structure @code{type}.
@item Bit manipulation built-ins: @code{__builtin_clz},
@code{__builtin_ctz}, @code{__builtin_ffs}, @code{__builtin_popcount},
@code{__builtin_parity}, @code{__builtin_clrsb} (and their @code{l} /
@code{ll} type variants).
@item Variadic argument handling built-ins: @code{__builtin_va_start}, @code{__builtin_va_arg}, @code{__builtin_va_copy}, @code{__builtin_va_end}.
@item Memory and string built-ins (mapped to libc):
@code{__builtin_memcpy}, @code{__builtin_memmove},
@code{__builtin_memset}, @code{__builtin_memcmp},
@code{__builtin_strlen}, @code{__builtin_strcpy},
@code{__builtin_strncpy}, @code{__builtin_strcmp},
@code{__builtin_strncmp}, @code{__builtin_strcat},
@code{__builtin_strncat}, @code{__builtin_strchr},
@code{__builtin_strrchr}, @code{__builtin_strdup},
@code{__builtin_malloc}, @code{__builtin_realloc},
@code{__builtin_calloc}, @code{__builtin_memalign},
@code{__builtin_free}, @code{__builtin_alloca},
@code{__builtin_abort}.
@item Atomic built-ins: @code{__atomic_store},
@code{__atomic_load}, @code{__atomic_exchange},
@code{__atomic_compare_exchange}, @code{__atomic_fetch_add},
@code{__atomic_fetch_sub}, @code{__atomic_fetch_or},
@code{__atomic_fetch_xor}, @code{__atomic_fetch_and},
@code{__atomic_fetch_nand}, and their reverse
@code{__atomic_add_fetch} variants.
@end itemize
@item Pragmas supported by TinyCC:
@itemize
@item @code{#pragma pack(n)}, @code{#pragma pack()}, @code{#pragma pack(push)}, @code{#pragma pack(push, n)}, @code{#pragma pack(pop)}: set structure alignment or manipulate the packing alignment stack.
@item @code{#pragma push_macro("MACRO")} and @code{#pragma pop_macro("MACRO")}: push and pop macro definitions to/from a macro stack.
@item @code{#pragma once}: ensure the header file is included only once during compilation.
@item @code{#pragma comment(lib, "libname")}: specify a library to link automatically.
@item @code{#pragma comment(option, "flags")}: pass command line options directly within source code.
@end itemize
@item Preprocessor features:
@itemize
@item @code{#include_next <file>}: include the next file of the same name in the header search path order.
@item @code{#warning "message"}: emit a preprocessor warning message.
@item GNU empty variadic macro argument pasting: @code{, ##__VA_ARGS__} strips the leading comma when @code{__VA_ARGS__} is empty.
@item @code{__has_include(<file>)} and @code{__has_include("file")}: test whether a header file exists. Can be used in @code{#if} / @code{#elif} preprocessor conditions.
@item @code{__has_include_next(<file>)}: like @code{__has_include} but searches in the next include path, for use in wrapper headers.
@end itemize
@end itemize
@section TinyCC extensions
@itemize