aboutsummaryrefslogtreecommitdiffstats
path: root/doc/ccomp.1
blob: c24ddd2ca56a63adb397ffff0ccfa9dbf038811f (plain)
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
.TH CCOMP 1
.SH NAME
ccomp \- the CompCert C compiler
.
.SH SYNOPSIS
\fBccomp\fP [\fIoptions\fP] \fIfile ...\fP
.
.SH DESCRIPTION
\fBCompCert C\fP is a compiler for the C programming language.
Its intended use is the compilation of life-critical and mission-critical software written in C and meeting high levels of assurance.
It accepts most of the ISO C 99 language, with some exceptions and a few extensions.
It produces machine code for the PowerPC (32bit), ARM (32bit), and x86 (32bit and 64bit) architectures.
.PP
What sets CompCert C apart from any other production compiler, is that it is formally verified, using machine-assisted mathematical proofs, to be exempt from miscompilation issues.
In other words, the executable code it produces is proved to behave exactly as specified by the semantics of the source C program.
This level of confidence in the correctness of the compilation process is unprecedented and contributes to meeting the highest levels of software assurance.
In particular, using the CompCert C compiler is a natural complement to applying formal verification techniques (static analysis, program proof, model checking) at the source code level: the correctness proof of CompCert C guarantees that all safety properties verified on the source code automatically hold as well for the generated executable.
.
.SH
RECOGNIZED SOURCE FILES
.
.TP
.B .c
C source file.
.
.TP
.BR .i ", " .p
C source file that should not be preprocessed.
.
.TP
.B .cm
Cminor source file.
.
.TP
.B .s
Assembly file.
.
.TP
.B .S
Assembly file that must be preprocessed.
.
.TP
.B .o
Object file.
.
.TP
.B .a
Library file.
.
.SH OPTIONS
.SS Processing Options
.INDENT 0.0
.
.TP
.B \-c
Compile to object file only (no linking), result in <file>.o.
.
.TP
.B \-E
Preprocess only, send result to standard output.
.
.TP
.B \-S
Compile to assembler only, save result in <file>.s.
.
.TP
.B \-o <file>
Generate output to <file>.
.
.SS Preprocessing Options
.INDENT 0.0
.
.TP
.B \-I<dir>
Add <dir> to search path for include files.
.
.TP
.B \-include <file>
Process <file> as if \fB#include "<file>"\fP appears at the first line of the primary source file.
.
.TP
.B \-D<symbol>=<value>
Define a preprocessor symbol.
.
.TP
.B \-U<symbol>
Undefine a preprocessor symbol.
.
.TP
.B \-Wp,<args>
Pass comma separated arguments in <args> to the preprocessor.
.
.TP
.B \-Xpreprocessor <arg>
Pass argument <arg> to the preprocessor.
.
.TP
.BR \-C ", " \-CC ", " \-idirafter ", " \-imacros ", " \-iquote ", " \-isystem ", " \-M ", " \-MF ", " \-MG ", " \-MM ", " \-MP ", " \-MQ ", " \-MT  ", " \-nostdinc ", " \-P
For GNU backends these options are recognized by CompCert and passed through to the preprocessor.
.
.SS
Optimization Options
.INDENT 0.0
.
.TP
.B \-O
Optimize the compiled code.
Enabled by default.
.
.TP
.B \-O0
Turn off most optimizations.
Synonymous to \fB\-fno\-const\-prop\fP \fB\-fno\-cse\fP \fB\-fno\-redundancy\fP \fB\-fno\-tailcalls\fP.
.
.TP
.BR \-O1 ", " \-O2 ", " \-O3
Synonymous for \fB\-O\fP.
.
.TP
.B \-Os
Optimize for code size in preference to code speed.
.
.TP
.BR \-fconst\-prop ", " \-fno\-const\-prop
Turn on/off global constant propagation.
Enabled by default.
.
.TP
.BR \-fcse ", " \-fno\-cse
Turn on/off common subexpression elimination.
Enabled by default.
.
.TP
.BR \-fredundancy ", " \-fno\-redundancy
Turn on/off redundancy elimination.
Enabled by default.
.
.TP
.BR \-ftailcalls ", " \-fno\-tailcalls
Turn on/off optimization of function calls in tail position.
Enabled by default.
.
.TP
.B \-ffloat\-const\-prop <n>
Control constant propagation of floats (<n>=0: none, <n>=1: limited, <n>=2: full).
Default is full constant propagation.
.
.SS
Code Generation Options
.INDENT 0.0
.
.TP
.B \-falign\-functions <n>
Set alignment of function entry points to <n> bytes.
The default alignment is 16 bytes for x86 targets and 4 bytes for ARM and PowerPC.
.
.TP
.BR \-ffpu ", " \-fno\-fpu
Turn on/off use of FP registers for some integer operations.
Enabled by default.
.
.SS
Code Generation Options (PowerPC with Diab Backend)
.INDENT 0.0
.
.TP
.B \-falign\-branch\-targets <n>
Set alignment of branch targets to <n> bytes.
The default alignment is 0 bytes, which deactivates alignment of branch targets.
.
.TP
.B \-falign\-cond\-branches <n>
Set alignment of conditional branches to <n> bytes.
The default alignment is 0 bytes, which deactivates alignment of conditional branch targets.
.
.TP
.B \-fsmall\-const <n>
Set maximal size for allocation in small data constant to <n> bytes.
The default is 8 bytes.
.
.TP
.B \-fsmall\-data <n>
Set maximal size for allocation in small data area to <n> bytes.
The default is 8 bytes.
.
.SS
Code Generation Options (ARM Targets)
.INDENT 0.0
.
.TP
.B \-mthumb
Generate code using the Thumb 2 instruction encoding.
This is the default if CompCert is configured for the ARMv7R profile.
.
.TP
.B \-marm
Generate code using the ARM instruction encoding.
This is the default if CompCert is configured for a profile other than ARMv7R.
.
.SS
Assembling Options
.INDENT 0.0
.
.TP
.B \-Wa,<args>
Pass comma separated arguments in <args> to the assembler.
.
.TP
.B \-Xassembler <arg>
Pass argument <arg> to the assembler.
.
.SS
Debugging Options
.INDENT 0.0
.
.TP
.B \-g
Generate debugging information.
.
.TP
.BR \-g0 ", " \-g1 ", " \-g2 ", " \-g3
Control generation of debugging information (0: none, 1: only globals, 2: globals and locals without locations, 3: full debug information). The default level is 3 for full debug information.
.
.SS
Debugging Options (GNU Backend)
.INDENT 0.0
.
.TP
.B \-gdwarf-<n>
For GNU backends select debug information in DWARF format version 2 or 3.
The default format is DWARF v3.
.
.SS
Linking Options
.INDENT 0.0
.
.TP
.B \-l<library>
Link library <library>.
.
.TP
.B \-L<dir>
Add <dir> to search path for libraries.
.
.TP
.B \-Wl,<args>
Pass comma separated arguments in <args> to the linker.
.
.TP
.B \-WUl,<args>
Pass comma separated arguments in <args> to the driver program used for linking.
.
.TP
.B \-Xlinker <arg>
Pass argument <arg> to the linker.
.
.TP
.B \-s
Remove all symbol table and relocation information from the executable.
.
.TP
.B \-static
Prevent linking with the shared libraries.
.
.TP
.B \-T <file>
Use <file> as linker command file.
.
.TP
.B \-u <symbol>
Pretend the symbol <symbol> is undefined to force linking of library modules to define it.
.
.TP
.BR \-nodefaultlibs ", " \-nostartfiles ", " \-nostdlib
For GNU backends these options are recognized by CompCert and passed through to the linker.
.
.SS
Language Support Options
.INDENT 0.0
.
.TP
.BR \-fbitfields ", " \-fno\-bitfields
Turn on/off support for emulation bit fields in structs.
Disabled by default.
.
.TP
.BR \-flongdouble ", " \-fno\-longdouble
Turn on/off support for emulation of \fBlong double\fP as \fBdouble\fP.
Disabled by default.
.
.TP
.BR \-fpacked\-structs ", " \-fno\-packed\-structs
Turn on/off support for emulation of packed structs.
Disabled by default.
.
.TP
.BR \-fstruct\-passing ", " \-fno\-struct\-passing\fR
Turn on/off support for passing structs and unions by value as function results or function arguments.
Disabled by default.
.
.TP
.BR \-funprototyped ", " \-fno\-unprototyped
Turn on/off support calls to old-style functions without prototypes.
Enabled by default.
.
.TP
.BR \-fvararg\-calls ", " \-fno\-vararg\-calls
Turn on/off support for calls to variable-argument functions.
Enabled by default.
.
.TP
.BR \-finline-asm ", " \-fno\-inline-asm
Turn on/off support for inline \fBasm\fP statements.
Disabled by default.
.
.TP
.B \-fall
Activate all language support options above.
.
.TP
.B \-fnone
Deactivate all language support options above.
.
.SS
Diagnostic Options
.INDENT 0.0
.
.TP
.B \-Wall
Enable all warnings.
.
.TP
.B \-W<warning>
Enable the specific warning <warning>.
CompCert supports the following warning classes:
.sp
\fIc11\-extensions\fP:
Feature specific to C11.
Enabled by default.
.sp
\fIcompare\-distinct\-pointer\-types\fP:
Comparison of different pointer types.
Enabled by default.
.sp
\fIcompcert\-conformance\fP:
Features that are not part of the CompCert C core language, e.g. K&R style functions.
Disabled by default.
.sp
\fIconstant\-conversion\fP:
Dangerous conversion of constants, e.g. literals that are too large for the given type.
Enabled by default.
.sp
\fIgnu\-empty\-struct\fP:
GNU extension for empty structs.
Enabled by default.
.sp
\fIimplicit\-function\-declaration\fP:
Deprecated implicit function declarations.
Enabled by default.
.sp
\fIimplicit\-int\fP:
Type of parameter or return type is implicitly assumed to be int.
Enabled by default.
.sp
\fIint\-conversion\fP:
Conversion between pointer and integer.
Enabled by default.
.sp
\fIinvalid\-noreturn\fP:
Functions declared as noreturn that actually contain a return statement.
Enabled by default.
.sp
\fIliteral\-range\fP:
Floating point literals with out-of-range magnitudes or values that convert to NaN.
Enabled by default.
.sp
\fImain\-return\-type\fP:
Wrong return type for main.
Enabled by default.
.sp
\fIpointer\-type\-mismatch\fP:
Use of incompatible pointer types in conditional expressions.
Enabled by default.
.sp
\fIreturn\-type\fP:
Void-return statement in non-void function.
Enabled by default.
.sp
\fIunknown\-attributes\fP:
Use of unsupported or unknown attributes.
Enabled by default.
.sp
\fIunknown\-pragmas\fP:
Use of unsupported or unknown pragmas.
Disabled by default.
.sp
\fIvarargs\fP:
Promotable vararg arguments.
Enabled by default.
.sp
\fIzero\-length\-array\fP:
GNU extension for zero length arrays.
Disabled by default.
.
.TP
.B \-Wno-<warning>
Disable the specific warning <warning>.
.
.TP
.B \-Werror
Treat all warnings of CompCert as errors.
.
.TP
.B \-Werror=<warning>
Treat the specific warning <warning> as an error.
.
.TP
.B \-Wno-error=<warning>
Prevent the specific warning <warning> from being treated as error even if \fB\-Werror\fP is specified.
.
.TP
.B \-Wfatal-errors
Treat all errors of CompCert as fatal errors, so that the compilation is aborted immediately.
.
.TP
.B \-fdiagnostics-color
Turn on colored diagnostics. Default for TTY output devices.
.
.TP
.B \-fno-diagnostics-color
Turn of colored diagnostics.
.
.SS
Tracing Options
.INDENT 0.0
.
.TP
.B \-dprepro
Save C file after preprocessing in <file>.i
.
.TP
.B \-dparse
Save C file after parsing and elaboration in <file>.parsed.c.
.
.TP
.B \-dc
Save generated CompCert C in <file>.compcert.c.
.
.TP
.B \-dclight
Save generated Clight in <file>.light.c.
.
.TP
.B \-dcminor
Save generated Cminor in <file>.cm.
.
.TP
.B \-drtl
Save RTL at various optimization points in <file>.rtl.<n>.
.
.TP
.B \-dltl
Save LTL after register allocation in <file>.ltl.
.
.TP
.B \-dmach
Save generated Mach code in <file>.mach.
.
.TP
.B \-dasm
Save generated assembly in <file>.s.
.
.TP
.B \-dall
Save all generated intermediate files in <file>.<ext>.
.
.TP
.B \-doptions
Save the compiler configuration in <file>.opt.json.
.
.TP
.B \-sdump
Save abstract syntax tree of generated assembly for post-linking validation tool in <file>.json.
.
.SS
Miscellaneous Options
.INDENT 0.0
.
.TP
.B \-stdlib <dir>
Set the path of the CompCert run-time library to <dir>.
.
.TP
.B \-v
Print external commands before invoking them.
.
.TP
.B \-timings
Print information about the time spent in various compiler passes.
.
.TP
.B \-version
Print the CompCert version information and exit.
.
.TP
.B @<file>
Read command line options from <file>.
.
.SS
Interpreter Mode
.INDENT 0.0
.
.TP
.B \-interp
Execute the given .c files using the reference interpreter.
.
.TP
.B \-quiet
Suppress diagnostic messages for the interpreter.
.
.TP
.B \-trace
Have the interpreter produce a detailed trace of reductions.
.
.TP
.B \-random
Randomize execution order.
.
.TP
.B \-all
Simulate all possible execution orders.
.SH BUGS
To report bugs, please visit <https://github.com/AbsInt/CompCert/issues>.