blob: 8e9d298c9593b3d2737f3dde269b67ac53a30016 [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.
Roman Lebedev61061d62018-04-07 10:39:21 +000059
Erich Keaneb0c78092017-07-26 18:04:45 +000060Non-comprehensive list of changes in this release
61-------------------------------------------------
62
Roman Lebedev536b0ee2019-10-10 09:25:02 +000063* In both C and C++ (C17 ``6.5.6p8``, C++ ``[expr.add]``), pointer arithmetic is
64 only permitted within arrays. In particular, the behavior of a program is not
65 defined if it adds a non-zero offset (or in C, any offset) to a null pointer,
66 or if it forms a null pointer by subtracting an integer from a non-null
67 pointer, and the LLVM optimizer now uses those guarantees for transformations.
68 This may lead to unintended behavior in code that performs these operations.
69 The Undefined Behavior Sanitizer ``-fsanitize=pointer-overflow`` check has
70 been extended to detect these cases, so that code relying on them can be
71 detected and fixed.
72
Craig Topper635d3832019-09-11 23:54:36 +000073- For X86 target, -march=skylake-avx512, -march=icelake-client,
74 -march=icelake-server, -march=cascadelake, -march=cooperlake will default to
75 not using 512-bit zmm registers in vectorized code unless 512-bit intrinsics
76 are used in the source code. 512-bit operations are known to cause the CPUs
77 to run at a lower frequency which can impact performance. This behavior can be
78 changed by passing -mprefer-vector-width=512 on the command line.
Ilya Biryukov88aef522018-12-05 18:32:05 +000079
Sean Silvafe251442012-12-23 01:19:35 +000080New Compiler Flags
81------------------
82
Hans Wennborg7b852ea2018-01-03 15:49:39 +000083- ...
Aaron Ballman2b3bc4c2017-10-21 16:45:08 +000084
Joerg Sonnenbergerc9199682017-07-01 21:36:21 +000085Deprecated Compiler Flags
86-------------------------
87
88The following options are deprecated and ignored. They will be removed in
89future versions of Clang.
90
Craig Topper5a43fdd2019-08-29 18:09:02 +000091- -mmpx used to enable the __MPX__ preprocessor define for the Intel MPX
92 instructions. There were no MPX intrinsics.
93- -mno-mpx used to disable -mmpx and is the default behavior.
94
Hans Wennborgfbb21e02017-07-19 14:14:07 +000095- ...
Joerg Sonnenbergerc9199682017-07-01 21:36:21 +000096
Yuka Takahashiba900ab2018-03-07 11:34:02 +000097Modified Compiler Flags
98-----------------------
99
Eric Christopher030b17d2019-05-14 19:40:42 +0000100- ...
Yuka Takahashiba900ab2018-03-07 11:34:02 +0000101
Tyler Nowickidb2668a2014-06-18 00:51:32 +0000102New Pragmas in Clang
Eugene Zelenkoad5684a2018-05-15 21:45:01 +0000103--------------------
Tyler Nowickidb2668a2014-06-18 00:51:32 +0000104
Hans Wennborg1fe469a2019-01-16 10:57:02 +0000105- ...
Paul Robinsonf9ede1c2016-07-18 17:19:12 +0000106
107Attribute Changes in Clang
108--------------------------
109
Hans Wennborgfbb21e02017-07-19 14:14:07 +0000110- ...
Paul Robinsonf9ede1c2016-07-18 17:19:12 +0000111
Hans Wennborg02dc0002014-08-05 00:21:23 +0000112Windows Support
113---------------
114
Hans Wennborg99c86512019-09-25 11:53:17 +0000115- Previous Clang versions contained a work-around to avoid an issue with the
116 standard library headers in Visual Studio 2019 versions prior to 16.3. This
117 work-around has now been removed, and users of Visual Studio 2019 are
118 encouraged to upgrade to 16.3 or later, otherwise they may see link errors as
119 below:
120
121 .. code-block:: console
122
123 error LNK2005: "bool const std::_Is_integral<int>" (??$_Is_integral@H@std@@3_NB) already defined
124
125
126
Hans Wennborg02dc0002014-08-05 00:21:23 +0000127
Renato Golinf2fcddb2013-12-13 09:27:34 +0000128C Language Changes in Clang
129---------------------------
130
Kristina Brooksc0eb8a92019-06-05 03:47:02 +0000131- ...
Renato Golinf2fcddb2013-12-13 09:27:34 +0000132
Sean Silvafe251442012-12-23 01:19:35 +0000133C11 Feature Support
134^^^^^^^^^^^^^^^^^^^
135
136...
137
138C++ Language Changes in Clang
139-----------------------------
140
Martin Storsjo71decf82019-09-27 12:25:19 +0000141- The behaviour of the `gnu_inline` attribute now matches GCC, for cases
142 where used without the `extern` keyword. As this is a change compared to
143 how it behaved in previous Clang versions, a warning is emitted for this
144 combination.
Richard Smith8eb53c82016-05-05 18:40:37 +0000145
146C++1z Feature Support
Sean Silvafe251442012-12-23 01:19:35 +0000147^^^^^^^^^^^^^^^^^^^^^
148
149...
150
151Objective-C Language Changes in Clang
152-------------------------------------
153
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000154- ...
Sean Silvafe251442012-12-23 01:19:35 +0000155
Erik Schnetter489700d2013-11-11 06:36:33 +0000156OpenCL C Language Changes in Clang
157----------------------------------
158
Bill Wendling0a794a4b2013-11-20 10:13:37 +0000159...
Erik Schnetter489700d2013-11-11 06:36:33 +0000160
Richard Smith6822bd72018-10-26 19:26:45 +0000161ABI Changes in Clang
162--------------------
163
Craig Topper6c8a34e2019-09-06 06:02:13 +0000164- gcc passes vectors of __int128 in memory on X86-64. Clang historically
165 broke the vectors into multiple scalars using two 64-bit values for each
166 element. Clang now matches the gcc behavior on Linux and NetBSD. You can
167 switch back to old API behavior with flag: -fclang-abi-compat=9.0.
Richard Smith6822bd72018-10-26 19:26:45 +0000168
Alexey Bataev44b67502016-05-31 11:17:08 +0000169OpenMP Support in Clang
Shoaib Meenai5be71fa2019-03-04 21:19:53 +0000170-----------------------
Alexey Bataev44b67502016-05-31 11:17:08 +0000171
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000172- ...
Alexey Bataev44b67502016-05-31 11:17:08 +0000173
Jonas Hahnfeld8da9c2a2018-04-20 13:04:54 +0000174CUDA Support in Clang
175---------------------
176
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000177- ...
Jonas Hahnfeld8da9c2a2018-04-20 13:04:54 +0000178
Sean Silvafe251442012-12-23 01:19:35 +0000179Internal API Changes
180--------------------
181
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000182These are major API changes that have happened since the 9.0.0 release of
Sean Silvafe251442012-12-23 01:19:35 +0000183Clang. If upgrading an external codebase that uses Clang as a library,
184this section should help get you past the largest hurdles of upgrading.
185
Dmitri Gribenkob22804b2019-08-30 09:29:34 +0000186- libTooling APIs that transfer ownership of `FrontendAction` objects now pass
187 them by `unique_ptr`, making the ownership transfer obvious in the type
188 system. `FrontendActionFactory::create()` now returns a
189 `unique_ptr<FrontendAction>`. `runToolOnCode`, `runToolOnCodeWithArgs`,
190 `ToolInvocation::ToolInvocation()` now take a `unique_ptr<FrontendAction>`.
191
Shoaib Meenai5be71fa2019-03-04 21:19:53 +0000192Build System Changes
193--------------------
194
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000195These are major changes to the build system that have happened since the 9.0.0
Shoaib Meenai5be71fa2019-03-04 21:19:53 +0000196release of Clang. Users of the build system should adjust accordingly.
197
198- In 8.0.0 and below, the install-clang-headers target would install clang's
199 resource directory headers. This installation is now performed by the
200 install-clang-resource-headers target. Users of the old install-clang-headers
Shoaib Meenai20e7c0c2019-03-11 18:53:57 +0000201 target should switch to the new install-clang-resource-headers target. The
202 install-clang-headers target now installs clang's API headers (corresponding
203 to its libraries), which is consistent with the install-llvm-headers target.
Shoaib Meenai5be71fa2019-03-04 21:19:53 +0000204
Chris Bienemana80a3a2b2019-08-14 16:49:52 +0000205- In 9.0.0 and later Clang added a new target, clang-cpp, which generates a
206 shared library comprised of all the clang component libraries and exporting
207 the clang C++ APIs. Additionally the build system gained the new
208 "CLANG_LINK_CLANG_DYLIB" option, which defaults Off, and when set to On, will
209 force clang (and clang-based tools) to link the clang-cpp library instead of
210 statically linking clang's components. This option will reduce the size of
211 binary distributions at the expense of compiler performance.
212
213- ...
Richard Smitha0334a92015-05-14 00:22:12 +0000214
Aaron Ballmancdc43af2015-09-17 13:47:22 +0000215AST Matchers
216------------
Aaron Ballmancdc43af2015-09-17 13:47:22 +0000217
Paul Hoadccc6f832019-03-22 22:47:34 +0000218- ...
Sylvestre Ledru72e3fa72017-03-14 09:43:55 +0000219
220clang-format
221------------
222
Sam McCall08bfd9e2019-10-02 09:52:52 +0000223- The ``Standard`` style option specifies which version of C++ should be used
224 when parsing and formatting C++ code. The set of allowed values has changed:
Simon Pilgrim68f21b32019-10-05 16:08:17 +0000225
Sam McCall08bfd9e2019-10-02 09:52:52 +0000226 - ``Latest`` will always enable new C++ language features.
227 - ``c++03``, ``c++11``, ``c++14``, ``c++17``, ``c++20`` will pin to exactly
228 that language version.
229 - ``Auto`` is the default and detects style from the code (this is unchanged).
Simon Pilgrim68f21b32019-10-05 16:08:17 +0000230
231 The previous values of ``Cpp03`` and ``Cpp11`` are deprecated. Note that
232 ``Cpp11`` is treated as ``Latest``, as this was always clang-format's behavior.
233 (One motivation for this change is the new name describes the behavior better).
Sylvestre Ledruc9410392017-12-05 09:23:47 +0000234
Ted Kremenek3a2291b2013-04-24 07:33:52 +0000235libclang
236--------
237
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000238- ...
Ted Kremenek3a2291b2013-04-24 07:33:52 +0000239
Sylvestre Ledruea49d3a2016-08-06 20:23:54 +0000240
Anna Zaksb6219a92013-04-25 23:14:38 +0000241Static Analyzer
Ted Kremenek004e8232013-04-26 00:01:34 +0000242---------------
Anna Zaksb6219a92013-04-25 23:14:38 +0000243
Hans Wennborg8f5b44a2019-07-18 11:51:05 +0000244- ...
Ted Kremenek004e8232013-04-26 00:01:34 +0000245
Roman Lebedevb69ba222018-07-30 18:58:30 +0000246.. _release-notes-ubsan:
247
Vedant Kumar840c2c72017-06-13 02:52:31 +0000248Undefined Behavior Sanitizer (UBSan)
249------------------------------------
250
Roman Lebedev536b0ee2019-10-10 09:25:02 +0000251- * The ``pointer-overflow`` check was extended added to catch the cases where
252 a non-zero offset is applied to a null pointer, or the result of
253 applying the offset is a null pointer.
254
255 .. code-block:: c++
256
257 #include <cstdint> // for intptr_t
258
259 static char *getelementpointer_inbounds(char *base, unsigned long offset) {
260 // Potentially UB.
261 return base + offset;
262 }
263
264 char *getelementpointer_unsafe(char *base, unsigned long offset) {
265 // Always apply offset. UB if base is ``nullptr`` and ``offset`` is not
266 // zero, or if ``base`` is non-``nullptr`` and ``offset`` is
267 // ``-reinterpret_cast<intptr_t>(base)``.
268 return getelementpointer_inbounds(base, offset);
269 }
270
271 char *getelementpointer_safe(char *base, unsigned long offset) {
272 // Cast pointer to integer, perform usual arithmetic addition,
273 // and cast to pointer. This is legal.
274 char *computed =
275 reinterpret_cast<char *>(reinterpret_cast<intptr_t>(base) + offset);
276 // If either the pointer becomes non-``nullptr``, or becomes
277 // ``nullptr``, we must use ``computed`` result.
278 if (((base == nullptr) && (computed != nullptr)) ||
279 ((base != nullptr) && (computed == nullptr)))
280 return computed;
281 // Else we can use ``getelementpointer_inbounds()``.
282 return getelementpointer_inbounds(base, offset);
283 }
284
Roman Lebedevbd1c0872019-01-15 09:44:25 +0000285
Ted Kremenek004e8232013-04-26 00:01:34 +0000286Core Analysis Improvements
287==========================
288
Bill Wendling61f44cc2013-06-04 06:17:46 +0000289- ...
Ted Kremenek004e8232013-04-26 00:01:34 +0000290
291New Issues Found
292================
293
Bill Wendling61f44cc2013-06-04 06:17:46 +0000294- ...
Anna Zaksb6219a92013-04-25 23:14:38 +0000295
Sean Silvafe251442012-12-23 01:19:35 +0000296Python Binding Changes
297----------------------
298
299The following methods have been added:
300
301- ...
302
303Significant Known Problems
304==========================
305
306Additional Information
307======================
308
309A wide variety of additional information is available on the `Clang web
Hans Wennborg0aa0d912018-09-10 08:51:25 +0000310page <https://clang.llvm.org/>`_. The web page contains versions of the
Sean Silvafe251442012-12-23 01:19:35 +0000311API documentation which are up-to-date with the Subversion version of
312the source code. You can access versions of these documents specific to
313this release by going into the "``clang/docs/``" directory in the Clang
314tree.
315
316If you have any questions or comments about Clang, please feel free to
317contact us via the `mailing
Hans Wennborg0aa0d912018-09-10 08:51:25 +0000318list <https://lists.llvm.org/mailman/listinfo/cfe-dev>`_.