Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 1 | ======================================= |
Hans Wennborg | 159d6ad | 2017-01-12 21:55:16 +0000 | [diff] [blame] | 2 | Clang 5.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 | 189f1f3 | 2017-02-09 23:26:34 +0000 | [diff] [blame] | 13 | These are in-progress notes for the upcoming Clang 5 release. |
| 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 | 159d6ad | 2017-01-12 21:55:16 +0000 | [diff] [blame] | 21 | frontend, part of the LLVM Compiler Infrastructure, release 5.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 | |
| 29 | For more information about Clang or LLVM, including information about |
| 30 | the latest release, please check out the main please see the `Clang Web |
| 31 | Site <http://clang.llvm.org>`_ or the `LLVM Web |
| 32 | Site <http://llvm.org>`_. |
| 33 | |
| 34 | Note that if you are reading this file from a Subversion checkout or the |
| 35 | main Clang web page, this document applies to the *next* release, not |
| 36 | the current one. To see the release notes for a specific release, please |
| 37 | see the `releases page <http://llvm.org/releases/>`_. |
| 38 | |
Hans Wennborg | 159d6ad | 2017-01-12 21:55:16 +0000 | [diff] [blame] | 39 | What's New in Clang 5.0.0? |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 40 | ========================== |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 41 | |
| 42 | Some of the major new features and improvements to Clang are listed |
| 43 | here. Generic improvements to Clang as a whole or to its underlying |
| 44 | infrastructure are described first, followed by language-specific |
| 45 | sections with improvements to Clang's support for those languages. |
| 46 | |
| 47 | Major New Features |
| 48 | ------------------ |
| 49 | |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 50 | - ... |
Rafael Espindola | 3497069 | 2013-12-12 16:07:11 +0000 | [diff] [blame] | 51 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 52 | Improvements to Clang's diagnostics |
| 53 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 54 | |
Malcolm Parsons | c6e4583 | 2017-01-13 18:55:32 +0000 | [diff] [blame] | 55 | - -Wunused-lambda-capture warns when a variable explicitly captured |
| 56 | by a lambda is not used in the body of the lambda. |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 57 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 58 | New Compiler Flags |
| 59 | ------------------ |
| 60 | |
Sylvestre Ledru | f6b4897 | 2016-11-12 10:37:17 +0000 | [diff] [blame] | 61 | The option .... |
| 62 | |
Joerg Sonnenberger | c919968 | 2017-07-01 21:36:21 +0000 | [diff] [blame^] | 63 | Deprecated Compiler Flags |
| 64 | ------------------------- |
| 65 | |
| 66 | The following options are deprecated and ignored. They will be removed in |
| 67 | future versions of Clang. |
| 68 | |
| 69 | - -fslp-vectorize-aggressive used to enable the BB vectorizing pass. They have been superseeded |
| 70 | by the normal SLP vectorizer. |
| 71 | - -fno-slp-vectorize-aggressive used to be the default behavior of clang. |
| 72 | |
Tyler Nowicki | db2668a | 2014-06-18 00:51:32 +0000 | [diff] [blame] | 73 | New Pragmas in Clang |
| 74 | ----------------------- |
| 75 | |
Rafael Espindola | af74250 | 2014-08-22 21:59:11 +0000 | [diff] [blame] | 76 | Clang now supports the ... |
Mark Heffernan | bd26f5e | 2014-07-21 18:08:34 +0000 | [diff] [blame] | 77 | |
Paul Robinson | f9ede1c | 2016-07-18 17:19:12 +0000 | [diff] [blame] | 78 | |
| 79 | Attribute Changes in Clang |
| 80 | -------------------------- |
| 81 | |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 82 | - ... |
Paul Robinson | f9ede1c | 2016-07-18 17:19:12 +0000 | [diff] [blame] | 83 | |
Hans Wennborg | 02dc000 | 2014-08-05 00:21:23 +0000 | [diff] [blame] | 84 | Windows Support |
| 85 | --------------- |
| 86 | |
Rafael Espindola | af74250 | 2014-08-22 21:59:11 +0000 | [diff] [blame] | 87 | Clang's support for building native Windows programs ... |
Hans Wennborg | 02dc000 | 2014-08-05 00:21:23 +0000 | [diff] [blame] | 88 | |
| 89 | |
Renato Golin | f2fcddb | 2013-12-13 09:27:34 +0000 | [diff] [blame] | 90 | C Language Changes in Clang |
| 91 | --------------------------- |
| 92 | |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 93 | - ... |
Pirama Arumuga Nainar | c85c853 | 2016-06-21 16:09:30 +0000 | [diff] [blame] | 94 | |
Renato Golin | f2fcddb | 2013-12-13 09:27:34 +0000 | [diff] [blame] | 95 | ... |
| 96 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 97 | C11 Feature Support |
| 98 | ^^^^^^^^^^^^^^^^^^^ |
| 99 | |
| 100 | ... |
| 101 | |
| 102 | C++ Language Changes in Clang |
| 103 | ----------------------------- |
| 104 | |
Richard Smith | 8eb53c8 | 2016-05-05 18:40:37 +0000 | [diff] [blame] | 105 | ... |
| 106 | |
| 107 | C++1z Feature Support |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 108 | ^^^^^^^^^^^^^^^^^^^^^ |
| 109 | |
| 110 | ... |
| 111 | |
| 112 | Objective-C Language Changes in Clang |
| 113 | ------------------------------------- |
| 114 | |
| 115 | ... |
| 116 | |
Erik Schnetter | 489700d | 2013-11-11 06:36:33 +0000 | [diff] [blame] | 117 | OpenCL C Language Changes in Clang |
| 118 | ---------------------------------- |
| 119 | |
Bill Wendling | 0a794a4b | 2013-11-20 10:13:37 +0000 | [diff] [blame] | 120 | ... |
Erik Schnetter | 489700d | 2013-11-11 06:36:33 +0000 | [diff] [blame] | 121 | |
Alexey Bataev | 44b6750 | 2016-05-31 11:17:08 +0000 | [diff] [blame] | 122 | OpenMP Support in Clang |
| 123 | ---------------------------------- |
| 124 | |
Hans Wennborg | 60d06bf | 2016-07-18 18:05:19 +0000 | [diff] [blame] | 125 | ... |
Alexey Bataev | 44b6750 | 2016-05-31 11:17:08 +0000 | [diff] [blame] | 126 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 127 | Internal API Changes |
| 128 | -------------------- |
| 129 | |
Hans Wennborg | 159d6ad | 2017-01-12 21:55:16 +0000 | [diff] [blame] | 130 | 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] | 131 | Clang. If upgrading an external codebase that uses Clang as a library, |
| 132 | this section should help get you past the largest hurdles of upgrading. |
| 133 | |
Vedant Kumar | 5fb00e4 | 2016-07-27 23:01:55 +0000 | [diff] [blame] | 134 | - ... |
Richard Smith | a0334a9 | 2015-05-14 00:22:12 +0000 | [diff] [blame] | 135 | |
Aaron Ballman | cdc43af | 2015-09-17 13:47:22 +0000 | [diff] [blame] | 136 | AST Matchers |
| 137 | ------------ |
Aaron Ballman | cdc43af | 2015-09-17 13:47:22 +0000 | [diff] [blame] | 138 | |
| 139 | ... |
| 140 | |
Sylvestre Ledru | 72e3fa7 | 2017-03-14 09:43:55 +0000 | [diff] [blame] | 141 | |
| 142 | clang-format |
| 143 | ------------ |
| 144 | |
| 145 | * Option **BreakBeforeInheritanceComma** added to break before ``:`` and ``,`` in case of |
| 146 | multiple inheritance in a class declaration. Enabled by default in the Mozilla coding style. |
| 147 | |
Jonathan Roelofs | 335777b | 2017-03-20 17:07:49 +0000 | [diff] [blame] | 148 | +---------------------+----------------------------------------+ |
| 149 | | true | false | |
| 150 | +=====================+========================================+ |
| 151 | | .. code-block:: c++ | .. code-block:: c++ | |
| 152 | | | | |
| 153 | | class MyClass | class MyClass : public X, public Y { | |
| 154 | | : public X | }; | |
| 155 | | , public Y { | | |
| 156 | | }; | | |
| 157 | +---------------------+----------------------------------------+ |
Sylvestre Ledru | 72e3fa7 | 2017-03-14 09:43:55 +0000 | [diff] [blame] | 158 | |
Krasimir Georgiev | 18f4aed | 2017-03-14 10:34:39 +0000 | [diff] [blame] | 159 | * Align block comment decorations. |
Sylvestre Ledru | 72e3fa7 | 2017-03-14 09:43:55 +0000 | [diff] [blame] | 160 | |
Jonathan Roelofs | 335777b | 2017-03-20 17:07:49 +0000 | [diff] [blame] | 161 | +----------------------+---------------------+ |
| 162 | | Before | After | |
| 163 | +======================+=====================+ |
| 164 | | .. code-block:: c++ | .. code-block:: c++ | |
| 165 | | | | |
| 166 | | /* line 1 | /* line 1 | |
| 167 | | * line 2 | * line 2 | |
| 168 | | */ | */ | |
| 169 | +----------------------+---------------------+ |
Sylvestre Ledru | 72e3fa7 | 2017-03-14 09:43:55 +0000 | [diff] [blame] | 170 | |
Krasimir Georgiev | 18f4aed | 2017-03-14 10:34:39 +0000 | [diff] [blame] | 171 | * The :doc:`ClangFormatStyleOptions` documentation provides detailed examples for most options. |
| 172 | |
| 173 | * Namespace end comments are now added or updated automatically. |
| 174 | |
Jonathan Roelofs | 335777b | 2017-03-20 17:07:49 +0000 | [diff] [blame] | 175 | +---------------------+---------------------+ |
| 176 | | Before | After | |
| 177 | +=====================+=====================+ |
| 178 | | .. code-block:: c++ | .. code-block:: c++ | |
| 179 | | | | |
| 180 | | namespace A { | namespace A { | |
| 181 | | int i; | int i; | |
| 182 | | int j; | int j; | |
| 183 | | } | } | |
| 184 | +---------------------+---------------------+ |
Krasimir Georgiev | 18f4aed | 2017-03-14 10:34:39 +0000 | [diff] [blame] | 185 | |
| 186 | * Comment reflow support added. Overly long comment lines will now be reflown with the rest of |
| 187 | the paragraph instead of just broken. Option **ReflowComments** added and enabled by default. |
Sylvestre Ledru | 72e3fa7 | 2017-03-14 09:43:55 +0000 | [diff] [blame] | 188 | |
Ted Kremenek | 3a2291b | 2013-04-24 07:33:52 +0000 | [diff] [blame] | 189 | libclang |
| 190 | -------- |
| 191 | |
Bill Wendling | 61f44cc | 2013-06-04 06:17:46 +0000 | [diff] [blame] | 192 | ... |
Ted Kremenek | 3a2291b | 2013-04-24 07:33:52 +0000 | [diff] [blame] | 193 | |
Sylvestre Ledru | ea49d3a | 2016-08-06 20:23:54 +0000 | [diff] [blame] | 194 | |
Anna Zaks | b6219a9 | 2013-04-25 23:14:38 +0000 | [diff] [blame] | 195 | Static Analyzer |
Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 196 | --------------- |
Anna Zaks | b6219a9 | 2013-04-25 23:14:38 +0000 | [diff] [blame] | 197 | |
Bill Wendling | 0a794a4b | 2013-11-20 10:13:37 +0000 | [diff] [blame] | 198 | ... |
Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 199 | |
Vedant Kumar | 840c2c7 | 2017-06-13 02:52:31 +0000 | [diff] [blame] | 200 | Undefined Behavior Sanitizer (UBSan) |
| 201 | ------------------------------------ |
| 202 | |
| 203 | - The Undefined Behavior Sanitizer has a new check for pointer overflow. This |
| 204 | check is on by default. The flag to control this functionality is |
| 205 | -fsanitize=pointer-overflow. |
| 206 | |
| 207 | Pointer overflow is an indicator of undefined behavior: when a pointer |
| 208 | indexing expression wraps around the address space, or produces other |
| 209 | unexpected results, its result may not point to a valid object. |
| 210 | |
| 211 | - UBSan has several new checks which detect violations of nullability |
| 212 | annotations. These checks are off by default. The flag to control this group |
| 213 | of checks is -fsanitize=nullability. The checks can be individially enabled |
| 214 | by -fsanitize=nullability-arg (which checks calls), |
| 215 | -fsanitize=nullability-assign (which checks assignments), and |
| 216 | -fsanitize=nullability-return (which checks return statements). |
| 217 | |
| 218 | - UBSan can now detect invalid loads from bitfields and from ObjC BOOLs. |
| 219 | |
| 220 | - UBSan can now avoid emitting unnecessary type checks in C++ class methods and |
| 221 | in several other cases where the result is known at compile-time. UBSan can |
| 222 | also avoid emitting unnecessary overflow checks in arithmetic expressions |
| 223 | with promoted integer operands. |
| 224 | |
Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 225 | Core Analysis Improvements |
| 226 | ========================== |
| 227 | |
Bill Wendling | 61f44cc | 2013-06-04 06:17:46 +0000 | [diff] [blame] | 228 | - ... |
Ted Kremenek | 004e823 | 2013-04-26 00:01:34 +0000 | [diff] [blame] | 229 | |
| 230 | New Issues Found |
| 231 | ================ |
| 232 | |
Bill Wendling | 61f44cc | 2013-06-04 06:17:46 +0000 | [diff] [blame] | 233 | - ... |
Anna Zaks | b6219a9 | 2013-04-25 23:14:38 +0000 | [diff] [blame] | 234 | |
Sean Silva | fe25144 | 2012-12-23 01:19:35 +0000 | [diff] [blame] | 235 | Python Binding Changes |
| 236 | ---------------------- |
| 237 | |
| 238 | The following methods have been added: |
| 239 | |
| 240 | - ... |
| 241 | |
| 242 | Significant Known Problems |
| 243 | ========================== |
| 244 | |
| 245 | Additional Information |
| 246 | ====================== |
| 247 | |
| 248 | A wide variety of additional information is available on the `Clang web |
| 249 | page <http://clang.llvm.org/>`_. The web page contains versions of the |
| 250 | API documentation which are up-to-date with the Subversion version of |
| 251 | the source code. You can access versions of these documents specific to |
| 252 | this release by going into the "``clang/docs/``" directory in the Clang |
| 253 | tree. |
| 254 | |
| 255 | If you have any questions or comments about Clang, please feel free to |
| 256 | contact us via the `mailing |
Tanya Lattner | 4a08e93 | 2015-08-05 03:55:23 +0000 | [diff] [blame] | 257 | list <http://lists.llvm.org/mailman/listinfo/cfe-dev>`_. |