blob: 41dea299e6b1adc7d6f57be64874b01b2e3b19cf [file] [log] [blame]
Hans Wennborg8f5b44a2019-07-18 11:51:05 +00001========================================
2Clang 10.0.0 (In-Progress) Release Notes
3========================================
Sean Silvafe251442012-12-23 01:19:35 +00004
5.. contents::
6 :local:
7 :depth: 2
8
Hans Wennborg0aa0d912018-09-10 08:51:25 +00009Written by the `LLVM Team <https://llvm.org/>`_
Sean Silvafe251442012-12-23 01:19:35 +000010
11.. warning::
12
Hans Wennborg8f5b44a2019-07-18 11:51:05 +000013 These are in-progress notes for the upcoming Clang 10 release.
Hans Wennborg189f1f32017-02-09 23:26:34 +000014 Release notes for previous releases can be found on
Hans Wennborg0aa0d912018-09-10 08:51:25 +000015 `the Download Page <https://releases.llvm.org/download.html>`_.
Sean Silvafe251442012-12-23 01:19:35 +000016
17Introduction
18============
19
20This document contains the release notes for the Clang C/C++/Objective-C
Hans Wennborg8f5b44a2019-07-18 11:51:05 +000021frontend, part of the LLVM Compiler Infrastructure, release 10.0.0. Here we
Sean Silvafe251442012-12-23 01:19:35 +000022describe the status of Clang in some detail, including major
23improvements from the previous release and new feature work. For the
24general LLVM release notes, see `the LLVM
Hans Wennborg0aa0d912018-09-10 08:51:25 +000025documentation <https://llvm.org/docs/ReleaseNotes.html>`_. All LLVM
Sean Silvafe251442012-12-23 01:19:35 +000026releases may be downloaded from the `LLVM releases web
Hans Wennborg0aa0d912018-09-10 08:51:25 +000027site <https://llvm.org/releases/>`_.
Sean Silvafe251442012-12-23 01:19:35 +000028
Hans Wennborgd878ca82017-08-30 18:35:44 +000029For more information about Clang or LLVM, including information about the
Hans Wennborg0aa0d912018-09-10 08:51:25 +000030latest release, please see the `Clang Web Site <https://clang.llvm.org>`_ or the
31`LLVM Web Site <https://llvm.org>`_.
Sean Silvafe251442012-12-23 01:19:35 +000032
33Note that if you are reading this file from a Subversion checkout or the
34main Clang web page, this document applies to the *next* release, not
35the current one. To see the release notes for a specific release, please
Hans Wennborg0aa0d912018-09-10 08:51:25 +000036see the `releases page <https://llvm.org/releases/>`_.
Sean Silvafe251442012-12-23 01:19:35 +000037
Hans Wennborg8f5b44a2019-07-18 11:51:05 +000038What's New in Clang 10.0.0?
39===========================
Sean Silvafe251442012-12-23 01:19:35 +000040
41Some of the major new features and improvements to Clang are listed
42here. Generic improvements to Clang as a whole or to its underlying
43infrastructure are described first, followed by language-specific
44sections with improvements to Clang's support for those languages.
45
46Major New Features
47------------------
48
Hans Wennborg1fe469a2019-01-16 10:57:02 +000049- ...
Rafael Espindola34970692013-12-12 16:07:11 +000050
Sean Silvafe251442012-12-23 01:19:35 +000051Improvements to Clang's diagnostics
52^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
53
Richard Trieu6541c792019-09-21 02:37:10 +000054- -Wtautological-overlap-compare will warn on negative numbers and non-int
55 types.
Richard Trieu4c05de82019-09-21 03:02:26 +000056- -Wtautological-compare for self comparisons and
57 -Wtautological-overlap-compare will now look through member and array
58 access to determine if two operand expressions are the same.
Richard Trieu8b0d14a2019-10-19 00:57:23 +000059- -Wtautological-bitwise-compare is a new warning group. This group has the
60 current warning which diagnoses the tautological comparison of a bitwise
61 operation and a constant. The group also has the new warning which diagnoses
62 when a bitwise-or with a non-negative value is converted to a bool, since
63 that bool will always be true.
Roman Lebedev61061d62018-04-07 10:39:21 +000064
Erich Keaneb0c78092017-07-26 18:04:45 +000065Non-comprehensive list of changes in this release
66-------------------------------------------------
67
Roman Lebedev536b0ee2019-10-10 09:25:02 +000068* In both C and C++ (C17 ``6.5.6p8``, C++ ``[expr.add]``), pointer arithmetic is
69 only permitted within arrays. In particular, the behavior of a program is not
70 defined if it adds a non-zero offset (or in C, any offset) to a null pointer,
71 or if it forms a null pointer by subtracting an integer from a non-null
72 pointer, and the LLVM optimizer now uses those guarantees for transformations.
73 This may lead to unintended behavior in code that performs these operations.
74 The Undefined Behavior Sanitizer ``-fsanitize=pointer-overflow`` check has
75 been extended to detect these cases, so that code relying on them can be
76 detected and fixed.
77
Craig Topper635d3832019-09-11 23:54:36 +000078- For X86 target, -march=skylake-avx512, -march=icelake-client,
79 -march=icelake-server, -march=cascadelake, -march=cooperlake will default to
80 not using 512-bit zmm registers in vectorized code unless 512-bit intrinsics
81 are used in the source code. 512-bit operations are known to cause the CPUs
82 to run at a lower frequency which can impact performance. This behavior can be
83 changed by passing -mprefer-vector-width=512 on the command line.
Ilya Biryukov88aef522018-12-05 18:32:05 +000084
Sean Silvafe251442012-12-23 01:19:35 +000085New Compiler Flags
86------------------
87
Reid Kleckner5e866e42019-10-10 21:04:25 +000088- The -fgnuc-version= flag now controls the value of ``__GNUC__`` and related
89 macros. This flag does not enable or disable any GCC extensions implemented in
90 Clang. Setting the version to zero causes Clang to leave ``__GNUC__`` and
91 other GNU-namespaced macros, such as ``__GXX_WEAK__``, undefined.
Aaron Ballman2b3bc4c2017-10-21 16:45:08 +000092
Joerg Sonnenbergerc9199682017-07-01 21:36:21 +000093Deprecated Compiler Flags
94-------------------------
95
96The following options are deprecated and ignored. They will be removed in
97future versions of Clang.
98
Craig Topper5a43fdd2019-08-29 18:09:02 +000099- -mmpx used to enable the __MPX__ preprocessor define for the Intel MPX
100 instructions. There were no MPX intrinsics.
101- -mno-mpx used to disable -mmpx and is the default behavior.
102
Hans Wennborgfbb21e02017-07-19 14:14:07 +0000103- ...
Joerg Sonnenbergerc9199682017-07-01 21:36:21 +0000104
Yuka Takahashiba900ab2018-03-07 11:34:02 +0000105Modified Compiler Flags
106-----------------------
107
Eric Christopher030b17d2019-05-14 19:40:42 +0000108- ...
Yuka Takahashiba900ab2018-03-07 11:34:02 +0000109
Tyler Nowickidb2668a2014-06-18 00:51:32 +0000110New Pragmas in Clang
Eugene Zelenkoad5684a2018-05-15 21:45:01 +0000111--------------------
Tyler Nowickidb2668a2014-06-18 00:51:32 +0000112
Hans Wennborg1fe469a2019-01-16 10:57:02 +0000113- ...
Paul Robinsonf9ede1c2016-07-18 17:19:12 +0000114
115Attribute Changes in Clang
116--------------------------
117
Hans Wennborgfbb21e02017-07-19 14:14:07 +0000118- ...
Paul Robinsonf9ede1c2016-07-18 17:19:12 +0000119
Hans Wennborg02dc0002014-08-05 00:21:23 +0000120Windows Support
121---------------
122
Hans Wennborg99c86512019-09-25 11:53:17 +0000123- Previous Clang versions contained a work-around to avoid an issue with the
124 standard library headers in Visual Studio 2019 versions prior to 16.3. This
125 work-around has now been removed, and users of Visual Studio 2019 are
126 encouraged to upgrade to 16.3 or later, otherwise they may see link errors as
127 below:
128
129 .. code-block:: console
130
131 error LNK2005: "bool const std::_Is_integral<int>" (??$_Is_integral@H@std@@3_NB) already defined
132
133
134
Hans Wennborg02dc0002014-08-05 00:21:23 +0000135
Renato Golinf2fcddb2013-12-13 09:27:34 +0000136C Language Changes in Clang
137---------------------------
138
Kristina Brooksc0eb8a92019-06-05 03:47:02 +0000139- ...
Renato Golinf2fcddb2013-12-13 09:27:34 +0000140
Sean Silvafe251442012-12-23 01:19:35 +0000141C11 Feature Support
142^^^^^^^^^^^^^^^^^^^
143
144...
145
146C++ Language Changes in Clang
147-----------------------------
148
Martin Storsjo71decf82019-09-27 12:25:19 +0000149- The behaviour of the `gnu_inline` attribute now matches GCC, for cases
150 where used without the `extern` keyword. As this is a change compared to
151 how it behaved in previous Clang versions, a warning is emitted for this
152 combination.
Richard Smith8eb53c82016-05-05 18:40:37 +0000153
154C++1z Feature Support
Sean Silvafe251442012-12-23 01:19:35 +0000155^^^^^^^^^^^^^^^^^^^^^
156
157...
158
159Objective-C Language Changes in Clang
160-------------------------------------
161
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000162- ...
Sean Silvafe251442012-12-23 01:19:35 +0000163
Erik Schnetter489700d2013-11-11 06:36:33 +0000164OpenCL C Language Changes in Clang
165----------------------------------
166
Bill Wendling0a794a4b2013-11-20 10:13:37 +0000167...
Erik Schnetter489700d2013-11-11 06:36:33 +0000168
Richard Smith6822bd72018-10-26 19:26:45 +0000169ABI Changes in Clang
170--------------------
171
Craig Topper6c8a34e2019-09-06 06:02:13 +0000172- gcc passes vectors of __int128 in memory on X86-64. Clang historically
173 broke the vectors into multiple scalars using two 64-bit values for each
174 element. Clang now matches the gcc behavior on Linux and NetBSD. You can
175 switch back to old API behavior with flag: -fclang-abi-compat=9.0.
Richard Smith6822bd72018-10-26 19:26:45 +0000176
Alexey Bataev44b67502016-05-31 11:17:08 +0000177OpenMP Support in Clang
Shoaib Meenai5be71fa2019-03-04 21:19:53 +0000178-----------------------
Alexey Bataev44b67502016-05-31 11:17:08 +0000179
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000180- ...
Alexey Bataev44b67502016-05-31 11:17:08 +0000181
Jonas Hahnfeld8da9c2a2018-04-20 13:04:54 +0000182CUDA Support in Clang
183---------------------
184
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000185- ...
Jonas Hahnfeld8da9c2a2018-04-20 13:04:54 +0000186
Sean Silvafe251442012-12-23 01:19:35 +0000187Internal API Changes
188--------------------
189
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000190These are major API changes that have happened since the 9.0.0 release of
Sean Silvafe251442012-12-23 01:19:35 +0000191Clang. If upgrading an external codebase that uses Clang as a library,
192this section should help get you past the largest hurdles of upgrading.
193
Dmitri Gribenkob22804b2019-08-30 09:29:34 +0000194- libTooling APIs that transfer ownership of `FrontendAction` objects now pass
195 them by `unique_ptr`, making the ownership transfer obvious in the type
196 system. `FrontendActionFactory::create()` now returns a
197 `unique_ptr<FrontendAction>`. `runToolOnCode`, `runToolOnCodeWithArgs`,
198 `ToolInvocation::ToolInvocation()` now take a `unique_ptr<FrontendAction>`.
199
Shoaib Meenai5be71fa2019-03-04 21:19:53 +0000200Build System Changes
201--------------------
202
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000203These are major changes to the build system that have happened since the 9.0.0
Shoaib Meenai5be71fa2019-03-04 21:19:53 +0000204release of Clang. Users of the build system should adjust accordingly.
205
206- In 8.0.0 and below, the install-clang-headers target would install clang's
207 resource directory headers. This installation is now performed by the
208 install-clang-resource-headers target. Users of the old install-clang-headers
Shoaib Meenai20e7c0c2019-03-11 18:53:57 +0000209 target should switch to the new install-clang-resource-headers target. The
210 install-clang-headers target now installs clang's API headers (corresponding
211 to its libraries), which is consistent with the install-llvm-headers target.
Shoaib Meenai5be71fa2019-03-04 21:19:53 +0000212
Chris Bienemana80a3a2b2019-08-14 16:49:52 +0000213- In 9.0.0 and later Clang added a new target, clang-cpp, which generates a
214 shared library comprised of all the clang component libraries and exporting
215 the clang C++ APIs. Additionally the build system gained the new
216 "CLANG_LINK_CLANG_DYLIB" option, which defaults Off, and when set to On, will
217 force clang (and clang-based tools) to link the clang-cpp library instead of
218 statically linking clang's components. This option will reduce the size of
219 binary distributions at the expense of compiler performance.
220
221- ...
Richard Smitha0334a92015-05-14 00:22:12 +0000222
Aaron Ballmancdc43af2015-09-17 13:47:22 +0000223AST Matchers
224------------
Aaron Ballmancdc43af2015-09-17 13:47:22 +0000225
Paul Hoadccc6f832019-03-22 22:47:34 +0000226- ...
Sylvestre Ledru72e3fa72017-03-14 09:43:55 +0000227
228clang-format
229------------
230
Sam McCall08bfd9e2019-10-02 09:52:52 +0000231- The ``Standard`` style option specifies which version of C++ should be used
232 when parsing and formatting C++ code. The set of allowed values has changed:
Simon Pilgrim68f21b32019-10-05 16:08:17 +0000233
Sam McCall08bfd9e2019-10-02 09:52:52 +0000234 - ``Latest`` will always enable new C++ language features.
235 - ``c++03``, ``c++11``, ``c++14``, ``c++17``, ``c++20`` will pin to exactly
236 that language version.
237 - ``Auto`` is the default and detects style from the code (this is unchanged).
Simon Pilgrim68f21b32019-10-05 16:08:17 +0000238
239 The previous values of ``Cpp03`` and ``Cpp11`` are deprecated. Note that
240 ``Cpp11`` is treated as ``Latest``, as this was always clang-format's behavior.
241 (One motivation for this change is the new name describes the behavior better).
Sylvestre Ledruc9410392017-12-05 09:23:47 +0000242
Ted Kremenek3a2291b2013-04-24 07:33:52 +0000243libclang
244--------
245
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000246- ...
Ted Kremenek3a2291b2013-04-24 07:33:52 +0000247
Sylvestre Ledruea49d3a2016-08-06 20:23:54 +0000248
Anna Zaksb6219a92013-04-25 23:14:38 +0000249Static Analyzer
Ted Kremenek004e8232013-04-26 00:01:34 +0000250---------------
Anna Zaksb6219a92013-04-25 23:14:38 +0000251
Sylvestre Ledru9bea4ec2019-10-11 20:33:43 +0000252- The Clang analyzer checker ``DeadStores`` gets a new option called
253 ``WarnForDeadNestedAssignments`` to detect nested dead assignments
254 (enabled by default).
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000255- ...
Ted Kremenek004e8232013-04-26 00:01:34 +0000256
Roman Lebedevb69ba222018-07-30 18:58:30 +0000257.. _release-notes-ubsan:
258
Vedant Kumar840c2c72017-06-13 02:52:31 +0000259Undefined Behavior Sanitizer (UBSan)
260------------------------------------
261
Roman Lebedev536b0ee2019-10-10 09:25:02 +0000262- * The ``pointer-overflow`` check was extended added to catch the cases where
263 a non-zero offset is applied to a null pointer, or the result of
264 applying the offset is a null pointer.
265
266 .. code-block:: c++
267
268 #include <cstdint> // for intptr_t
269
270 static char *getelementpointer_inbounds(char *base, unsigned long offset) {
271 // Potentially UB.
272 return base + offset;
273 }
274
275 char *getelementpointer_unsafe(char *base, unsigned long offset) {
276 // Always apply offset. UB if base is ``nullptr`` and ``offset`` is not
277 // zero, or if ``base`` is non-``nullptr`` and ``offset`` is
278 // ``-reinterpret_cast<intptr_t>(base)``.
279 return getelementpointer_inbounds(base, offset);
280 }
281
282 char *getelementpointer_safe(char *base, unsigned long offset) {
283 // Cast pointer to integer, perform usual arithmetic addition,
284 // and cast to pointer. This is legal.
285 char *computed =
286 reinterpret_cast<char *>(reinterpret_cast<intptr_t>(base) + offset);
287 // If either the pointer becomes non-``nullptr``, or becomes
288 // ``nullptr``, we must use ``computed`` result.
289 if (((base == nullptr) && (computed != nullptr)) ||
290 ((base != nullptr) && (computed == nullptr)))
291 return computed;
292 // Else we can use ``getelementpointer_inbounds()``.
293 return getelementpointer_inbounds(base, offset);
294 }
295
Roman Lebedevbd1c0872019-01-15 09:44:25 +0000296
Ted Kremenek004e8232013-04-26 00:01:34 +0000297Core Analysis Improvements
298==========================
299
Bill Wendling61f44cc2013-06-04 06:17:46 +0000300- ...
Ted Kremenek004e8232013-04-26 00:01:34 +0000301
302New Issues Found
303================
304
Bill Wendling61f44cc2013-06-04 06:17:46 +0000305- ...
Anna Zaksb6219a92013-04-25 23:14:38 +0000306
Sean Silvafe251442012-12-23 01:19:35 +0000307Python Binding Changes
308----------------------
309
310The following methods have been added:
311
312- ...
313
314Significant Known Problems
315==========================
316
317Additional Information
318======================
319
320A wide variety of additional information is available on the `Clang web
Hans Wennborg0aa0d912018-09-10 08:51:25 +0000321page <https://clang.llvm.org/>`_. The web page contains versions of the
Sean Silvafe251442012-12-23 01:19:35 +0000322API documentation which are up-to-date with the Subversion version of
323the source code. You can access versions of these documents specific to
324this release by going into the "``clang/docs/``" directory in the Clang
325tree.
326
327If you have any questions or comments about Clang, please feel free to
328contact us via the `mailing
Hans Wennborg0aa0d912018-09-10 08:51:25 +0000329list <https://lists.llvm.org/mailman/listinfo/cfe-dev>`_.