summaryrefslogtreecommitdiffstats
path: root/docs/LanguageExtensions.html
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2012-01-24 19:25:38 +0000
committerKostya Serebryany <kcc@google.com>2012-01-24 19:25:38 +0000
commit71efba0bbafaefab14419fbd284efff5f7acade7 (patch)
tree0e1a4b575a21aa22ff23d2e9974809ceaf1e97ca /docs/LanguageExtensions.html
parent5d84bb418405e1256020a66895d163756886b102 (diff)
The following patch adds __attribute__((no_address_safety_analysis)) which will allow to disable
address safety analysis (such as e.g. AddressSanitizer or SAFECode) for a specific function. When building with AddressSanitizer, add AddressSafety function attribute to every generated function except for those that have __attribute__((no_address_safety_analysis)). With this patch we will be able to 1. disable AddressSanitizer for a particular function 2. disable AddressSanitizer-hostile optimizations (such as some cases of load widening) when AddressSanitizer is on. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148842 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LanguageExtensions.html')
-rw-r--r--docs/LanguageExtensions.html4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/LanguageExtensions.html b/docs/LanguageExtensions.html
index 7b832bab92..7693d24154 100644
--- a/docs/LanguageExtensions.html
+++ b/docs/LanguageExtensions.html
@@ -1453,6 +1453,10 @@ balance in some way.</p>
to check if the code is being built with <a
href="AddressSanitizer.html">AddressSanitizer</a>.
</p>
+<p>Use <tt>__attribute__((no_address_safety_analysis))</tt> on a function
+declaration to specify that address safety instrumentation (e.g.
+AddressSanitizer) should not be applied to that function.
+</p>
<!-- ======================================================================= -->
<h2 id="threadsafety">Thread-Safety Annotation Checking</h2>