Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 1 | ======================================= |
Hans Wennborg | fbb21e0 | 2017-07-19 14:14:07 +0000 | [diff] [blame] | 2 | Clang 6.0.0 (In-Progress) Release Notes |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 3 | ======================================= |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 4 | |
| 5 | .. contents:: |
| 6 | :local: |
| 7 | :depth: 2 |
| 8 | |
| 9 | Written by the `LLVM Team <http://llvm.org/>`_ |
| 10 | |
| 11 | .. warning:: |
| 12 | |
Hans Wennborg | fbb21e0 | 2017-07-19 14:14:07 +0000 | [diff] [blame] | 13 | These are in-progress notes for the upcoming Clang 6 release. |
Hans Wennborg | 189f1f3 | 2017-02-09 23:26:34 +0000 | [diff] [blame] | 14 | Release notes for previous releases can be found on |
| 15 | `the Download Page <http://releases.llvm.org/download.html>`_. |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 16 | |
| 17 | Introduction |
| 18 | ============ |
| 19 | |
| 20 | This document contains the release notes for the Clang C/C++/Objective-C |
Hans Wennborg | fbb21e0 | 2017-07-19 14:14:07 +0000 | [diff] [blame] | 21 | frontend, part of the LLVM Compiler Infrastructure, release 6.0.0. Here we |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 22 | describe the status of Clang in some detail, including major |
| 23 | improvements from the previous release and new feature work. For the |
| 24 | general LLVM release notes, see `the LLVM |
| 25 | documentation <http://llvm.org/docs/ReleaseNotes.html>`_. All LLVM |
| 26 | releases may be downloaded from the `LLVM releases web |
| 27 | site <http://llvm.org/releases/>`_. |
| 28 | |
Hans Wennborg | d878ca8 | 2017-08-30 18:35:44 +0000 | [diff] [blame] | 29 | For more information about Clang or LLVM, including information about the |
| 30 | latest release, please see the `Clang Web Site <http://clang.llvm.org>`_ or the |
| 31 | `LLVM Web Site <http://llvm.org>`_. |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 32 | |
| 33 | Note that if you are reading this file from a Subversion checkout or the |
| 34 | main Clang web page, this document applies to the *next* release, not |
| 35 | the current one. To see the release notes for a specific release, please |
| 36 | see the `releases page <http://llvm.org/releases/>`_. |
| 37 | |
Hans Wennborg | fbb21e0 | 2017-07-19 14:14:07 +0000 | [diff] [blame] | 38 | What's New in Clang 6.0.0? |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 39 | ========================== |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 40 | |
| 41 | Some of the major new features and improvements to Clang are listed |
| 42 | here. Generic improvements to Clang as a whole or to its underlying |
| 43 | infrastructure are described first, followed by language-specific |
| 44 | sections with improvements to Clang's support for those languages. |
| 45 | |
| 46 | Major New Features |
| 47 | ------------------ |
| 48 | |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 49 | - ... |
Rafael Espindola | 3497069 | 2013-12-12 16:07:11 +0000 | [diff] [blame] | 50 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 51 | Improvements to Clang's diagnostics |
| 52 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 53 | |
Alex Lorenz | dbbe822 | 2017-07-31 14:22:43 +0000 | [diff] [blame] | 54 | - ``-Wpragma-pack`` is a new warning that warns in the following cases: |
| 55 | |
| 56 | - When a translation unit is missing terminating ``#pragma pack (pop)`` |
Alex Lorenz | 5174866 | 2017-07-31 14:08:41 +0000 | [diff] [blame] | 57 | directives. |
Alex Lorenz | dbbe822 | 2017-07-31 14:22:43 +0000 | [diff] [blame] | 58 | |
Alex Lorenz | 5174866 | 2017-07-31 14:08:41 +0000 | [diff] [blame] | 59 | - When leaving an included file that changes the current alignment value, |
Alex Lorenz | dbbe822 | 2017-07-31 14:22:43 +0000 | [diff] [blame] | 60 | i.e. when the alignment before ``#include`` is different to the alignment |
| 61 | after ``#include``. |
| 62 | |
| 63 | - ``-Wpragma-pack-suspicious-include`` (disabled by default) warns on an |
| 64 | ``#include`` when the included file contains structures or unions affected by |
| 65 | a non-default alignment that has been specified using a ``#pragma pack`` |
| 66 | directive prior to the ``#include``. |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 67 | |
Alex Lorenz | d9f1284 | 2017-08-25 16:12:17 +0000 | [diff] [blame] | 68 | - ``-Wobjc-messaging-id`` is a new, non-default warning that warns about |
| 69 | message sends to unqualified ``id`` in Objective-C. This warning is useful |
| 70 | for projects that would like to avoid any potential future compiler |
| 71 | errors/warnings, as the system frameworks might add a method with the same |
| 72 | selector which could make the message send to ``id`` ambiguous. |
| 73 | |
Roman Lebedev | 6aa34aa | 2017-09-07 22:14:25 +0000 | [diff] [blame] | 74 | - ``-Wtautological-compare`` now warns when comparing an unsigned integer and 0 |
| 75 | regardless of whether the constant is signed or unsigned." |
| 76 | |
| 77 | - ``-Wtautological-compare`` now warns about comparing a signed integer and 0 |
| 78 | when the signed integer is coerced to an unsigned type for the comparison. |
| 79 | ``-Wsign-compare`` was adjusted not to warn in this case. |
| 80 | |
Roman Lebedev | 6de129e | 2017-10-15 20:13:17 +0000 | [diff] [blame] | 81 | - ``-Wtautological-constant-compare`` is a new warning that warns on |
| 82 | tautological comparisons between integer variable of the type ``T`` and the |
| 83 | largest/smallest possible integer constant of that same type. |
| 84 | |
Roman Lebedev | d9af8e1 | 2017-11-04 20:27:47 +0000 | [diff] [blame] | 85 | - For C code, ``-Wsign-compare``, ``-Wsign-conversion``, |
| 86 | ``-Wtautological-constant-compare`` and |
Roman Lebedev | 7ade017 | 2017-10-24 21:05:43 +0000 | [diff] [blame] | 87 | ``-Wtautological-constant-out-of-range-compare`` were adjusted to use the |
| 88 | underlying datatype of ``enum``. |
| 89 | |
Sylvestre Ledru | a59e654 | 2017-09-28 08:00:18 +0000 | [diff] [blame] | 90 | - ``-Wnull-pointer-arithmetic`` now warns about performing pointer arithmetic |
| 91 | on a null pointer. Such pointer arithmetic has an undefined behavior if the |
| 92 | offset is nonzero. It also now warns about arithmetic on a null pointer |
| 93 | treated as a cast from integer to pointer (GNU extension). |
| 94 | |
Roman Lebedev | 809df34 | 2017-10-26 13:18:14 +0000 | [diff] [blame] | 95 | - ``-Wzero-as-null-pointer-constant`` was adjusted not to warn on null pointer |
| 96 | constants that originate from system macros, except ``NULL`` macro. |
| 97 | |
Erich Keane | b0c7809 | 2017-07-26 18:04:45 +0000 | [diff] [blame] | 98 | Non-comprehensive list of changes in this release |
| 99 | ------------------------------------------------- |
| 100 | |
Sylvestre Ledru | 31f4fee | 2017-09-05 13:56:40 +0000 | [diff] [blame] | 101 | - Bitrig OS was merged back into OpenBSD, so Bitrig support has been |
Erich Keane | b0c7809 | 2017-07-26 18:04:45 +0000 | [diff] [blame] | 102 | removed from Clang/LLVM. |
| 103 | |
Reid Kleckner | c65f16c | 2017-10-06 21:02:28 +0000 | [diff] [blame] | 104 | - The default value of _MSC_VER was raised from 1800 to 1911, making it |
| 105 | compatible with the Visual Studio 2015 and 2017 C++ standard library headers. |
| 106 | Users should generally expect this to be regularly raised to match the most |
| 107 | recently released version of the Visual C++ compiler. |
| 108 | |
Nico Weber | 0763ab4 | 2017-10-26 23:26:29 +0000 | [diff] [blame] | 109 | - clang now defaults to ``.init_array`` if no gcc installation can be found. |
| 110 | If a gcc installation is found, it still prefers ``.ctors`` if the found |
| 111 | gcc is older than 4.7.0. |
| 112 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 113 | New Compiler Flags |
| 114 | ------------------ |
| 115 | |
Yuka Takahashi | 9b6b5d5 | 2017-08-11 09:44:42 +0000 | [diff] [blame] | 116 | - --autocomplete was implemented to obtain a list of flags and its arguments. This is used for shell autocompletion. |
Sylvestre Ledru | f6b4897 | 2016-11-12 10:37:17 +0000 | [diff] [blame] | 117 | |
Aaron Ballman | 2b3bc4c | 2017-10-21 16:45:08 +0000 | [diff] [blame] | 118 | - The ``-fdouble-square-bracket-attributes`` and corresponding |
| 119 | ``-fno-double-square-bracket-attributes`` flags were added to enable or |
| 120 | disable [[]] attributes in any language mode. Currently, only a limited |
| 121 | number of attributes are supported outside of C++ mode. See the Clang |
| 122 | attribute documentation for more information about which attributes are |
| 123 | supported for each syntax. |
| 124 | |
Joerg Sonnenberger | c919968 | 2017-07-01 21:36:21 +0000 | [diff] [blame] | 125 | Deprecated Compiler Flags |
| 126 | ------------------------- |
| 127 | |
| 128 | The following options are deprecated and ignored. They will be removed in |
| 129 | future versions of Clang. |
| 130 | |
Hans Wennborg | fbb21e0 | 2017-07-19 14:14:07 +0000 | [diff] [blame] | 131 | - ... |
Joerg Sonnenberger | c919968 | 2017-07-01 21:36:21 +0000 | [diff] [blame] | 132 | |
Tyler Nowicki | db2668a | 2014-06-18 00:51:32 +0000 | [diff] [blame] | 133 | New Pragmas in Clang |
| 134 | ----------------------- |
| 135 | |
Rafael Espindola | af74250 | 2014-08-22 21:59:11 +0000 | [diff] [blame] | 136 | Clang now supports the ... |
Mark Heffernan | bd26f5e | 2014-07-21 18:08:34 +0000 | [diff] [blame] | 137 | |
Paul Robinson | f9ede1c | 2016-07-18 17:19:12 +0000 | [diff] [blame] | 138 | |
| 139 | Attribute Changes in Clang |
| 140 | -------------------------- |
| 141 | |
Erik Pilkington | 1b00372 | 2017-08-08 17:09:09 +0000 | [diff] [blame] | 142 | - The presence of __attribute__((availability(...))) on a declaration no longer |
| 143 | implies default visibility for that declaration on macOS. |
| 144 | |
Hans Wennborg | fbb21e0 | 2017-07-19 14:14:07 +0000 | [diff] [blame] | 145 | - ... |
Paul Robinson | f9ede1c | 2016-07-18 17:19:12 +0000 | [diff] [blame] | 146 | |
Hans Wennborg | 02dc000 | 2014-08-05 00:21:23 +0000 | [diff] [blame] | 147 | Windows Support |
| 148 | --------------- |
| 149 | |
Rafael Espindola | af74250 | 2014-08-22 21:59:11 +0000 | [diff] [blame] | 150 | Clang's support for building native Windows programs ... |
Hans Wennborg | 02dc000 | 2014-08-05 00:21:23 +0000 | [diff] [blame] | 151 | |
| 152 | |
Renato Golin | f2fcddb | 2013-12-13 09:27:34 +0000 | [diff] [blame] | 153 | C Language Changes in Clang |
| 154 | --------------------------- |
| 155 | |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 156 | - ... |
Pirama Arumuga Nainar | c85c853 | 2016-06-21 16:09:30 +0000 | [diff] [blame] | 157 | |
Renato Golin | f2fcddb | 2013-12-13 09:27:34 +0000 | [diff] [blame] | 158 | ... |
| 159 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 160 | C11 Feature Support |
| 161 | ^^^^^^^^^^^^^^^^^^^ |
| 162 | |
| 163 | ... |
| 164 | |
| 165 | C++ Language Changes in Clang |
| 166 | ----------------------------- |
| 167 | |
Richard Smith | 8eb53c8 | 2016-05-05 18:40:37 +0000 | [diff] [blame] | 168 | ... |
| 169 | |
| 170 | C++1z Feature Support |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 171 | ^^^^^^^^^^^^^^^^^^^^^ |
| 172 | |
| 173 | ... |
| 174 | |
| 175 | Objective-C Language Changes in Clang |
| 176 | ------------------------------------- |
| 177 | |
| 178 | ... |
| 179 | |
Erik Schnetter | 489700d | 2013-11-11 06:36:33 +0000 | [diff] [blame] | 180 | OpenCL C Language Changes in Clang |
| 181 | ---------------------------------- |
| 182 | |
Bill Wendling | 0a794a4b | 2013-11-20 10:13:37 +0000 | [diff] [blame] | 183 | ... |
Erik Schnetter | 489700d | 2013-11-11 06:36:33 +0000 | [diff] [blame] | 184 | |
Alexey Bataev | 44b6750 | 2016-05-31 11:17:08 +0000 | [diff] [blame] | 185 | OpenMP Support in Clang |
| 186 | ---------------------------------- |
| 187 | |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 188 | ... |
Alexey Bataev | 44b6750 | 2016-05-31 11:17:08 +0000 | [diff] [blame] | 189 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 190 | Internal API Changes |
| 191 | -------------------- |
| 192 | |
Hans Wennborg | 159d6ad | 2017-01-12 21:55:16 +0000 | [diff] [blame] | 193 | These are major API changes that have happened since the 4.0.0 release of |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 194 | Clang. If upgrading an external codebase that uses Clang as a library, |
| 195 | this section should help get you past the largest hurdles of upgrading. |
| 196 | |
Vedant Kumar | 5fb00e4 | 2016-07-27 23:01:55 +0000 | [diff] [blame] | 197 | - ... |
Richard Smith | a0334a9 | 2015-05-14 00:22:12 +0000 | [diff] [blame] | 198 | |
Aaron Ballman | cdc43af | 2015-09-17 13:47:22 +0000 | [diff] [blame] | 199 | AST Matchers |
| 200 | ------------ |
Aaron Ballman | cdc43af | 2015-09-17 13:47:22 +0000 | [diff] [blame] | 201 | |
Manuel Klimek | 696e505 | 2017-08-02 13:04:44 +0000 | [diff] [blame] | 202 | The hasDeclaration matcher now works the same for Type and QualType and only |
| 203 | ever looks through one level of sugaring in a limited number of cases. |
Aaron Ballman | cdc43af | 2015-09-17 13:47:22 +0000 | [diff] [blame] | 204 | |
Manuel Klimek | 696e505 | 2017-08-02 13:04:44 +0000 | [diff] [blame] | 205 | There are two main patterns affected by this: |
| 206 | |
| 207 | - qualType(hasDeclaration(recordDecl(...))): previously, we would look through |
| 208 | sugar like TypedefType to get at the underlying recordDecl; now, we need |
| 209 | to explicitly remove the sugaring: |
| 210 | qualType(hasUnqualifiedDesugaredType(hasDeclaration(recordDecl(...)))) |
| 211 | |
| 212 | - hasType(recordDecl(...)): hasType internally uses hasDeclaration; previously, |
| 213 | this matcher used to match for example TypedefTypes of the RecordType, but |
| 214 | after the change they don't; to fix, use: |
| 215 | |
| 216 | :: |
| 217 | hasType(hasUnqualifiedDesugaredType( |
| 218 | recordType(hasDeclaration(recordDecl(...))))) |
| 219 | |
| 220 | - templateSpecializationType(hasDeclaration(classTemplateDecl(...))): |
| 221 | previously, we would directly match the underlying ClassTemplateDecl; |
| 222 | now, we can explicitly match the ClassTemplateSpecializationDecl, but that |
| 223 | requires to explicitly get the ClassTemplateDecl: |
| 224 | |
| 225 | :: |
| 226 | templateSpecializationType(hasDeclaration( |
| 227 | classTemplateSpecializationDecl( |
| 228 | hasSpecializedTemplate(classTemplateDecl(...))))) |
Sylvestre Ledru | 72e3fa7 | 2017-03-14 09:43:55 +0000 | [diff] [blame] | 229 | |
| 230 | clang-format |
| 231 | ------------ |
| 232 | |
Sylvestre Ledru | 31f4fee | 2017-09-05 13:56:40 +0000 | [diff] [blame] | 233 | * Option *IndentPPDirectives* added to indent preprocessor directives on |
| 234 | conditionals. |
| 235 | |
| 236 | +----------------------+----------------------+ |
| 237 | | Before | After | |
| 238 | +======================+======================+ |
| 239 | | .. code-block:: c++ | .. code-block:: c++ | |
| 240 | | | | |
| 241 | | #if FOO | #if FOO | |
| 242 | | #if BAR | # if BAR | |
| 243 | | #include <foo> | # include <foo> | |
| 244 | | #endif | # endif | |
| 245 | | #endif | #endif | |
| 246 | +----------------------+----------------------+ |
Sylvestre Ledru | 72e3fa7 | 2017-03-14 09:43:55 +0000 | [diff] [blame] | 247 | |
Sylvestre Ledru | d23dd6c | 2017-08-12 15:15:10 +0000 | [diff] [blame] | 248 | * Option -verbose added to the command line. |
| 249 | Shows the list of processed files. |
| 250 | |
Ted Kremenek | 3a2291b | 2013-04-24 07:33:52 +0000 | [diff] [blame] | 251 | libclang |
| 252 | -------- |
| 253 | |
Bill Wendling | 61f44cc | 2013-06-04 06:17:46 +0000 | [diff] [blame] | 254 | ... |
Ted Kremenek | 3a2291b | 2013-04-24 07:33:52 +0000 | [diff] [blame] | 255 | |
Sylvestre Ledru | ea49d3a | 2016-08-06 20:23:54 +0000 | [diff] [blame] | 256 | |
Anna Zaks | b6219a9 | 2013-04-25 23:14:38 +0000 | [diff] [blame] | 257 | Static Analyzer |
Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 258 | --------------- |
Anna Zaks | b6219a9 | 2013-04-25 23:14:38 +0000 | [diff] [blame] | 259 | |
Roman Lebedev | 88b56ca | 2017-11-30 09:18:35 +0000 | [diff] [blame] | 260 | - Static Analyzer can now properly detect and diagnose unary pre-/post- |
| 261 | increment/decrement on an uninitialized value. |
| 262 | |
Bill Wendling | 0a794a4b | 2013-11-20 10:13:37 +0000 | [diff] [blame] | 263 | ... |
Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 264 | |
Vedant Kumar | 840c2c7 | 2017-06-13 02:52:31 +0000 | [diff] [blame] | 265 | Undefined Behavior Sanitizer (UBSan) |
| 266 | ------------------------------------ |
| 267 | |
Vedant Kumar | 90c80a3 | 2017-09-11 21:37:05 +0000 | [diff] [blame] | 268 | * A minimal runtime is now available. It is suitable for use in production |
| 269 | environments, and has a small attack surface. It only provides very basic |
| 270 | issue logging and deduplication, and does not support ``-fsanitize=vptr`` |
| 271 | checking. |
Vedant Kumar | 840c2c7 | 2017-06-13 02:52:31 +0000 | [diff] [blame] | 272 | |
Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 273 | Core Analysis Improvements |
| 274 | ========================== |
| 275 | |
Bill Wendling | 61f44cc | 2013-06-04 06:17:46 +0000 | [diff] [blame] | 276 | - ... |
Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 277 | |
| 278 | New Issues Found |
| 279 | ================ |
| 280 | |
Bill Wendling | 61f44cc | 2013-06-04 06:17:46 +0000 | [diff] [blame] | 281 | - ... |
Anna Zaks | b6219a9 | 2013-04-25 23:14:38 +0000 | [diff] [blame] | 282 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 283 | Python Binding Changes |
| 284 | ---------------------- |
| 285 | |
| 286 | The following methods have been added: |
| 287 | |
| 288 | - ... |
| 289 | |
| 290 | Significant Known Problems |
| 291 | ========================== |
| 292 | |
| 293 | Additional Information |
| 294 | ====================== |
| 295 | |
| 296 | A wide variety of additional information is available on the `Clang web |
| 297 | page <http://clang.llvm.org/>`_. The web page contains versions of the |
| 298 | API documentation which are up-to-date with the Subversion version of |
| 299 | the source code. You can access versions of these documents specific to |
| 300 | this release by going into the "``clang/docs/``" directory in the Clang |
| 301 | tree. |
| 302 | |
| 303 | If you have any questions or comments about Clang, please feel free to |
| 304 | contact us via the `mailing |
Tanya Lattner | 4a08e93 | 2015-08-05 03:55:23 +0000 | [diff] [blame] | 305 | list <http://lists.llvm.org/mailman/listinfo/cfe-dev>`_. |