blob: 8d5804b5af4fec3a6e3b3fa687eef6016501847d [file] [log] [blame]
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001============================
2Clang Compiler User's Manual
3============================
4
5.. contents::
6 :local:
7
8Introduction
9============
10
11The Clang Compiler is an open-source compiler for the C family of
12programming languages, aiming to be the best in class implementation of
13these languages. Clang builds on the LLVM optimizer and code generator,
14allowing it to provide high-quality optimization and code generation
15support for many targets. For more general information, please see the
16`Clang Web Site <http://clang.llvm.org>`_ or the `LLVM Web
17Site <http://llvm.org>`_.
18
19This document describes important notes about using Clang as a compiler
20for an end-user, documenting the supported features, command line
21options, etc. If you are interested in using Clang to build a tool that
Dmitri Gribenkod9d26072012-12-15 20:41:17 +000022processes code, please see :doc:`InternalsManual`. If you are interested in the
23`Clang Static Analyzer <http://clang-analyzer.llvm.org>`_, please see its web
Sean Silvabf9b4cd2012-12-13 01:10:46 +000024page.
25
26Clang is designed to support the C family of programming languages,
27which includes :ref:`C <c>`, :ref:`Objective-C <objc>`, :ref:`C++ <cxx>`, and
28:ref:`Objective-C++ <objcxx>` as well as many dialects of those. For
29language-specific information, please see the corresponding language
30specific section:
31
32- :ref:`C Language <c>`: K&R C, ANSI C89, ISO C90, ISO C94 (C89+AMD1), ISO
33 C99 (+TC1, TC2, TC3).
34- :ref:`Objective-C Language <objc>`: ObjC 1, ObjC 2, ObjC 2.1, plus
35 variants depending on base language.
36- :ref:`C++ Language <cxx>`
37- :ref:`Objective C++ Language <objcxx>`
38
39In addition to these base languages and their dialects, Clang supports a
40broad variety of language extensions, which are documented in the
41corresponding language section. These extensions are provided to be
42compatible with the GCC, Microsoft, and other popular compilers as well
43as to improve functionality through Clang-specific features. The Clang
44driver and language features are intentionally designed to be as
45compatible with the GNU GCC compiler as reasonably possible, easing
46migration from GCC to Clang. In most cases, code "just works".
Hans Wennborg2a6e6bc2013-10-10 01:15:16 +000047Clang also provides an alternative driver, :ref:`clang-cl`, that is designed
48to be compatible with the Visual C++ compiler, cl.exe.
Sean Silvabf9b4cd2012-12-13 01:10:46 +000049
50In addition to language specific features, Clang has a variety of
51features that depend on what CPU architecture or operating system is
52being compiled for. Please see the :ref:`Target-Specific Features and
53Limitations <target_features>` section for more details.
54
55The rest of the introduction introduces some basic :ref:`compiler
56terminology <terminology>` that is used throughout this manual and
57contains a basic :ref:`introduction to using Clang <basicusage>` as a
58command line compiler.
59
60.. _terminology:
61
62Terminology
63-----------
64
65Front end, parser, backend, preprocessor, undefined behavior,
66diagnostic, optimizer
67
68.. _basicusage:
69
70Basic Usage
71-----------
72
73Intro to how to use a C compiler for newbies.
74
75compile + link compile then link debug info enabling optimizations
Richard Smithab506ad2014-10-20 23:26:58 +000076picking a language to use, defaults to C11 by default. Autosenses based
Sean Silvabf9b4cd2012-12-13 01:10:46 +000077on extension. using a makefile
78
79Command Line Options
80====================
81
82This section is generally an index into other sections. It does not go
83into depth on the ones that are covered by other sections. However, the
84first part introduces the language selection and other high level
Dmitri Gribenko1436ff22012-12-19 22:06:59 +000085options like :option:`-c`, :option:`-g`, etc.
Sean Silvabf9b4cd2012-12-13 01:10:46 +000086
87Options to Control Error and Warning Messages
88---------------------------------------------
89
Dmitri Gribenko1436ff22012-12-19 22:06:59 +000090.. option:: -Werror
Sean Silvabf9b4cd2012-12-13 01:10:46 +000091
Dmitri Gribenko1436ff22012-12-19 22:06:59 +000092 Turn warnings into errors.
Sean Silvabf9b4cd2012-12-13 01:10:46 +000093
Dmitri Gribenko1436ff22012-12-19 22:06:59 +000094.. This is in plain monospaced font because it generates the same label as
95.. -Werror, and Sphinx complains.
Sean Silvabf9b4cd2012-12-13 01:10:46 +000096
Dmitri Gribenko1436ff22012-12-19 22:06:59 +000097``-Werror=foo``
Sean Silvabf9b4cd2012-12-13 01:10:46 +000098
Dmitri Gribenko1436ff22012-12-19 22:06:59 +000099 Turn warning "foo" into an error.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000100
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000101.. option:: -Wno-error=foo
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000102
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000103 Turn warning "foo" into an warning even if :option:`-Werror` is specified.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000104
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000105.. option:: -Wfoo
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000106
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000107 Enable warning "foo".
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000108
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000109.. option:: -Wno-foo
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000110
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000111 Disable warning "foo".
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000112
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000113.. option:: -w
114
Tobias Grosser74160242014-02-28 09:11:08 +0000115 Disable all diagnostics.
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000116
117.. option:: -Weverything
118
Tobias Grosser74160242014-02-28 09:11:08 +0000119 :ref:`Enable all diagnostics. <diagnostics_enable_everything>`
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000120
121.. option:: -pedantic
122
123 Warn on language extensions.
124
125.. option:: -pedantic-errors
126
127 Error on language extensions.
128
129.. option:: -Wsystem-headers
130
131 Enable warnings from system headers.
132
133.. option:: -ferror-limit=123
134
135 Stop emitting diagnostics after 123 errors have been produced. The default is
136 20, and the error limit can be disabled with :option:`-ferror-limit=0`.
137
138.. option:: -ftemplate-backtrace-limit=123
139
140 Only emit up to 123 template instantiation notes within the template
141 instantiation backtrace for a single warning or error. The default is 10, and
142 the limit can be disabled with :option:`-ftemplate-backtrace-limit=0`.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000143
144.. _cl_diag_formatting:
145
146Formatting of Diagnostics
147^^^^^^^^^^^^^^^^^^^^^^^^^
148
149Clang aims to produce beautiful diagnostics by default, particularly for
150new users that first come to Clang. However, different people have
151different preferences, and sometimes Clang is driven by another program
152that wants to parse simple and consistent output, not a person. For
153these cases, Clang provides a wide range of options to control the exact
154output format of the diagnostics that it generates.
155
156.. _opt_fshow-column:
157
158**-f[no-]show-column**
159 Print column number in diagnostic.
160
161 This option, which defaults to on, controls whether or not Clang
162 prints the column number of a diagnostic. For example, when this is
163 enabled, Clang will print something like:
164
165 ::
166
167 test.c:28:8: warning: extra tokens at end of #endif directive [-Wextra-tokens]
168 #endif bad
169 ^
170 //
171
172 When this is disabled, Clang will print "test.c:28: warning..." with
173 no column number.
174
175 The printed column numbers count bytes from the beginning of the
176 line; take care if your source contains multibyte characters.
177
178.. _opt_fshow-source-location:
179
180**-f[no-]show-source-location**
181 Print source file/line/column information in diagnostic.
182
183 This option, which defaults to on, controls whether or not Clang
184 prints the filename, line number and column number of a diagnostic.
185 For example, when this is enabled, Clang will print something like:
186
187 ::
188
189 test.c:28:8: warning: extra tokens at end of #endif directive [-Wextra-tokens]
190 #endif bad
191 ^
192 //
193
194 When this is disabled, Clang will not print the "test.c:28:8: "
195 part.
196
197.. _opt_fcaret-diagnostics:
198
199**-f[no-]caret-diagnostics**
200 Print source line and ranges from source code in diagnostic.
201 This option, which defaults to on, controls whether or not Clang
202 prints the source line, source ranges, and caret when emitting a
203 diagnostic. For example, when this is enabled, Clang will print
204 something like:
205
206 ::
207
208 test.c:28:8: warning: extra tokens at end of #endif directive [-Wextra-tokens]
209 #endif bad
210 ^
211 //
212
213**-f[no-]color-diagnostics**
214 This option, which defaults to on when a color-capable terminal is
215 detected, controls whether or not Clang prints diagnostics in color.
216
217 When this option is enabled, Clang will use colors to highlight
218 specific parts of the diagnostic, e.g.,
219
220 .. nasty hack to not lose our dignity
221
222 .. raw:: html
223
224 <pre>
225 <b><span style="color:black">test.c:28:8: <span style="color:magenta">warning</span>: extra tokens at end of #endif directive [-Wextra-tokens]</span></b>
226 #endif bad
227 <span style="color:green">^</span>
228 <span style="color:green">//</span>
229 </pre>
230
231 When this is disabled, Clang will just print:
232
233 ::
234
235 test.c:2:8: warning: extra tokens at end of #endif directive [-Wextra-tokens]
236 #endif bad
237 ^
238 //
239
Nico Rieck7857d462013-09-11 00:38:02 +0000240**-fansi-escape-codes**
241 Controls whether ANSI escape codes are used instead of the Windows Console
242 API to output colored diagnostics. This option is only used on Windows and
243 defaults to off.
244
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000245.. option:: -fdiagnostics-format=clang/msvc/vi
246
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000247 Changes diagnostic output format to better match IDEs and command line tools.
248
249 This option controls the output format of the filename, line number,
250 and column printed in diagnostic messages. The options, and their
251 affect on formatting a simple conversion diagnostic, follow:
252
253 **clang** (default)
254 ::
255
256 t.c:3:11: warning: conversion specifies type 'char *' but the argument has type 'int'
257
258 **msvc**
259 ::
260
261 t.c(3,11) : warning: conversion specifies type 'char *' but the argument has type 'int'
262
263 **vi**
264 ::
265
266 t.c +3:11: warning: conversion specifies type 'char *' but the argument has type 'int'
267
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000268.. _opt_fdiagnostics-show-option:
269
270**-f[no-]diagnostics-show-option**
271 Enable ``[-Woption]`` information in diagnostic line.
272
273 This option, which defaults to on, controls whether or not Clang
274 prints the associated :ref:`warning group <cl_diag_warning_groups>`
275 option name when outputting a warning diagnostic. For example, in
276 this output:
277
278 ::
279
280 test.c:28:8: warning: extra tokens at end of #endif directive [-Wextra-tokens]
281 #endif bad
282 ^
283 //
284
285 Passing **-fno-diagnostics-show-option** will prevent Clang from
286 printing the [:ref:`-Wextra-tokens <opt_Wextra-tokens>`] information in
287 the diagnostic. This information tells you the flag needed to enable
288 or disable the diagnostic, either from the command line or through
289 :ref:`#pragma GCC diagnostic <pragma_GCC_diagnostic>`.
290
291.. _opt_fdiagnostics-show-category:
292
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000293.. option:: -fdiagnostics-show-category=none/id/name
294
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000295 Enable printing category information in diagnostic line.
296
297 This option, which defaults to "none", controls whether or not Clang
298 prints the category associated with a diagnostic when emitting it.
299 Each diagnostic may or many not have an associated category, if it
300 has one, it is listed in the diagnostic categorization field of the
301 diagnostic line (in the []'s).
302
303 For example, a format string warning will produce these three
304 renditions based on the setting of this option:
305
306 ::
307
308 t.c:3:11: warning: conversion specifies type 'char *' but the argument has type 'int' [-Wformat]
309 t.c:3:11: warning: conversion specifies type 'char *' but the argument has type 'int' [-Wformat,1]
310 t.c:3:11: warning: conversion specifies type 'char *' but the argument has type 'int' [-Wformat,Format String]
311
312 This category can be used by clients that want to group diagnostics
313 by category, so it should be a high level category. We want dozens
314 of these, not hundreds or thousands of them.
315
316.. _opt_fdiagnostics-fixit-info:
317
318**-f[no-]diagnostics-fixit-info**
319 Enable "FixIt" information in the diagnostics output.
320
321 This option, which defaults to on, controls whether or not Clang
322 prints the information on how to fix a specific diagnostic
323 underneath it when it knows. For example, in this output:
324
325 ::
326
327 test.c:28:8: warning: extra tokens at end of #endif directive [-Wextra-tokens]
328 #endif bad
329 ^
330 //
331
332 Passing **-fno-diagnostics-fixit-info** will prevent Clang from
333 printing the "//" line at the end of the message. This information
334 is useful for users who may not understand what is wrong, but can be
335 confusing for machine parsing.
336
337.. _opt_fdiagnostics-print-source-range-info:
338
Nico Weber69dce49c72013-01-09 05:06:41 +0000339**-fdiagnostics-print-source-range-info**
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000340 Print machine parsable information about source ranges.
Nico Weber69dce49c72013-01-09 05:06:41 +0000341 This option makes Clang print information about source ranges in a machine
342 parsable format after the file/line/column number information. The
343 information is a simple sequence of brace enclosed ranges, where each range
344 lists the start and end line/column locations. For example, in this output:
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000345
346 ::
347
348 exprs.c:47:15:{47:8-47:14}{47:17-47:24}: error: invalid operands to binary expression ('int *' and '_Complex float')
349 P = (P-42) + Gamma*4;
350 ~~~~~~ ^ ~~~~~~~
351
352 The {}'s are generated by -fdiagnostics-print-source-range-info.
353
354 The printed column numbers count bytes from the beginning of the
355 line; take care if your source contains multibyte characters.
356
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000357.. option:: -fdiagnostics-parseable-fixits
358
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000359 Print Fix-Its in a machine parseable form.
360
361 This option makes Clang print available Fix-Its in a machine
362 parseable format at the end of diagnostics. The following example
363 illustrates the format:
364
365 ::
366
367 fix-it:"t.cpp":{7:25-7:29}:"Gamma"
368
369 The range printed is a half-open range, so in this example the
370 characters at column 25 up to but not including column 29 on line 7
371 in t.cpp should be replaced with the string "Gamma". Either the
372 range or the replacement string may be empty (representing strict
373 insertions and strict erasures, respectively). Both the file name
374 and the insertion string escape backslash (as "\\\\"), tabs (as
375 "\\t"), newlines (as "\\n"), double quotes(as "\\"") and
376 non-printable characters (as octal "\\xxx").
377
378 The printed column numbers count bytes from the beginning of the
379 line; take care if your source contains multibyte characters.
380
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000381.. option:: -fno-elide-type
382
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000383 Turns off elision in template type printing.
384
385 The default for template type printing is to elide as many template
386 arguments as possible, removing those which are the same in both
387 template types, leaving only the differences. Adding this flag will
388 print all the template arguments. If supported by the terminal,
389 highlighting will still appear on differing arguments.
390
391 Default:
392
393 ::
394
395 t.cc:4:5: note: candidate function not viable: no known conversion from 'vector<map<[...], map<float, [...]>>>' to 'vector<map<[...], map<double, [...]>>>' for 1st argument;
396
397 -fno-elide-type:
398
399 ::
400
401 t.cc:4:5: note: candidate function not viable: no known conversion from 'vector<map<int, map<float, int>>>' to 'vector<map<int, map<double, int>>>' for 1st argument;
402
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000403.. option:: -fdiagnostics-show-template-tree
404
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000405 Template type diffing prints a text tree.
406
407 For diffing large templated types, this option will cause Clang to
408 display the templates as an indented text tree, one argument per
409 line, with differences marked inline. This is compatible with
410 -fno-elide-type.
411
412 Default:
413
414 ::
415
416 t.cc:4:5: note: candidate function not viable: no known conversion from 'vector<map<[...], map<float, [...]>>>' to 'vector<map<[...], map<double, [...]>>>' for 1st argument;
417
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000418 With :option:`-fdiagnostics-show-template-tree`:
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000419
420 ::
421
422 t.cc:4:5: note: candidate function not viable: no known conversion for 1st argument;
423 vector<
424 map<
425 [...],
426 map<
Richard Trieu98ca59e2013-08-09 22:52:48 +0000427 [float != double],
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000428 [...]>>>
429
430.. _cl_diag_warning_groups:
431
432Individual Warning Groups
433^^^^^^^^^^^^^^^^^^^^^^^^^
434
435TODO: Generate this from tblgen. Define one anchor per warning group.
436
437.. _opt_wextra-tokens:
438
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000439.. option:: -Wextra-tokens
440
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000441 Warn about excess tokens at the end of a preprocessor directive.
442
443 This option, which defaults to on, enables warnings about extra
444 tokens at the end of preprocessor directives. For example:
445
446 ::
447
448 test.c:28:8: warning: extra tokens at end of #endif directive [-Wextra-tokens]
449 #endif bad
450 ^
451
452 These extra tokens are not strictly conforming, and are usually best
453 handled by commenting them out.
454
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000455.. option:: -Wambiguous-member-template
456
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000457 Warn about unqualified uses of a member template whose name resolves to
458 another template at the location of the use.
459
460 This option, which defaults to on, enables a warning in the
461 following code:
462
463 ::
464
465 template<typename T> struct set{};
466 template<typename T> struct trait { typedef const T& type; };
467 struct Value {
468 template<typename T> void set(typename trait<T>::type value) {}
469 };
470 void foo() {
471 Value v;
472 v.set<double>(3.2);
473 }
474
475 C++ [basic.lookup.classref] requires this to be an error, but,
476 because it's hard to work around, Clang downgrades it to a warning
477 as an extension.
478
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000479.. option:: -Wbind-to-temporary-copy
480
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000481 Warn about an unusable copy constructor when binding a reference to a
482 temporary.
483
Nico Weberacb35c02014-09-18 02:09:53 +0000484 This option enables warnings about binding a
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000485 reference to a temporary when the temporary doesn't have a usable
486 copy constructor. For example:
487
488 ::
489
490 struct NonCopyable {
491 NonCopyable();
492 private:
493 NonCopyable(const NonCopyable&);
494 };
495 void foo(const NonCopyable&);
496 void bar() {
497 foo(NonCopyable()); // Disallowed in C++98; allowed in C++11.
498 }
499
500 ::
501
502 struct NonCopyable2 {
503 NonCopyable2();
504 NonCopyable2(NonCopyable2&);
505 };
506 void foo(const NonCopyable2&);
507 void bar() {
508 foo(NonCopyable2()); // Disallowed in C++98; allowed in C++11.
509 }
510
511 Note that if ``NonCopyable2::NonCopyable2()`` has a default argument
512 whose instantiation produces a compile error, that error will still
513 be a hard error in C++98 mode even if this warning is turned off.
514
515Options to Control Clang Crash Diagnostics
516------------------------------------------
517
518As unbelievable as it may sound, Clang does crash from time to time.
519Generally, this only occurs to those living on the `bleeding
520edge <http://llvm.org/releases/download.html#svn>`_. Clang goes to great
521lengths to assist you in filing a bug report. Specifically, Clang
522generates preprocessed source file(s) and associated run script(s) upon
523a crash. These files should be attached to a bug report to ease
524reproducibility of the failure. Below are the command line options to
525control the crash diagnostics.
526
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000527.. option:: -fno-crash-diagnostics
528
529 Disable auto-generation of preprocessed source files during a clang crash.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000530
531The -fno-crash-diagnostics flag can be helpful for speeding the process
532of generating a delta reduced test case.
533
Diego Novillo263ce212014-05-29 20:13:27 +0000534Options to Emit Optimization Reports
535------------------------------------
536
537Optimization reports trace, at a high-level, all the major decisions
538done by compiler transformations. For instance, when the inliner
539decides to inline function ``foo()`` into ``bar()``, or the loop unroller
540decides to unroll a loop N times, or the vectorizer decides to
541vectorize a loop body.
542
543Clang offers a family of flags which the optimizers can use to emit
544a diagnostic in three cases:
545
5461. When the pass makes a transformation (:option:`-Rpass`).
547
5482. When the pass fails to make a transformation (:option:`-Rpass-missed`).
549
5503. When the pass determines whether or not to make a transformation
551 (:option:`-Rpass-analysis`).
552
553NOTE: Although the discussion below focuses on :option:`-Rpass`, the exact
554same options apply to :option:`-Rpass-missed` and :option:`-Rpass-analysis`.
555
556Since there are dozens of passes inside the compiler, each of these flags
557take a regular expression that identifies the name of the pass which should
558emit the associated diagnostic. For example, to get a report from the inliner,
559compile the code with:
560
561.. code-block:: console
562
563 $ clang -O2 -Rpass=inline code.cc -o code
564 code.cc:4:25: remark: foo inlined into bar [-Rpass=inline]
565 int bar(int j) { return foo(j, j - 2); }
566 ^
567
568Note that remarks from the inliner are identified with `[-Rpass=inline]`.
569To request a report from every optimization pass, you should use
570:option:`-Rpass=.*` (in fact, you can use any valid POSIX regular
571expression). However, do not expect a report from every transformation
572made by the compiler. Optimization remarks do not really make sense
573outside of the major transformations (e.g., inlining, vectorization,
574loop optimizations) and not every optimization pass supports this
575feature.
576
577Current limitations
578^^^^^^^^^^^^^^^^^^^
579
Diego Novillo94b276d2014-07-10 23:29:28 +00005801. Optimization remarks that refer to function names will display the
Diego Novillo263ce212014-05-29 20:13:27 +0000581 mangled name of the function. Since these remarks are emitted by the
582 back end of the compiler, it does not know anything about the input
583 language, nor its mangling rules.
584
Diego Novillo94b276d2014-07-10 23:29:28 +00005852. Some source locations are not displayed correctly. The front end has
Diego Novillo263ce212014-05-29 20:13:27 +0000586 a more detailed source location tracking than the locations included
587 in the debug info (e.g., the front end can locate code inside macro
588 expansions). However, the locations used by :option:`-Rpass` are
589 translated from debug annotations. That translation can be lossy,
590 which results in some remarks having no location information.
591
592
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000593Language and Target-Independent Features
594========================================
595
596Controlling Errors and Warnings
597-------------------------------
598
599Clang provides a number of ways to control which code constructs cause
600it to emit errors and warning messages, and how they are displayed to
601the console.
602
603Controlling How Clang Displays Diagnostics
604^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
605
606When Clang emits a diagnostic, it includes rich information in the
607output, and gives you fine-grain control over which information is
608printed. Clang has the ability to print this information, and these are
609the options that control it:
610
611#. A file/line/column indicator that shows exactly where the diagnostic
612 occurs in your code [:ref:`-fshow-column <opt_fshow-column>`,
613 :ref:`-fshow-source-location <opt_fshow-source-location>`].
614#. A categorization of the diagnostic as a note, warning, error, or
615 fatal error.
616#. A text string that describes what the problem is.
617#. An option that indicates how to control the diagnostic (for
618 diagnostics that support it)
619 [:ref:`-fdiagnostics-show-option <opt_fdiagnostics-show-option>`].
620#. A :ref:`high-level category <diagnostics_categories>` for the diagnostic
621 for clients that want to group diagnostics by class (for diagnostics
622 that support it)
623 [:ref:`-fdiagnostics-show-category <opt_fdiagnostics-show-category>`].
624#. The line of source code that the issue occurs on, along with a caret
625 and ranges that indicate the important locations
626 [:ref:`-fcaret-diagnostics <opt_fcaret-diagnostics>`].
627#. "FixIt" information, which is a concise explanation of how to fix the
628 problem (when Clang is certain it knows)
629 [:ref:`-fdiagnostics-fixit-info <opt_fdiagnostics-fixit-info>`].
630#. A machine-parsable representation of the ranges involved (off by
631 default)
632 [:ref:`-fdiagnostics-print-source-range-info <opt_fdiagnostics-print-source-range-info>`].
633
634For more information please see :ref:`Formatting of
635Diagnostics <cl_diag_formatting>`.
636
637Diagnostic Mappings
638^^^^^^^^^^^^^^^^^^^
639
Alex Denisov793e0672015-02-11 07:56:16 +0000640All diagnostics are mapped into one of these 6 classes:
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000641
642- Ignored
643- Note
Tobias Grosser74160242014-02-28 09:11:08 +0000644- Remark
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000645- Warning
646- Error
647- Fatal
648
649.. _diagnostics_categories:
650
651Diagnostic Categories
652^^^^^^^^^^^^^^^^^^^^^
653
654Though not shown by default, diagnostics may each be associated with a
655high-level category. This category is intended to make it possible to
656triage builds that produce a large number of errors or warnings in a
657grouped way.
658
659Categories are not shown by default, but they can be turned on with the
660:ref:`-fdiagnostics-show-category <opt_fdiagnostics-show-category>` option.
661When set to "``name``", the category is printed textually in the
662diagnostic output. When it is set to "``id``", a category number is
663printed. The mapping of category names to category id's can be obtained
664by running '``clang --print-diagnostic-categories``'.
665
666Controlling Diagnostics via Command Line Flags
667^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
668
669TODO: -W flags, -pedantic, etc
670
671.. _pragma_gcc_diagnostic:
672
673Controlling Diagnostics via Pragmas
674^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
675
676Clang can also control what diagnostics are enabled through the use of
677pragmas in the source code. This is useful for turning off specific
678warnings in a section of source code. Clang supports GCC's pragma for
679compatibility with existing source code, as well as several extensions.
680
681The pragma may control any warning that can be used from the command
682line. Warnings may be set to ignored, warning, error, or fatal. The
683following example code will tell Clang or GCC to ignore the -Wall
684warnings:
685
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000686.. code-block:: c
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000687
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000688 #pragma GCC diagnostic ignored "-Wall"
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000689
690In addition to all of the functionality provided by GCC's pragma, Clang
691also allows you to push and pop the current warning state. This is
692particularly useful when writing a header file that will be compiled by
693other people, because you don't know what warning flags they build with.
694
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000695In the below example :option:`-Wmultichar` is ignored for only a single line of
696code, after which the diagnostics return to whatever state had previously
697existed.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000698
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000699.. code-block:: c
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000700
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000701 #pragma clang diagnostic push
702 #pragma clang diagnostic ignored "-Wmultichar"
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000703
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000704 char b = 'df'; // no warning.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000705
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000706 #pragma clang diagnostic pop
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000707
708The push and pop pragmas will save and restore the full diagnostic state
709of the compiler, regardless of how it was set. That means that it is
710possible to use push and pop around GCC compatible diagnostics and Clang
711will push and pop them appropriately, while GCC will ignore the pushes
712and pops as unknown pragmas. It should be noted that while Clang
713supports the GCC pragma, Clang and GCC do not support the exact same set
714of warnings, so even when using GCC compatible #pragmas there is no
715guarantee that they will have identical behaviour on both compilers.
716
Andy Gibbs9c2ccd62013-04-17 16:16:16 +0000717In addition to controlling warnings and errors generated by the compiler, it is
718possible to generate custom warning and error messages through the following
719pragmas:
720
721.. code-block:: c
722
723 // The following will produce warning messages
724 #pragma message "some diagnostic message"
725 #pragma GCC warning "TODO: replace deprecated feature"
726
727 // The following will produce an error message
728 #pragma GCC error "Not supported"
729
730These pragmas operate similarly to the ``#warning`` and ``#error`` preprocessor
731directives, except that they may also be embedded into preprocessor macros via
732the C99 ``_Pragma`` operator, for example:
733
734.. code-block:: c
735
736 #define STR(X) #X
737 #define DEFER(M,...) M(__VA_ARGS__)
738 #define CUSTOM_ERROR(X) _Pragma(STR(GCC error(X " at line " DEFER(STR,__LINE__))))
739
740 CUSTOM_ERROR("Feature not available");
741
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000742Controlling Diagnostics in System Headers
743^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
744
745Warnings are suppressed when they occur in system headers. By default,
746an included file is treated as a system header if it is found in an
747include path specified by ``-isystem``, but this can be overridden in
748several ways.
749
750The ``system_header`` pragma can be used to mark the current file as
751being a system header. No warnings will be produced from the location of
752the pragma onwards within the same file.
753
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000754.. code-block:: c
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000755
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000756 char a = 'xy'; // warning
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000757
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000758 #pragma clang system_header
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000759
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000760 char b = 'ab'; // no warning
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000761
Alexander Kornienko18fa48c2014-03-26 01:39:59 +0000762The :option:`--system-header-prefix=` and :option:`--no-system-header-prefix=`
763command-line arguments can be used to override whether subsets of an include
764path are treated as system headers. When the name in a ``#include`` directive
765is found within a header search path and starts with a system prefix, the
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000766header is treated as a system header. The last prefix on the
767command-line which matches the specified header name takes precedence.
768For instance:
769
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000770.. code-block:: console
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000771
Alexander Kornienko18fa48c2014-03-26 01:39:59 +0000772 $ clang -Ifoo -isystem bar --system-header-prefix=x/ \
773 --no-system-header-prefix=x/y/
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000774
775Here, ``#include "x/a.h"`` is treated as including a system header, even
776if the header is found in ``foo``, and ``#include "x/y/b.h"`` is treated
777as not including a system header, even if the header is found in
778``bar``.
779
780A ``#include`` directive which finds a file relative to the current
781directory is treated as including a system header if the including file
782is treated as a system header.
783
784.. _diagnostics_enable_everything:
785
Tobias Grosser74160242014-02-28 09:11:08 +0000786Enabling All Diagnostics
787^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000788
789In addition to the traditional ``-W`` flags, one can enable **all**
Tobias Grosser74160242014-02-28 09:11:08 +0000790diagnostics by passing :option:`-Weverything`. This works as expected
791with
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000792:option:`-Werror`, and also includes the warnings from :option:`-pedantic`.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000793
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000794Note that when combined with :option:`-w` (which disables all warnings), that
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000795flag wins.
796
797Controlling Static Analyzer Diagnostics
798^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
799
800While not strictly part of the compiler, the diagnostics from Clang's
801`static analyzer <http://clang-analyzer.llvm.org>`_ can also be
802influenced by the user via changes to the source code. See the available
803`annotations <http://clang-analyzer.llvm.org/annotations.html>`_ and the
804analyzer's `FAQ
805page <http://clang-analyzer.llvm.org/faq.html#exclude_code>`_ for more
806information.
807
Dmitri Gribenko7ac0cc32012-12-15 21:10:51 +0000808.. _usersmanual-precompiled-headers:
809
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000810Precompiled Headers
811-------------------
812
813`Precompiled headers <http://en.wikipedia.org/wiki/Precompiled_header>`__
814are a general approach employed by many compilers to reduce compilation
815time. The underlying motivation of the approach is that it is common for
816the same (and often large) header files to be included by multiple
817source files. Consequently, compile times can often be greatly improved
818by caching some of the (redundant) work done by a compiler to process
819headers. Precompiled header files, which represent one of many ways to
820implement this optimization, are literally files that represent an
821on-disk cache that contains the vital information necessary to reduce
822some of the work needed to process a corresponding header file. While
823details of precompiled headers vary between compilers, precompiled
824headers have been shown to be highly effective at speeding up program
Nico Weberab88f0b2014-03-07 18:09:57 +0000825compilation on systems with very large system headers (e.g., Mac OS X).
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000826
827Generating a PCH File
828^^^^^^^^^^^^^^^^^^^^^
829
830To generate a PCH file using Clang, one invokes Clang with the
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000831:option:`-x <language>-header` option. This mirrors the interface in GCC
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000832for generating PCH files:
833
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000834.. code-block:: console
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000835
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000836 $ gcc -x c-header test.h -o test.h.gch
837 $ clang -x c-header test.h -o test.h.pch
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000838
839Using a PCH File
840^^^^^^^^^^^^^^^^
841
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000842A PCH file can then be used as a prefix header when a :option:`-include`
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000843option is passed to ``clang``:
844
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000845.. code-block:: console
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000846
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000847 $ clang -include test.h test.c -o test
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000848
849The ``clang`` driver will first check if a PCH file for ``test.h`` is
850available; if so, the contents of ``test.h`` (and the files it includes)
851will be processed from the PCH file. Otherwise, Clang falls back to
852directly processing the content of ``test.h``. This mirrors the behavior
853of GCC.
854
855.. note::
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000856
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000857 Clang does *not* automatically use PCH files for headers that are directly
858 included within a source file. For example:
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000859
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000860 .. code-block:: console
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000861
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000862 $ clang -x c-header test.h -o test.h.pch
863 $ cat test.c
864 #include "test.h"
865 $ clang test.c -o test
866
867 In this example, ``clang`` will not automatically use the PCH file for
868 ``test.h`` since ``test.h`` was included directly in the source file and not
869 specified on the command line using :option:`-include`.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000870
871Relocatable PCH Files
872^^^^^^^^^^^^^^^^^^^^^
873
874It is sometimes necessary to build a precompiled header from headers
875that are not yet in their final, installed locations. For example, one
876might build a precompiled header within the build tree that is then
877meant to be installed alongside the headers. Clang permits the creation
878of "relocatable" precompiled headers, which are built with a given path
879(into the build directory) and can later be used from an installed
880location.
881
882To build a relocatable precompiled header, place your headers into a
883subdirectory whose structure mimics the installed location. For example,
884if you want to build a precompiled header for the header ``mylib.h``
885that will be installed into ``/usr/include``, create a subdirectory
886``build/usr/include`` and place the header ``mylib.h`` into that
887subdirectory. If ``mylib.h`` depends on other headers, then they can be
888stored within ``build/usr/include`` in a way that mimics the installed
889location.
890
891Building a relocatable precompiled header requires two additional
892arguments. First, pass the ``--relocatable-pch`` flag to indicate that
893the resulting PCH file should be relocatable. Second, pass
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000894:option:`-isysroot /path/to/build`, which makes all includes for your library
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000895relative to the build directory. For example:
896
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000897.. code-block:: console
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000898
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000899 # clang -x c-header --relocatable-pch -isysroot /path/to/build /path/to/build/mylib.h mylib.h.pch
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000900
901When loading the relocatable PCH file, the various headers used in the
902PCH file are found from the system header root. For example, ``mylib.h``
903can be found in ``/usr/include/mylib.h``. If the headers are installed
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000904in some other system root, the :option:`-isysroot` option can be used provide
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000905a different system root from which the headers will be based. For
Dmitri Gribenko1436ff22012-12-19 22:06:59 +0000906example, :option:`-isysroot /Developer/SDKs/MacOSX10.4u.sdk` will look for
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000907``mylib.h`` in ``/Developer/SDKs/MacOSX10.4u.sdk/usr/include/mylib.h``.
908
909Relocatable precompiled headers are intended to be used in a limited
910number of cases where the compilation environment is tightly controlled
911and the precompiled header cannot be generated after headers have been
Argyrios Kyrtzidisf0ad09f2013-02-14 00:12:44 +0000912installed.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000913
914Controlling Code Generation
915---------------------------
916
917Clang provides a number of ways to control code generation. The options
918are listed below.
919
Sean Silva4c280bd2013-06-21 23:50:58 +0000920**-f[no-]sanitize=check1,check2,...**
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000921 Turn on runtime checks for various forms of undefined or suspicious
922 behavior.
923
924 This option controls whether Clang adds runtime checks for various
925 forms of undefined or suspicious behavior, and is disabled by
926 default. If a check fails, a diagnostic message is produced at
927 runtime explaining the problem. The main checks are:
928
Richard Smithbb741f42012-12-13 07:29:23 +0000929 - .. _opt_fsanitize_address:
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000930
Richard Smithbb741f42012-12-13 07:29:23 +0000931 ``-fsanitize=address``:
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000932 :doc:`AddressSanitizer`, a memory error
933 detector.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000934 - ``-fsanitize=integer``: Enables checks for undefined or
935 suspicious integer behavior.
Richard Smithbb741f42012-12-13 07:29:23 +0000936 - .. _opt_fsanitize_thread:
937
Dmitry Vyukov42de1082012-12-21 08:21:25 +0000938 ``-fsanitize=thread``: :doc:`ThreadSanitizer`, a data race detector.
Evgeniy Stepanov17d55902012-12-21 10:50:00 +0000939 - .. _opt_fsanitize_memory:
940
941 ``-fsanitize=memory``: :doc:`MemorySanitizer`,
942 an *experimental* detector of uninitialized reads. Not ready for
943 widespread use.
Richard Smithbb741f42012-12-13 07:29:23 +0000944 - .. _opt_fsanitize_undefined:
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000945
Richard Smithbb741f42012-12-13 07:29:23 +0000946 ``-fsanitize=undefined``: Fast and compatible undefined behavior
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000947 checker. Enables the undefined behavior checks that have small
948 runtime cost and no impact on address space layout or ABI. This
949 includes all of the checks listed below other than
950 ``unsigned-integer-overflow``.
951
Richard Smithb7f7faa2013-05-29 22:57:31 +0000952 - ``-fsanitize=undefined-trap``: This includes all sanitizers
Chad Rosierae229d52013-01-29 23:31:22 +0000953 included by ``-fsanitize=undefined``, except those that require
Richard Smithb7f7faa2013-05-29 22:57:31 +0000954 runtime support. This group of sanitizers is intended to be
955 used in conjunction with the ``-fsanitize-undefined-trap-on-error``
956 flag. This includes all of the checks listed below other than
957 ``unsigned-integer-overflow`` and ``vptr``.
Peter Collingbournec3772752013-08-07 22:47:34 +0000958 - ``-fsanitize=dataflow``: :doc:`DataFlowSanitizer`, a general data
959 flow analysis.
Chad Rosierae229d52013-01-29 23:31:22 +0000960
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000961 The following more fine-grained checks are also available:
962
963 - ``-fsanitize=alignment``: Use of a misaligned pointer or creation
964 of a misaligned reference.
Richard Smith1629da92012-12-13 07:11:50 +0000965 - ``-fsanitize=bool``: Load of a ``bool`` value which is neither
966 ``true`` nor ``false``.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000967 - ``-fsanitize=bounds``: Out of bounds array indexing, in cases
968 where the array bound can be statically determined.
Richard Smith1629da92012-12-13 07:11:50 +0000969 - ``-fsanitize=enum``: Load of a value of an enumerated type which
970 is not in the range of representable values for that enumerated
971 type.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000972 - ``-fsanitize=float-cast-overflow``: Conversion to, from, or
973 between floating-point types which would overflow the
974 destination.
975 - ``-fsanitize=float-divide-by-zero``: Floating point division by
976 zero.
Peter Collingbourneb453cd62013-10-20 21:29:19 +0000977 - ``-fsanitize=function``: Indirect call of a function through a
Peter Collingbourne6939d292013-10-26 00:21:57 +0000978 function pointer of the wrong type (Linux, C++ and x86/x86_64 only).
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000979 - ``-fsanitize=integer-divide-by-zero``: Integer division by zero.
Alexey Samsonov8e1162c2014-09-08 17:22:45 +0000980 - ``-fsanitize=nonnull-attribute``: Passing null pointer as a function
981 parameter which is declared to never be null.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000982 - ``-fsanitize=null``: Use of a null pointer or creation of a null
983 reference.
984 - ``-fsanitize=object-size``: An attempt to use bytes which the
985 optimizer can determine are not part of the object being
986 accessed. The sizes of objects are determined using
987 ``__builtin_object_size``, and consequently may be able to detect
988 more problems at higher optimization levels.
989 - ``-fsanitize=return``: In C++, reaching the end of a
990 value-returning function without returning a value.
Alexey Samsonovde443c52014-08-13 00:26:40 +0000991 - ``-fsanitize=returns-nonnull-attribute``: Returning null pointer
992 from a function which is declared to never return null.
Sean Silvabf9b4cd2012-12-13 01:10:46 +0000993 - ``-fsanitize=shift``: Shift operators where the amount shifted is
994 greater or equal to the promoted bit-width of the left hand side
995 or less than zero, or where the left hand side is negative. For a
996 signed left shift, also checks for signed overflow in C, and for
997 unsigned overflow in C++.
998 - ``-fsanitize=signed-integer-overflow``: Signed integer overflow,
999 including all the checks added by ``-ftrapv``, and checking for
1000 overflow in signed division (``INT_MIN / -1``).
1001 - ``-fsanitize=unreachable``: If control flow reaches
1002 ``__builtin_unreachable``.
1003 - ``-fsanitize=unsigned-integer-overflow``: Unsigned integer
1004 overflows.
1005 - ``-fsanitize=vla-bound``: A variable-length array whose bound
1006 does not evaluate to a positive value.
1007 - ``-fsanitize=vptr``: Use of an object whose vptr indicates that
1008 it is of the wrong dynamic type, or that its lifetime has not
1009 begun or has ended. Incompatible with ``-fno-rtti``.
1010
Alexey Samsonov2de68332013-08-07 08:23:32 +00001011 You can turn off or modify checks for certain source files, functions
1012 or even variables by providing a special file:
1013
1014 - ``-fsanitize-blacklist=/path/to/blacklist/file``: disable or modify
1015 sanitizer checks for objects listed in the file. See
1016 :doc:`SanitizerSpecialCaseList` for file format description.
1017 - ``-fno-sanitize-blacklist``: don't use blacklist file, if it was
1018 specified earlier in the command line.
1019
Evgeniy Stepanov17d55902012-12-21 10:50:00 +00001020 Extra features of MemorySanitizer (require explicit
1021 ``-fsanitize=memory``):
1022
Evgeniy Stepanov2bfcaab2014-03-20 14:58:36 +00001023 - ``-fsanitize-memory-track-origins[=level]``: Enables origin tracking in
Evgeniy Stepanovacef0e62012-12-21 10:53:20 +00001024 MemorySanitizer. Adds a second section to MemorySanitizer
1025 reports pointing to the heap or stack allocation the
1026 uninitialized bits came from. Slows down execution by additional
1027 1.5x-2x.
Evgeniy Stepanov17d55902012-12-21 10:50:00 +00001028
Evgeniy Stepanov2bfcaab2014-03-20 14:58:36 +00001029 Possible values for level are 0 (off), 1 (default), 2. Level 2 adds more
1030 sections to MemorySanitizer reports describing the order of memory stores
1031 the uninitialized value went through. Beware, this mode may use a lot of
1032 extra memory.
1033
Richard Smithb7f7faa2013-05-29 22:57:31 +00001034 Extra features of UndefinedBehaviorSanitizer:
1035
Richard Smithb7f7faa2013-05-29 22:57:31 +00001036 - ``-fsanitize-undefined-trap-on-error``: Causes traps to be emitted
1037 rather than calls to runtime libraries when a problem is detected.
1038 This option is intended for use in cases where the sanitizer runtime
1039 cannot be used (for instance, when building libc or a kernel module).
1040 This is only compatible with the sanitizers in the ``undefined-trap``
1041 group.
1042
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001043 The ``-fsanitize=`` argument must also be provided when linking, in
Richard Smith83c728b2013-07-19 19:06:48 +00001044 order to link to the appropriate runtime library. When using
1045 ``-fsanitize=vptr`` (or a group that includes it, such as
1046 ``-fsanitize=undefined``) with a C++ program, the link must be
1047 performed by ``clang++``, not ``clang``, in order to link against the
1048 C++-specific parts of the runtime library.
1049
1050 It is not possible to combine more than one of the ``-fsanitize=address``,
1051 ``-fsanitize=thread``, and ``-fsanitize=memory`` checkers in the same
1052 program. The ``-fsanitize=undefined`` checks can be combined with other
1053 sanitizers.
1054
Alexey Samsonov88459522015-01-12 22:39:12 +00001055**-f[no-]sanitize-recover=check1,check2,...**
1056
1057 Controls which checks enabled by ``-fsanitize=`` flag are non-fatal.
1058 If the check is fatal, program will halt after the first error
1059 of this kind is detected and error report is printed.
1060
1061 By default, non-fatal checks are those enabled by UndefinedBehaviorSanitizer,
1062 except for ``-fsanitize=return`` and ``-fsanitize=unreachable``. Some
1063 sanitizers (e.g. :doc:`AddressSanitizer`) may not support recovery,
1064 and always crash the program after the issue is detected.
1065
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001066.. option:: -fno-assume-sane-operator-new
1067
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001068 Don't assume that the C++'s new operator is sane.
1069
1070 This option tells the compiler to do not assume that C++'s global
1071 new operator will always return a pointer that does not alias any
1072 other pointer when the function returns.
1073
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001074.. option:: -ftrap-function=[name]
1075
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001076 Instruct code generator to emit a function call to the specified
1077 function name for ``__builtin_trap()``.
1078
1079 LLVM code generator translates ``__builtin_trap()`` to a trap
1080 instruction if it is supported by the target ISA. Otherwise, the
1081 builtin is translated into a call to ``abort``. If this option is
1082 set, then the code generator will always lower the builtin to a call
1083 to the specified function regardless of whether the target ISA has a
1084 trap instruction. This option is useful for environments (e.g.
1085 deeply embedded) where a trap cannot be properly handled, or when
1086 some custom behavior is desired.
1087
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001088.. option:: -ftls-model=[model]
1089
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001090 Select which TLS model to use.
1091
1092 Valid values are: ``global-dynamic``, ``local-dynamic``,
1093 ``initial-exec`` and ``local-exec``. The default value is
1094 ``global-dynamic``. The compiler may use a different model if the
1095 selected model is not supported by the target, or if a more
1096 efficient model can be used. The TLS model can be overridden per
1097 variable using the ``tls_model`` attribute.
1098
Silviu Barangaf9671dd2013-10-21 10:54:53 +00001099.. option:: -mhwdiv=[values]
1100
1101 Select the ARM modes (arm or thumb) that support hardware division
1102 instructions.
1103
1104 Valid values are: ``arm``, ``thumb`` and ``arm,thumb``.
1105 This option is used to indicate which mode (arm or thumb) supports
1106 hardware division instructions. This only applies to the ARM
1107 architecture.
1108
Bernard Ogden18b57012013-10-29 09:47:51 +00001109.. option:: -m[no-]crc
1110
1111 Enable or disable CRC instructions.
1112
1113 This option is used to indicate whether CRC instructions are to
1114 be generated. This only applies to the ARM architecture.
1115
1116 CRC instructions are enabled by default on ARMv8.
1117
Amara Emerson05d816d2014-01-24 15:15:27 +00001118.. option:: -mgeneral-regs-only
Amara Emerson04e2ecf2014-01-23 15:48:30 +00001119
1120 Generate code which only uses the general purpose registers.
1121
1122 This option restricts the generated code to use general registers
1123 only. This only applies to the AArch64 architecture.
1124
Fariborz Jahanianbcd82af2014-08-05 18:37:48 +00001125**-f[no-]max-unknown-pointer-align=[number]**
1126 Instruct the code generator to not enforce a higher alignment than the given
1127 number (of bytes) when accessing memory via an opaque pointer or reference.
1128 This cap is ignored when directly accessing a variable or when the pointee
1129 type has an explicit “aligned” attribute.
1130
1131 The value should usually be determined by the properties of the system allocator.
1132 Some builtin types, especially vector types, have very high natural alignments;
1133 when working with values of those types, Clang usually wants to use instructions
1134 that take advantage of that alignment. However, many system allocators do
1135 not promise to return memory that is more than 8-byte or 16-byte-aligned. Use
1136 this option to limit the alignment that the compiler can assume for an arbitrary
1137 pointer, which may point onto the heap.
1138
1139 This option does not affect the ABI alignment of types; the layout of structs and
1140 unions and the value returned by the alignof operator remain the same.
1141
1142 This option can be overridden on a case-by-case basis by putting an explicit
1143 “aligned” alignment on a struct, union, or typedef. For example:
1144
1145 .. code-block:: console
1146
1147 #include <immintrin.h>
1148 // Make an aligned typedef of the AVX-512 16-int vector type.
1149 typedef __v16si __aligned_v16si __attribute__((aligned(64)));
1150
1151 void initialize_vector(__aligned_v16si *v) {
1152 // The compiler may assume that ‘v’ is 64-byte aligned, regardless of the
1153 // value of -fmax-unknown-pointer-align.
1154 }
1155
Silviu Barangaf9671dd2013-10-21 10:54:53 +00001156
Bob Wilson3f2ed172014-06-17 00:45:30 +00001157Profile Guided Optimization
1158---------------------------
1159
1160Profile information enables better optimization. For example, knowing that a
1161branch is taken very frequently helps the compiler make better decisions when
1162ordering basic blocks. Knowing that a function ``foo`` is called more
1163frequently than another function ``bar`` helps the inliner.
1164
1165Clang supports profile guided optimization with two different kinds of
1166profiling. A sampling profiler can generate a profile with very low runtime
1167overhead, or you can build an instrumented version of the code that collects
1168more detailed profile information. Both kinds of profiles can provide execution
1169counts for instructions in the code and information on branches taken and
1170function invocation.
1171
1172Regardless of which kind of profiling you use, be careful to collect profiles
1173by running your code with inputs that are representative of the typical
1174behavior. Code that is not exercised in the profile will be optimized as if it
1175is unimportant, and the compiler may make poor optimization choices for code
1176that is disproportionately used while profiling.
1177
1178Using Sampling Profilers
1179^^^^^^^^^^^^^^^^^^^^^^^^
Diego Novilloa5256bf2014-04-23 15:21:07 +00001180
1181Sampling profilers are used to collect runtime information, such as
1182hardware counters, while your application executes. They are typically
Diego Novillo8ebff322014-04-23 15:21:20 +00001183very efficient and do not incur a large runtime overhead. The
Diego Novilloa5256bf2014-04-23 15:21:07 +00001184sample data collected by the profiler can be used during compilation
Diego Novillo8ebff322014-04-23 15:21:20 +00001185to determine what the most executed areas of the code are.
Diego Novilloa5256bf2014-04-23 15:21:07 +00001186
Diego Novilloa5256bf2014-04-23 15:21:07 +00001187Using the data from a sample profiler requires some changes in the way
1188a program is built. Before the compiler can use profiling information,
1189the code needs to execute under the profiler. The following is the
1190usual build cycle when using sample profilers for optimization:
1191
11921. Build the code with source line table information. You can use all the
1193 usual build flags that you always build your application with. The only
Diego Novillo8ebff322014-04-23 15:21:20 +00001194 requirement is that you add ``-gline-tables-only`` or ``-g`` to the
Diego Novilloa5256bf2014-04-23 15:21:07 +00001195 command line. This is important for the profiler to be able to map
1196 instructions back to source line locations.
1197
1198 .. code-block:: console
1199
1200 $ clang++ -O2 -gline-tables-only code.cc -o code
1201
12022. Run the executable under a sampling profiler. The specific profiler
1203 you use does not really matter, as long as its output can be converted
1204 into the format that the LLVM optimizer understands. Currently, there
1205 exists a conversion tool for the Linux Perf profiler
1206 (https://perf.wiki.kernel.org/), so these examples assume that you
1207 are using Linux Perf to profile your code.
1208
1209 .. code-block:: console
1210
1211 $ perf record -b ./code
1212
1213 Note the use of the ``-b`` flag. This tells Perf to use the Last Branch
1214 Record (LBR) to record call chains. While this is not strictly required,
1215 it provides better call information, which improves the accuracy of
1216 the profile data.
1217
12183. Convert the collected profile data to LLVM's sample profile format.
1219 This is currently supported via the AutoFDO converter ``create_llvm_prof``.
1220 It is available at http://github.com/google/autofdo. Once built and
1221 installed, you can convert the ``perf.data`` file to LLVM using
1222 the command:
1223
1224 .. code-block:: console
1225
1226 $ create_llvm_prof --binary=./code --out=code.prof
1227
Diego Novillo9e430842014-04-23 15:21:23 +00001228 This will read ``perf.data`` and the binary file ``./code`` and emit
Diego Novilloa5256bf2014-04-23 15:21:07 +00001229 the profile data in ``code.prof``. Note that if you ran ``perf``
1230 without the ``-b`` flag, you need to use ``--use_lbr=false`` when
1231 calling ``create_llvm_prof``.
1232
12334. Build the code again using the collected profile. This step feeds
1234 the profile back to the optimizers. This should result in a binary
Diego Novillo8ebff322014-04-23 15:21:20 +00001235 that executes faster than the original one. Note that you are not
1236 required to build the code with the exact same arguments that you
1237 used in the first step. The only requirement is that you build the code
1238 with ``-gline-tables-only`` and ``-fprofile-sample-use``.
Diego Novilloa5256bf2014-04-23 15:21:07 +00001239
1240 .. code-block:: console
1241
1242 $ clang++ -O2 -gline-tables-only -fprofile-sample-use=code.prof code.cc -o code
1243
1244
1245Sample Profile Format
Bob Wilson3f2ed172014-06-17 00:45:30 +00001246"""""""""""""""""""""
Diego Novilloa5256bf2014-04-23 15:21:07 +00001247
1248If you are not using Linux Perf to collect profiles, you will need to
1249write a conversion tool from your profiler to LLVM's format. This section
1250explains the file format expected by the backend.
1251
1252Sample profiles are written as ASCII text. The file is divided into sections,
1253which correspond to each of the functions executed at runtime. Each
1254section has the following format (taken from
1255https://github.com/google/autofdo/blob/master/profile_writer.h):
1256
1257.. code-block:: console
1258
1259 function1:total_samples:total_head_samples
1260 offset1[.discriminator]: number_of_samples [fn1:num fn2:num ... ]
1261 offset2[.discriminator]: number_of_samples [fn3:num fn4:num ... ]
1262 ...
1263 offsetN[.discriminator]: number_of_samples [fn5:num fn6:num ... ]
1264
Diego Novillo9e430842014-04-23 15:21:23 +00001265The file may contain blank lines between sections and within a
Diego Novillo8ebff322014-04-23 15:21:20 +00001266section. However, the spacing within a single line is fixed. Additional
1267spaces will result in an error while reading the file.
1268
Diego Novilloa5256bf2014-04-23 15:21:07 +00001269Function names must be mangled in order for the profile loader to
1270match them in the current translation unit. The two numbers in the
1271function header specify how many total samples were accumulated in the
1272function (first number), and the total number of samples accumulated
Diego Novillo8ebff322014-04-23 15:21:20 +00001273in the prologue of the function (second number). This head sample
1274count provides an indicator of how frequently the function is invoked.
Diego Novilloa5256bf2014-04-23 15:21:07 +00001275
1276Each sampled line may contain several items. Some are optional (marked
1277below):
1278
1279a. Source line offset. This number represents the line number
1280 in the function where the sample was collected. The line number is
1281 always relative to the line where symbol of the function is
1282 defined. So, if the function has its header at line 280, the offset
1283 13 is at line 293 in the file.
1284
Diego Novillo897c59c2014-04-23 15:21:21 +00001285 Note that this offset should never be a negative number. This could
1286 happen in cases like macros. The debug machinery will register the
1287 line number at the point of macro expansion. So, if the macro was
1288 expanded in a line before the start of the function, the profile
1289 converter should emit a 0 as the offset (this means that the optimizers
1290 will not be able to associate a meaningful weight to the instructions
1291 in the macro).
1292
Diego Novilloa5256bf2014-04-23 15:21:07 +00001293b. [OPTIONAL] Discriminator. This is used if the sampled program
1294 was compiled with DWARF discriminator support
Diego Novillo8ebff322014-04-23 15:21:20 +00001295 (http://wiki.dwarfstd.org/index.php?title=Path_Discriminators).
Diego Novillo897c59c2014-04-23 15:21:21 +00001296 DWARF discriminators are unsigned integer values that allow the
1297 compiler to distinguish between multiple execution paths on the
1298 same source line location.
Diego Novilloa5256bf2014-04-23 15:21:07 +00001299
Diego Novillo8ebff322014-04-23 15:21:20 +00001300 For example, consider the line of code ``if (cond) foo(); else bar();``.
1301 If the predicate ``cond`` is true 80% of the time, then the edge
1302 into function ``foo`` should be considered to be taken most of the
1303 time. But both calls to ``foo`` and ``bar`` are at the same source
1304 line, so a sample count at that line is not sufficient. The
1305 compiler needs to know which part of that line is taken more
1306 frequently.
1307
1308 This is what discriminators provide. In this case, the calls to
1309 ``foo`` and ``bar`` will be at the same line, but will have
1310 different discriminator values. This allows the compiler to correctly
1311 set edge weights into ``foo`` and ``bar``.
1312
1313c. Number of samples. This is an integer quantity representing the
1314 number of samples collected by the profiler at this source
1315 location.
Diego Novilloa5256bf2014-04-23 15:21:07 +00001316
1317d. [OPTIONAL] Potential call targets and samples. If present, this
1318 line contains a call instruction. This models both direct and
Diego Novilloa5256bf2014-04-23 15:21:07 +00001319 number of samples. For example,
1320
1321 .. code-block:: console
1322
1323 130: 7 foo:3 bar:2 baz:7
1324
1325 The above means that at relative line offset 130 there is a call
Diego Novillo8ebff322014-04-23 15:21:20 +00001326 instruction that calls one of ``foo()``, ``bar()`` and ``baz()``,
1327 with ``baz()`` being the relatively more frequently called target.
Diego Novilloa5256bf2014-04-23 15:21:07 +00001328
1329
Bob Wilson3f2ed172014-06-17 00:45:30 +00001330Profiling with Instrumentation
1331^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1332
1333Clang also supports profiling via instrumentation. This requires building a
1334special instrumented version of the code and has some runtime
1335overhead during the profiling, but it provides more detailed results than a
1336sampling profiler. It also provides reproducible results, at least to the
1337extent that the code behaves consistently across runs.
1338
1339Here are the steps for using profile guided optimization with
1340instrumentation:
1341
13421. Build an instrumented version of the code by compiling and linking with the
1343 ``-fprofile-instr-generate`` option.
1344
1345 .. code-block:: console
1346
1347 $ clang++ -O2 -fprofile-instr-generate code.cc -o code
1348
13492. Run the instrumented executable with inputs that reflect the typical usage.
1350 By default, the profile data will be written to a ``default.profraw`` file
1351 in the current directory. You can override that default by setting the
1352 ``LLVM_PROFILE_FILE`` environment variable to specify an alternate file.
1353 Any instance of ``%p`` in that file name will be replaced by the process
1354 ID, so that you can easily distinguish the profile output from multiple
1355 runs.
1356
1357 .. code-block:: console
1358
1359 $ LLVM_PROFILE_FILE="code-%p.profraw" ./code
1360
13613. Combine profiles from multiple runs and convert the "raw" profile format to
1362 the input expected by clang. Use the ``merge`` command of the llvm-profdata
1363 tool to do this.
1364
1365 .. code-block:: console
1366
1367 $ llvm-profdata merge -output=code.profdata code-*.profraw
1368
1369 Note that this step is necessary even when there is only one "raw" profile,
1370 since the merge operation also changes the file format.
1371
13724. Build the code again using the ``-fprofile-instr-use`` option to specify the
1373 collected profile data.
1374
1375 .. code-block:: console
1376
1377 $ clang++ -O2 -fprofile-instr-use=code.profdata code.cc -o code
1378
1379 You can repeat step 4 as often as you like without regenerating the
1380 profile. As you make changes to your code, clang may no longer be able to
1381 use the profile data. It will warn you when this happens.
1382
1383
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001384Controlling Size of Debug Information
1385-------------------------------------
1386
1387Debug info kind generated by Clang can be set by one of the flags listed
1388below. If multiple flags are present, the last one is used.
1389
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001390.. option:: -g0
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001391
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001392 Don't generate any debug info (default).
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001393
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001394.. option:: -gline-tables-only
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001395
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001396 Generate line number tables only.
1397
1398 This kind of debug info allows to obtain stack traces with function names,
1399 file names and line numbers (by such tools as ``gdb`` or ``addr2line``). It
1400 doesn't contain any other data (e.g. description of local variables or
1401 function parameters).
1402
Adrian Prantl4ad03dc2014-06-13 23:35:54 +00001403.. option:: -fstandalone-debug
Adrian Prantl36b80672014-06-13 21:12:31 +00001404
1405 Clang supports a number of optimizations to reduce the size of debug
1406 information in the binary. They work based on the assumption that
1407 the debug type information can be spread out over multiple
1408 compilation units. For instance, Clang will not emit type
1409 definitions for types that are not needed by a module and could be
1410 replaced with a forward declaration. Further, Clang will only emit
1411 type info for a dynamic C++ class in the module that contains the
1412 vtable for the class.
1413
Adrian Prantl4ad03dc2014-06-13 23:35:54 +00001414 The **-fstandalone-debug** option turns off these optimizations.
Adrian Prantl36b80672014-06-13 21:12:31 +00001415 This is useful when working with 3rd-party libraries that don't come
1416 with debug information. Note that Clang will never emit type
1417 information for types that are not referenced at all by the program.
1418
Adrian Prantl4ad03dc2014-06-13 23:35:54 +00001419.. option:: -fno-standalone-debug
1420
1421 On Darwin **-fstandalone-debug** is enabled by default. The
1422 **-fno-standalone-debug** option can be used to get to turn on the
1423 vtable-based optimization described above.
1424
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001425.. option:: -g
1426
1427 Generate complete debug info.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001428
Dmitri Gribenkoa7d16ce2013-04-10 15:35:17 +00001429Comment Parsing Options
Dmitri Gribenko28bfb482014-03-06 16:32:09 +00001430-----------------------
Dmitri Gribenkoa7d16ce2013-04-10 15:35:17 +00001431
1432Clang parses Doxygen and non-Doxygen style documentation comments and attaches
1433them to the appropriate declaration nodes. By default, it only parses
1434Doxygen-style comments and ignores ordinary comments starting with ``//`` and
1435``/*``.
1436
Dmitri Gribenko28bfb482014-03-06 16:32:09 +00001437.. option:: -Wdocumentation
1438
1439 Emit warnings about use of documentation comments. This warning group is off
1440 by default.
1441
1442 This includes checking that ``\param`` commands name parameters that actually
1443 present in the function signature, checking that ``\returns`` is used only on
1444 functions that actually return a value etc.
1445
1446.. option:: -Wno-documentation-unknown-command
1447
1448 Don't warn when encountering an unknown Doxygen command.
1449
Dmitri Gribenkoa7d16ce2013-04-10 15:35:17 +00001450.. option:: -fparse-all-comments
1451
1452 Parse all comments as documentation comments (including ordinary comments
1453 starting with ``//`` and ``/*``).
1454
Dmitri Gribenko28bfb482014-03-06 16:32:09 +00001455.. option:: -fcomment-block-commands=[commands]
1456
1457 Define custom documentation commands as block commands. This allows Clang to
1458 construct the correct AST for these custom commands, and silences warnings
1459 about unknown commands. Several commands must be separated by a comma
1460 *without trailing space*; e.g. ``-fcomment-block-commands=foo,bar`` defines
1461 custom commands ``\foo`` and ``\bar``.
1462
1463 It is also possible to use ``-fcomment-block-commands`` several times; e.g.
1464 ``-fcomment-block-commands=foo -fcomment-block-commands=bar`` does the same
1465 as above.
1466
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001467.. _c:
1468
1469C Language Features
1470===================
1471
1472The support for standard C in clang is feature-complete except for the
1473C99 floating-point pragmas.
1474
1475Extensions supported by clang
1476-----------------------------
1477
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001478See :doc:`LanguageExtensions`.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001479
1480Differences between various standard modes
1481------------------------------------------
1482
1483clang supports the -std option, which changes what language mode clang
Richard Smithab506ad2014-10-20 23:26:58 +00001484uses. The supported modes for C are c89, gnu89, c94, c99, gnu99, c11,
1485gnu11, and various aliases for those modes. If no -std option is
1486specified, clang defaults to gnu11 mode. Many C99 and C11 features are
1487supported in earlier modes as a conforming extension, with a warning. Use
1488``-pedantic-errors`` to request an error if a feature from a later standard
1489revision is used in an earlier mode.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001490
1491Differences between all ``c*`` and ``gnu*`` modes:
1492
1493- ``c*`` modes define "``__STRICT_ANSI__``".
1494- Target-specific defines not prefixed by underscores, like "linux",
1495 are defined in ``gnu*`` modes.
1496- Trigraphs default to being off in ``gnu*`` modes; they can be enabled by
1497 the -trigraphs option.
1498- The parser recognizes "asm" and "typeof" as keywords in ``gnu*`` modes;
1499 the variants "``__asm__``" and "``__typeof__``" are recognized in all
1500 modes.
1501- The Apple "blocks" extension is recognized by default in ``gnu*`` modes
1502 on some platforms; it can be enabled in any mode with the "-fblocks"
1503 option.
1504- Arrays that are VLA's according to the standard, but which can be
1505 constant folded by the frontend are treated as fixed size arrays.
1506 This occurs for things like "int X[(1, 2)];", which is technically a
1507 VLA. ``c*`` modes are strictly compliant and treat these as VLAs.
1508
1509Differences between ``*89`` and ``*99`` modes:
1510
1511- The ``*99`` modes default to implementing "inline" as specified in C99,
1512 while the ``*89`` modes implement the GNU version. This can be
1513 overridden for individual functions with the ``__gnu_inline__``
1514 attribute.
1515- Digraphs are not recognized in c89 mode.
1516- The scope of names defined inside a "for", "if", "switch", "while",
1517 or "do" statement is different. (example: "``if ((struct x {int
1518 x;}*)0) {}``".)
1519- ``__STDC_VERSION__`` is not defined in ``*89`` modes.
1520- "inline" is not recognized as a keyword in c89 mode.
1521- "restrict" is not recognized as a keyword in ``*89`` modes.
1522- Commas are allowed in integer constant expressions in ``*99`` modes.
1523- Arrays which are not lvalues are not implicitly promoted to pointers
1524 in ``*89`` modes.
1525- Some warnings are different.
1526
Richard Smithab506ad2014-10-20 23:26:58 +00001527Differences between ``*99`` and ``*11`` modes:
1528
1529- Warnings for use of C11 features are disabled.
1530- ``__STDC_VERSION__`` is defined to ``201112L`` rather than ``199901L``.
1531
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001532c94 mode is identical to c89 mode except that digraphs are enabled in
1533c94 mode (FIXME: And ``__STDC_VERSION__`` should be defined!).
1534
1535GCC extensions not implemented yet
1536----------------------------------
1537
1538clang tries to be compatible with gcc as much as possible, but some gcc
1539extensions are not implemented yet:
1540
1541- clang does not support #pragma weak (`bug
1542 3679 <http://llvm.org/bugs/show_bug.cgi?id=3679>`_). Due to the uses
1543 described in the bug, this is likely to be implemented at some point,
1544 at least partially.
1545- clang does not support decimal floating point types (``_Decimal32`` and
1546 friends) or fixed-point types (``_Fract`` and friends); nobody has
1547 expressed interest in these features yet, so it's hard to say when
1548 they will be implemented.
1549- clang does not support nested functions; this is a complex feature
1550 which is infrequently used, so it is unlikely to be implemented
1551 anytime soon. In C++11 it can be emulated by assigning lambda
1552 functions to local variables, e.g:
1553
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001554 .. code-block:: cpp
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001555
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001556 auto const local_function = [&](int parameter) {
1557 // Do something
1558 };
1559 ...
1560 local_function(1);
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001561
1562- clang does not support global register variables; this is unlikely to
1563 be implemented soon because it requires additional LLVM backend
1564 support.
1565- clang does not support static initialization of flexible array
1566 members. This appears to be a rarely used extension, but could be
1567 implemented pending user demand.
1568- clang does not support
1569 ``__builtin_va_arg_pack``/``__builtin_va_arg_pack_len``. This is
1570 used rarely, but in some potentially interesting places, like the
1571 glibc headers, so it may be implemented pending user demand. Note
1572 that because clang pretends to be like GCC 4.2, and this extension
1573 was introduced in 4.3, the glibc headers will not try to use this
1574 extension with clang at the moment.
1575- clang does not support the gcc extension for forward-declaring
1576 function parameters; this has not shown up in any real-world code
1577 yet, though, so it might never be implemented.
1578
1579This is not a complete list; if you find an unsupported extension
1580missing from this list, please send an e-mail to cfe-dev. This list
1581currently excludes C++; see :ref:`C++ Language Features <cxx>`. Also, this
1582list does not include bugs in mostly-implemented features; please see
1583the `bug
1584tracker <http://llvm.org/bugs/buglist.cgi?quicksearch=product%3Aclang+component%3A-New%2BBugs%2CAST%2CBasic%2CDriver%2CHeaders%2CLLVM%2BCodeGen%2Cparser%2Cpreprocessor%2CSemantic%2BAnalyzer>`_
1585for known existing bugs (FIXME: Is there a section for bug-reporting
1586guidelines somewhere?).
1587
1588Intentionally unsupported GCC extensions
1589----------------------------------------
1590
1591- clang does not support the gcc extension that allows variable-length
1592 arrays in structures. This is for a few reasons: one, it is tricky to
1593 implement, two, the extension is completely undocumented, and three,
1594 the extension appears to be rarely used. Note that clang *does*
1595 support flexible array members (arrays with a zero or unspecified
1596 size at the end of a structure).
1597- clang does not have an equivalent to gcc's "fold"; this means that
1598 clang doesn't accept some constructs gcc might accept in contexts
1599 where a constant expression is required, like "x-x" where x is a
1600 variable.
1601- clang does not support ``__builtin_apply`` and friends; this extension
1602 is extremely obscure and difficult to implement reliably.
1603
1604.. _c_ms:
1605
1606Microsoft extensions
1607--------------------
1608
1609clang has some experimental support for extensions from Microsoft Visual
Richard Smith48d1b652013-12-12 02:42:17 +00001610C++; to enable it, use the ``-fms-extensions`` command-line option. This is
Reid Klecknerd128f8a2013-09-20 17:51:00 +00001611the default for Windows targets. Note that the support is incomplete.
Richard Smith48d1b652013-12-12 02:42:17 +00001612Some constructs such as ``dllexport`` on classes are ignored with a warning,
Reid Klecknerd128f8a2013-09-20 17:51:00 +00001613and others such as `Microsoft IDL annotations
Reid Klecknereb248d72013-09-20 17:54:39 +00001614<http://msdn.microsoft.com/en-us/library/8tesw2eh.aspx>`_ are silently
Reid Klecknerd128f8a2013-09-20 17:51:00 +00001615ignored.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001616
Richard Smith48d1b652013-12-12 02:42:17 +00001617clang has a ``-fms-compatibility`` flag that makes clang accept enough
Reid Kleckner993e72a2013-09-20 17:04:25 +00001618invalid C++ to be able to parse most Microsoft headers. For example, it
1619allows `unqualified lookup of dependent base class members
Reid Klecknereb248d72013-09-20 17:54:39 +00001620<http://clang.llvm.org/compatibility.html#dep_lookup_bases>`_, which is
1621a common compatibility issue with clang. This flag is enabled by default
Reid Kleckner993e72a2013-09-20 17:04:25 +00001622for Windows targets.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001623
Richard Smith48d1b652013-12-12 02:42:17 +00001624``-fdelayed-template-parsing`` lets clang delay parsing of function template
1625definitions until the end of a translation unit. This flag is enabled by
1626default for Windows targets.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001627
1628- clang allows setting ``_MSC_VER`` with ``-fmsc-version=``. It defaults to
Reid Kleckner1784d2f2013-09-20 18:01:52 +00001629 1700 which is the same as Visual C/C++ 2012. Any number is supported
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001630 and can greatly affect what Windows SDK and c++stdlib headers clang
Reid Kleckner1784d2f2013-09-20 18:01:52 +00001631 can compile.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001632- clang does not support the Microsoft extension where anonymous record
1633 members can be declared using user defined typedefs.
Reid Kleckner1784d2f2013-09-20 18:01:52 +00001634- clang supports the Microsoft ``#pragma pack`` feature for controlling
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001635 record layout. GCC also contains support for this feature, however
1636 where MSVC and GCC are incompatible clang follows the MSVC
1637 definition.
Reid Kleckner78fb10f2013-05-08 14:40:51 +00001638- clang supports the Microsoft ``#pragma comment(lib, "foo.lib")`` feature for
1639 automatically linking against the specified library. Currently this feature
1640 only works with the Visual C++ linker.
1641- clang supports the Microsoft ``#pragma comment(linker, "/flag:foo")`` feature
1642 for adding linker flags to COFF object files. The user is responsible for
1643 ensuring that the linker understands the flags.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001644- clang defaults to C++11 for Windows targets.
1645
1646.. _cxx:
1647
1648C++ Language Features
1649=====================
1650
1651clang fully implements all of standard C++98 except for exported
Richard Smith48d1b652013-12-12 02:42:17 +00001652templates (which were removed in C++11), and all of standard C++11
1653and the current draft standard for C++1y.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001654
1655Controlling implementation limits
1656---------------------------------
1657
Richard Smithb3a14522013-02-22 01:59:51 +00001658.. option:: -fbracket-depth=N
1659
1660 Sets the limit for nested parentheses, brackets, and braces to N. The
1661 default is 256.
1662
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001663.. option:: -fconstexpr-depth=N
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001664
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001665 Sets the limit for recursive constexpr function invocations to N. The
1666 default is 512.
1667
1668.. option:: -ftemplate-depth=N
1669
1670 Sets the limit for recursively nested template instantiations to N. The
Richard Smith79c927b2013-11-06 19:31:51 +00001671 default is 256.
1672
1673.. option:: -foperator-arrow-depth=N
1674
1675 Sets the limit for iterative calls to 'operator->' functions to N. The
1676 default is 256.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001677
1678.. _objc:
1679
1680Objective-C Language Features
1681=============================
1682
1683.. _objcxx:
1684
1685Objective-C++ Language Features
1686===============================
1687
1688
1689.. _target_features:
1690
1691Target-Specific Features and Limitations
1692========================================
1693
1694CPU Architectures Features and Limitations
1695------------------------------------------
1696
1697X86
1698^^^
1699
1700The support for X86 (both 32-bit and 64-bit) is considered stable on
Nico Weberab88f0b2014-03-07 18:09:57 +00001701Darwin (Mac OS X), Linux, FreeBSD, and Dragonfly BSD: it has been tested
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001702to correctly compile many large C, C++, Objective-C, and Objective-C++
1703codebases.
1704
Richard Smith48d1b652013-12-12 02:42:17 +00001705On ``x86_64-mingw32``, passing i128(by value) is incompatible with the
David Woodhouseddf89852014-01-23 14:32:46 +00001706Microsoft x64 calling convention. You might need to tweak
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001707``WinX86_64ABIInfo::classify()`` in lib/CodeGen/TargetInfo.cpp.
1708
David Woodhouseddf89852014-01-23 14:32:46 +00001709For the X86 target, clang supports the :option:`-m16` command line
1710argument which enables 16-bit code output. This is broadly similar to
1711using ``asm(".code16gcc")`` with the GNU toolchain. The generated code
1712and the ABI remains 32-bit but the assembler emits instructions
1713appropriate for a CPU running in 16-bit mode, with address-size and
1714operand-size prefixes to enable 32-bit addressing and operations.
1715
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001716ARM
1717^^^
1718
1719The support for ARM (specifically ARMv6 and ARMv7) is considered stable
1720on Darwin (iOS): it has been tested to correctly compile many large C,
1721C++, Objective-C, and Objective-C++ codebases. Clang only supports a
1722limited number of ARM architectures. It does not yet fully support
1723ARMv5, for example.
1724
Roman Divacky786d32e2013-09-11 17:12:49 +00001725PowerPC
1726^^^^^^^
1727
1728The support for PowerPC (especially PowerPC64) is considered stable
1729on Linux and FreeBSD: it has been tested to correctly compile many
1730large C and C++ codebases. PowerPC (32bit) is still missing certain
1731features (e.g. PIC code on ELF platforms).
1732
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001733Other platforms
1734^^^^^^^^^^^^^^^
1735
Roman Divacky786d32e2013-09-11 17:12:49 +00001736clang currently contains some support for other architectures (e.g. Sparc);
1737however, significant pieces of code generation are still missing, and they
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001738haven't undergone significant testing.
1739
1740clang contains limited support for the MSP430 embedded processor, but
1741both the clang support and the LLVM backend support are highly
1742experimental.
1743
1744Other platforms are completely unsupported at the moment. Adding the
1745minimal support needed for parsing and semantic analysis on a new
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001746platform is quite easy; see ``lib/Basic/Targets.cpp`` in the clang source
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001747tree. This level of support is also sufficient for conversion to LLVM IR
1748for simple programs. Proper support for conversion to LLVM IR requires
Dmitri Gribenko1436ff22012-12-19 22:06:59 +00001749adding code to ``lib/CodeGen/CGCall.cpp`` at the moment; this is likely to
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001750change soon, though. Generating assembly requires a suitable LLVM
1751backend.
1752
1753Operating System Features and Limitations
1754-----------------------------------------
1755
Nico Weberab88f0b2014-03-07 18:09:57 +00001756Darwin (Mac OS X)
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001757^^^^^^^^^^^^^^^^^
1758
Nico Weberc7cb9402014-03-07 18:11:40 +00001759Thread Sanitizer is not supported.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001760
1761Windows
1762^^^^^^^
1763
Richard Smith48d1b652013-12-12 02:42:17 +00001764Clang has experimental support for targeting "Cygming" (Cygwin / MinGW)
1765platforms.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001766
Reid Kleckner725b7b32013-09-05 21:29:35 +00001767See also :ref:`Microsoft Extensions <c_ms>`.
Sean Silvabf9b4cd2012-12-13 01:10:46 +00001768
1769Cygwin
1770""""""
1771
1772Clang works on Cygwin-1.7.
1773
1774MinGW32
1775"""""""
1776
1777Clang works on some mingw32 distributions. Clang assumes directories as
1778below;
1779
1780- ``C:/mingw/include``
1781- ``C:/mingw/lib``
1782- ``C:/mingw/lib/gcc/mingw32/4.[3-5].0/include/c++``
1783
1784On MSYS, a few tests might fail.
1785
1786MinGW-w64
1787"""""""""
1788
1789For 32-bit (i686-w64-mingw32), and 64-bit (x86\_64-w64-mingw32), Clang
1790assumes as below;
1791
1792- ``GCC versions 4.5.0 to 4.5.3, 4.6.0 to 4.6.2, or 4.7.0 (for the C++ header search path)``
1793- ``some_directory/bin/gcc.exe``
1794- ``some_directory/bin/clang.exe``
1795- ``some_directory/bin/clang++.exe``
1796- ``some_directory/bin/../include/c++/GCC_version``
1797- ``some_directory/bin/../include/c++/GCC_version/x86_64-w64-mingw32``
1798- ``some_directory/bin/../include/c++/GCC_version/i686-w64-mingw32``
1799- ``some_directory/bin/../include/c++/GCC_version/backward``
1800- ``some_directory/bin/../x86_64-w64-mingw32/include``
1801- ``some_directory/bin/../i686-w64-mingw32/include``
1802- ``some_directory/bin/../include``
1803
1804This directory layout is standard for any toolchain you will find on the
1805official `MinGW-w64 website <http://mingw-w64.sourceforge.net>`_.
1806
1807Clang expects the GCC executable "gcc.exe" compiled for
1808``i686-w64-mingw32`` (or ``x86_64-w64-mingw32``) to be present on PATH.
1809
1810`Some tests might fail <http://llvm.org/bugs/show_bug.cgi?id=9072>`_ on
1811``x86_64-w64-mingw32``.
Hans Wennborg2a6e6bc2013-10-10 01:15:16 +00001812
1813.. _clang-cl:
1814
1815clang-cl
1816========
1817
1818clang-cl is an alternative command-line interface to Clang driver, designed for
1819compatibility with the Visual C++ compiler, cl.exe.
1820
1821To enable clang-cl to find system headers, libraries, and the linker when run
1822from the command-line, it should be executed inside a Visual Studio Native Tools
1823Command Prompt or a regular Command Prompt where the environment has been set
1824up using e.g. `vcvars32.bat <http://msdn.microsoft.com/en-us/library/f2ccy3wt.aspx>`_.
1825
1826clang-cl can also be used from inside Visual Studio by using an LLVM Platform
1827Toolset.
1828
1829Command-Line Options
1830--------------------
1831
1832To be compatible with cl.exe, clang-cl supports most of the same command-line
1833options. Those options can start with either ``/`` or ``-``. It also supports
1834some of Clang's core options, such as the ``-W`` options.
1835
1836Options that are known to clang-cl, but not currently supported, are ignored
1837with a warning. For example:
1838
1839 ::
1840
1841 clang-cl.exe: warning: argument unused during compilation: '/Zi'
1842
1843To suppress warnings about unused arguments, use the ``-Qunused-arguments`` option.
1844
1845Options that are not known to clang-cl will cause errors. If they are spelled with a
1846leading ``/``, they will be mistaken for a filename:
1847
1848 ::
1849
1850 clang-cl.exe: error: no such file or directory: '/foobar'
1851
1852Please `file a bug <http://llvm.org/bugs/enter_bug.cgi?product=clang&component=Driver>`_
1853for any valid cl.exe flags that clang-cl does not understand.
1854
1855Execute ``clang-cl /?`` to see a list of supported options:
1856
1857 ::
1858
Hans Wennborg35487d82014-08-04 21:07:58 +00001859 CL.EXE COMPATIBILITY OPTIONS:
1860 /? Display available options
1861 /arch:<value> Set architecture for code generation
1862 /C Don't discard comments when preprocessing
1863 /c Compile only
1864 /D <macro[=value]> Define macro
1865 /EH<value> Exception handling model
1866 /EP Disable linemarker output and preprocess to stdout
1867 /E Preprocess to stdout
1868 /fallback Fall back to cl.exe if clang-cl fails to compile
1869 /FA Output assembly code file during compilation
1870 /Fa<file or directory> Output assembly code to this file during compilation
1871 /Fe<file or directory> Set output executable file or directory (ends in / or \)
1872 /FI <value> Include file before parsing
1873 /Fi<file> Set preprocess output file name
1874 /Fo<file or directory> Set output object file, or directory (ends in / or \)
1875 /GF- Disable string pooling
1876 /GR- Disable emission of RTTI data
1877 /GR Enable emission of RTTI data
1878 /Gw- Don't put each data item in its own section
1879 /Gw Put each data item in its own section
1880 /Gy- Don't put each function in its own section
1881 /Gy Put each function in its own section
1882 /help Display available options
1883 /I <dir> Add directory to include search path
1884 /J Make char type unsigned
1885 /LDd Create debug DLL
1886 /LD Create DLL
1887 /link <options> Forward options to the linker
1888 /MDd Use DLL debug run-time
1889 /MD Use DLL run-time
1890 /MTd Use static debug run-time
1891 /MT Use static run-time
1892 /Ob0 Disable inlining
1893 /Od Disable optimization
1894 /Oi- Disable use of builtin functions
1895 /Oi Enable use of builtin functions
1896 /Os Optimize for size
1897 /Ot Optimize for speed
1898 /Ox Maximum optimization
1899 /Oy- Disable frame pointer omission
1900 /Oy Enable frame pointer omission
1901 /O<n> Optimization level
1902 /P Preprocess to file
1903 /showIncludes Print info about included files to stderr
1904 /TC Treat all source files as C
1905 /Tc <filename> Specify a C source file
1906 /TP Treat all source files as C++
1907 /Tp <filename> Specify a C++ source file
1908 /U <macro> Undefine macro
1909 /vd<value> Control vtordisp placement
1910 /vmb Use a best-case representation method for member pointers
1911 /vmg Use a most-general representation for member pointers
1912 /vmm Set the default most-general representation to multiple inheritance
1913 /vms Set the default most-general representation to single inheritance
1914 /vmv Set the default most-general representation to virtual inheritance
1915 /W0 Disable all warnings
1916 /W1 Enable -Wall
1917 /W2 Enable -Wall
1918 /W3 Enable -Wall
1919 /W4 Enable -Wall
1920 /Wall Enable -Wall
1921 /WX- Do not treat warnings as errors
1922 /WX Treat warnings as errors
1923 /w Disable all warnings
1924 /Zi Enable debug information
1925 /Zp Set the default maximum struct packing alignment to 1
1926 /Zp<value> Specify the default maximum struct packing alignment
1927 /Zs Syntax-check only
1928
1929 OPTIONS:
1930 -### Print (but do not run) the commands to run for this compilation
1931 -fms-compatibility-version=<value>
1932 Dot-separated value representing the Microsoft compiler version
1933 number to report in _MSC_VER (0 = don't define it (default))
1934 -fmsc-version=<value> Microsoft compiler version number to report in _MSC_VER (0 = don't
1935 define it (default))
1936 -fsanitize-blacklist=<value>
1937 Path to blacklist file for sanitizers
1938 -fsanitize=<check> Enable runtime instrumentation for bug detection: address (memory
1939 errors) | thread (race detection) | undefined (miscellaneous
1940 undefined behavior)
1941 -mllvm <value> Additional arguments to forward to LLVM's option processing
1942 -Qunused-arguments Don't emit warning for unused driver arguments
1943 --target=<value> Generate code for the given target
1944 -v Show commands to run and use verbose output
1945 -W<warning> Enable the specified warning
1946 -Xclang <arg> Pass <arg> to the clang compiler
Hans Wennborg2a6e6bc2013-10-10 01:15:16 +00001947
1948The /fallback Option
1949^^^^^^^^^^^^^^^^^^^^
1950
1951When clang-cl is run with the ``/fallback`` option, it will first try to
1952compile files itself. For any file that it fails to compile, it will fall back
1953and try to compile the file by invoking cl.exe.
1954
1955This option is intended to be used as a temporary means to build projects where
1956clang-cl cannot successfully compile all the files. clang-cl may fail to compile
1957a file either because it cannot generate code for some C++ feature, or because
1958it cannot parse some Microsoft language extension.