Clang 3.0 Release Notes

Introduction
This document contains the release notes for the Clang C/C++/Objective-C frontend, part of the LLVM Compiler Infrastructure, release 3.0. Here we describe the status of Clang in some detail, including major improvements from the previous release and new feature work. For the general LLVM release notes, see the LLVM documentation. All LLVM releases may be downloaded from the LLVM releases web site.
For more information about Clang or LLVM, including information about the latest release, please check out the main please see the Clang Web Site or the LLVM Web Site.
Note that if you are reading this file from a Subversion checkout or the main Clang web page, this document applies to the next release, not the current one. To see the release notes for a specific release, please see the releases page.
What's New in Clang 3.0?
Some of the major new features and improvements to Clang are listed here. Generic improvements to Clang as a whole or two its underlying infrastructure are described first, followed by language-specific sections with improvements to Clang's support for those languages.
Major New Features
Unorganized Notes
These are completely random notes as I'm organizing my thoughts and reviewing the history. Anything still here needs to be distilled and turned into proper prose in a section of its own. When doing that, delete the notes.
- Building Clang on windows -- mingw, 32 and 64 bit, native windows builds, cygwin. get chapuni to flesh out details.
- Compiling C/C++ w/ MinGW (32/64) and Cygwin on Windows -- chapuni
- C++ -- Parsing and AST support for Windows Structured Exception Handling.
- Uninitialized values Clang warning rewrite -- more accurate, faster, able to differentiate between the possibility of an uninitialized use and the certainty of an uninitialized use.
- Support for language specific address spaces
- Support for compiling on NetBSD systems -- Joerg Sonnenberger to fill out
- Support for '--sysroot' based cross-compilation
- Crash recovery handling for libclang clients -- Ted
- Driver support for automatic preparation of reproduction steps for compiler crashes -- Chad
- OS Availability attribute -- r128127
- GNU ObjectiveC Runtime support -- David Chisnall
- libclang improvements bucket
- Better Python Bindings
- More AST coverage
- Improved cursor support within macros, especially function-style macro arguments.
- Improved code completion surrounding macros, macro arguments, and token pasting.
- Improved code completion for in-class member functions.
- Basic C++ support in the static analyzer.
- Improved AST support for partially constructed nodes and incomplete information for LLDB and other clients which dynamically build AST nodes.
- Largely complete MSVC-compatible parsing mode -- fpichet
- C1X -- static asserts and generic selections
- Memory reduction -- initializers, macro expansions, source locations, etc.
- The Embarcadero __is_lvalue_expr and __is_rvalue_expr expression traits.
- CFI-based debug info -- nlewycky/espindola details
- ObjC ARC -- get a blurb from rjmccall
- ObjC related result type/instancetype
- Thread Safety attributes and correctness analysis added to Clang.
- NRVO for blocks.
- Major improvements to the interactions between serializing and deserializing the AST and the preprocessor -- argiris
A multitude of improvements to Clang's diagnostics
Clang's diagnostics are constantly being improved to catch more issues, explain them more clearly, and provide more accurate source information about them. A few improvements since the 2.9 release that have a particularly high impact:- Substantially shorter messages due to better recovery, fewer include stacks, and tuning verbose features such as 'a.k.a.' type printing.
-
Able to recover and correct from misspelled type names at the begging of statements. For example, Clang now emits:
t.c:6:3: error: use of undeclared identifier 'integer'; did you mean 'Integer'? integer *i = 0; ^~~~~~~ Integer t.c:1:13: note: 'Integer' declared here typedef int Integer; ^
- Expanded typo correction to (among other improvements) look across namespaces and suggest namespace qualifiers in addition to misspellings of the identifier itself.
- More rich macro expansion backtraces and some (limited) fix-it hints when diagnostics stem from macro arguments.
The Clang GCC-compatible command-line driver improved dramatically
A great deal of work went into the GCC-compatible driver for the 3.0 release making it support more operating systems, emulate GCC behavior more accurately, and support a much broader range of Linux distributions out of the box.- More accurate support for hardware architecture pre-defined macros (e.g., __i686__).
- Robust library and header search paths for the vast majority of x86 and x86-64 Linux distributions.
- Improved support for newer Darwin platforms.
- Partial support for
--sysroot=...
based cross-compiling on Linux (and similar) host systems. - Improved support for locating and using libcxx when installed, especially on Darwin.
Expanded support for instrumenting the preprocessor through callbacks
Several enhancements were made to thePPCallbacks
interface to
expand the information available to tools and library users of Clang that wish
to introspect the preprocessing.
- The exact text used between the
""
s or<>
s is reported. - The header search path used to locate the header is reported.
- Missing files during including headers reported.
- The exact source range for expanded macros can be retrieved.
C Language Changes in Clang
C++ Language Changes in Clang
C++11 Feature Support
Clang 3.0 adds support for
more of the language
features added in the latest ISO C++ standard, C++11. Use
-std=c++11
or -std=gnu++11
to enable support for these
features. The following are now considered to be of production quality:
- Range-based
for
loops - Alias declarations (a new syntax for
typedef
declarations), including theirtemplate
forms - Specifying default values for class data members within a class definition
- Constructors delegating to other constructors of the same class
- The
override
context-sensitive keyword for virtual member function declarations - Explicitly generating default function definitions with
= default
- The
nullptr
keyword, and the corresponding type - Raw string literals with arbitary delimiters (for instance,
R"delim(str"ing)delim"
) - Unicode string literals (for instance,
U"\u1234"
) and thechar16_t
andchar32_t
built-in types noexcept
expressions and thenoexcept
specifier on function declarationsalignof
expressions and thealignas
specifier on variable declarations- A full set of type traits, sufficient to support C++11 standard libraries
c++0x
now accept c++11
. The old c++0x
form remains as an alias.
Objective-C Language Changes in Clang
Internal API Changes
These are major API changes that have happened since the 2.9 release of Clang. If upgrading an external codebase that uses Clang as a library, this section should help get you past the largest hurdles of upgrading.Switched terminology from "instantiation" to "expansion" for macros
A great deal of comments and code changes fell out of this, but also every API relating to macros with the word "instantiation" (or some variant thereof) was renamed. An incomplete list of the most note-worthy ones is here:MacroInstantiation
becameMacroExpansion
SourceManager::getInstantiationLoc
becameSourceManager::getExpansionLoc
SourceManager::getInstantiationRange
becameSourceManager::getExpansionRange
SourceManager::getImmediateInstantiationRange
becameSourceManager::getImmediateExpansionRange
SourceManager::getDecomposedInstantiationLoc
becameSourceManager::getDecomposedExpansionLoc
SourceManager::getInstantiationColumnNumber
becameSourceManager::getExpansionColumnNumber
SourceManager::getInstantiationLineNumber
becameSourceManager::getExpansionLineNumber
Diagnostic class names were shuffled
Diagnostic
becameDiagnosticEngine
DiagnosticClient
becameDiagnosticConsumer
DiagnosticInfo
becameDiagnostic
DiagnosticConsumer
were also then renamed to end with
Consumer
.
Significant Known Problems
Additional Information
A wide variety of additional information is available on the Clang web page. The web page contains versions of the API documentation which are up-to-date with the Subversion version of the source code. You can access versions of these documents specific to this release by going into the "clang/doc/" directory in the Clang tree.
If you have any questions or comments about Clang, please feel free to contact us via the mailing list.