r180585 - Further wordsmith release notes for the static analyzer.

Ted Kremenek kremenek at apple.com
Thu Apr 25 17:01:34 PDT 2013


Author: kremenek
Date: Thu Apr 25 19:01:34 2013
New Revision: 180585

URL: http://llvm.org/viewvc/llvm-project?rev=180585&view=rev
Log:
Further wordsmith release notes for the static analyzer.

Modified:
    cfe/trunk/docs/ReleaseNotes.rst

Modified: cfe/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ReleaseNotes.rst?rev=180585&r1=180584&r2=180585&view=diff
==============================================================================
--- cfe/trunk/docs/ReleaseNotes.rst (original)
+++ cfe/trunk/docs/ReleaseNotes.rst Thu Apr 25 19:01:34 2013
@@ -139,14 +139,25 @@ original behavior.  Moreover, this also
 appearing to contain any CXCursor.
 
 Static Analyzer
---------
-We've continued the work on improving the core analysis and added several new memory management checks:
+---------------
 
-- Support for reasoning about constructors and destructors
-- New false positive suppression mechanisms that reduced the number of null pointer dereference warnings
+The static analyzer (which contains additional code checking beyond compiler
+warnings) has improved significantly in both in the core analysis engine and 
+also in the kinds of issues it can find.
+
+Core Analysis Improvements
+==========================
+
+- Support for interprocedural reasoning about constructors and destructors.
+- New false positive suppression mechanisms that reduced the number of false null pointer dereference warnings due to interprocedural analysis.
 - Major performance enhancements to speed up interprocedural analysis
-- New memory error checks such as use-after-free with C++ 'delete', mismatched allocators and deallocators
-- Additional checks for misuse of Apple Foundation framework collection APIs
+
+New Issues Found
+================
+
+- New memory error checks such as use-after-free with C++ 'delete'.
+- Detection of mismatched allocators and deallocators (e.g., using 'new' with 'free()', 'malloc()' with 'delete').
+- Additional checks for misuses of Apple Foundation framework collection APIs.
 
 Python Binding Changes
 ----------------------





More information about the cfe-commits mailing list