]> granicus.if.org Git - clang/commitdiff
[ubsan-minimal] Document the new runtime
authorVedant Kumar <vsk@apple.com>
Mon, 11 Sep 2017 21:37:05 +0000 (21:37 +0000)
committerVedant Kumar <vsk@apple.com>
Mon, 11 Sep 2017 21:37:05 +0000 (21:37 +0000)
Differential Revision: https://reviews.llvm.org/D37647

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@312957 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ReleaseNotes.rst
docs/UndefinedBehaviorSanitizer.rst

index 60d418bd4a01243d056511c7fbaf314f83eb8c87..6f4644c01cd88167f94d8ee32029bc43e9658f62 100644 (file)
@@ -229,7 +229,10 @@ Static Analyzer
 Undefined Behavior Sanitizer (UBSan)
 ------------------------------------
 
-...
+* A minimal runtime is now available. It is suitable for use in production
+  environments, and has a small attack surface. It only provides very basic
+  issue logging and deduplication, and does not support ``-fsanitize=vptr``
+  checking.
 
 Core Analysis Improvements
 ==========================
index 5b43e2ef84758ed37e650eae58ab5762fe0aadda..ed9357754caf11024881d2d2518c899315c123ef 100644 (file)
@@ -155,6 +155,19 @@ Volatile
 The ``null``, ``alignment``, ``object-size``, and ``vptr`` checks do not apply
 to pointers to types with the ``volatile`` qualifier.
 
+Minimal Runtime
+===============
+
+There is a minimal UBSan runtime available suitable for use in production
+environments. This runtime has a small attack surface. It only provides very
+basic issue logging and deduplication, and does not support ``-fsanitize=vptr``
+checking.
+
+To use the minimal runtime, add ``-fsanitize-minimal-runtime`` to the clang
+command line options. For example, if you're used to compiling with
+``-fsanitize=undefined``, you could enable the minimal runtime with
+``-fsanitize=undefined -fsanitize-minimal-runtime``.
+
 Stack traces and report symbolization
 =====================================
 If you want UBSan to print symbolized stack trace for each error report, you