Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 1 | <html> |
| 2 | <head> |
| 3 | <title>Clang Language Extensions</title> |
| 4 | <link type="text/css" rel="stylesheet" href="../menu.css" /> |
| 5 | <link type="text/css" rel="stylesheet" href="../content.css" /> |
| 6 | <style type="text/css"> |
| 7 | td { |
| 8 | vertical-align: top; |
| 9 | } |
| 10 | </style> |
| 11 | </head> |
| 12 | <body> |
| 13 | |
| 14 | <!--#include virtual="../menu.html.incl"--> |
| 15 | |
| 16 | <div id="content"> |
| 17 | |
| 18 | <h1>Clang Language Extensions</h1> |
| 19 | |
| 20 | <ul> |
| 21 | <li><a href="#intro">Introduction</a></li> |
Chris Lattner | 148772a | 2009-06-13 07:13:28 +0000 | [diff] [blame] | 22 | <li><a href="#feature_check">Feature Checking Macros</a></li> |
Chris Lattner | 81edc9f | 2009-04-13 02:45:46 +0000 | [diff] [blame] | 23 | <li><a href="#builtinmacros">Builtin Macros</a></li> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 24 | <li><a href="#vectors">Vectors and Extended Vectors</a></li> |
| 25 | <li><a href="#blocks">Blocks</a></li> |
Douglas Gregor | cb54d43 | 2009-02-13 00:57:04 +0000 | [diff] [blame] | 26 | <li><a href="#overloading-in-c">Function Overloading in C</a></li> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 27 | <li><a href="#builtins">Builtin Functions</a> |
| 28 | <ul> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 29 | <li><a href="#__builtin_shufflevector">__builtin_shufflevector</a></li> |
Chris Lattner | 21190d5 | 2009-09-21 03:09:59 +0000 | [diff] [blame] | 30 | <li><a href="#__builtin_unreachable">__builtin_unreachable</a></li> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 31 | </ul> |
| 32 | </li> |
Chris Lattner | 1177f91 | 2009-04-09 19:58:15 +0000 | [diff] [blame] | 33 | <li><a href="#targetspecific">Target-Specific Extensions</a> |
| 34 | <ul> |
| 35 | <li><a href="#x86-specific">X86/X86-64 Language Extensions</a></li> |
| 36 | </ul> |
| 37 | </li> |
Ted Kremenek | ed86931 | 2009-04-10 05:03:33 +0000 | [diff] [blame] | 38 | <li><a href="#analyzerspecific">Static Analysis-Specific Extensions</a> |
| 39 | <ul> |
| 40 | <li><a href="#analyzerattributes">Analyzer Attributes</a></li> |
| 41 | </ul> |
| 42 | </li> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 43 | </ul> |
| 44 | |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 45 | <!-- ======================================================================= --> |
| 46 | <h2 id="intro">Introduction</h2> |
| 47 | <!-- ======================================================================= --> |
| 48 | |
| 49 | <p>This document describes the language extensions provided by Clang. In |
Chris Lattner | 148772a | 2009-06-13 07:13:28 +0000 | [diff] [blame] | 50 | addition to the language extensions listed here, Clang aims to support a broad |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 51 | range of GCC extensions. Please see the <a |
| 52 | href="http://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html">GCC manual</a> for |
| 53 | more information on these extensions.</p> |
| 54 | |
| 55 | <!-- ======================================================================= --> |
Chris Lattner | 148772a | 2009-06-13 07:13:28 +0000 | [diff] [blame] | 56 | <h2 id="feature_check">Feature Checking Macros</h2> |
| 57 | <!-- ======================================================================= --> |
| 58 | |
| 59 | <p>Language extensions can be very useful, but only if you know you can depend |
| 60 | on them. In order to allow fine-grain features checks, we support two builtin |
| 61 | function-like macros. This allows you to directly test for a feature in your |
| 62 | code without having to resort to something like autoconf or fragile "compiler |
| 63 | version checks".</p> |
| 64 | |
| 65 | <!-- ======================================================================= --> |
| 66 | <h3 id="__has_builtin">__has_builtin</h3> |
| 67 | <!-- ======================================================================= --> |
| 68 | |
| 69 | <p>This function-like macro takes a single identifier argument that is the name |
| 70 | of a builtin function. It evaluates to 1 if the builtin is supported or 0 if |
| 71 | not. It can be used like this:</p> |
| 72 | |
| 73 | <blockquote> |
| 74 | <pre> |
| 75 | #ifndef __has_builtin // Optional of course. |
| 76 | #define __has_builtin(x) 0 // Compatibility with non-clang compilers. |
| 77 | #endif |
| 78 | |
| 79 | ... |
| 80 | #if __has_builtin(__builtin_trap) |
| 81 | __builtin_trap(); |
| 82 | #else |
| 83 | abort(); |
| 84 | #endif |
| 85 | ... |
| 86 | </pre> |
| 87 | </blockquote> |
| 88 | |
| 89 | |
| 90 | <!-- ======================================================================= --> |
| 91 | <h3 id="__has_feature">__has_feature</h3> |
| 92 | <!-- ======================================================================= --> |
| 93 | |
| 94 | <p>This function-like macro takes a single identifier argument that is the name |
| 95 | of a feature. It evaluates to 1 if the feature is supported or 0 if not. It |
| 96 | can be used like this:</p> |
| 97 | |
| 98 | <blockquote> |
| 99 | <pre> |
| 100 | #ifndef __has_feature // Optional of course. |
| 101 | #define __has_feature(x) 0 // Compatibility with non-clang compilers. |
| 102 | #endif |
| 103 | |
| 104 | ... |
| 105 | #if __has_feature(attribute_overloadable) || \ |
| 106 | __has_feature(blocks) |
| 107 | ... |
| 108 | #endif |
| 109 | ... |
| 110 | </pre> |
| 111 | </blockquote> |
| 112 | |
| 113 | <p>The feature tag is described along with the language feature below.</p> |
| 114 | |
| 115 | |
| 116 | <!-- ======================================================================= --> |
Chris Lattner | 81edc9f | 2009-04-13 02:45:46 +0000 | [diff] [blame] | 117 | <h2 id="builtinmacros">Builtin Macros</h2> |
| 118 | <!-- ======================================================================= --> |
| 119 | |
| 120 | <p>__BASE_FILE__, __INCLUDE_LEVEL__, __TIMESTAMP__, __COUNTER__</p> |
| 121 | |
| 122 | <!-- ======================================================================= --> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 123 | <h2 id="vectors">Vectors and Extended Vectors</h2> |
| 124 | <!-- ======================================================================= --> |
| 125 | |
| 126 | <p>Supports the GCC vector extensions, plus some stuff like V[1]. ext_vector |
| 127 | with V.xyzw syntax and other tidbits. See also <a |
| 128 | href="#__builtin_shufflevector">__builtin_shufflevector</a>.</p> |
| 129 | |
Chris Lattner | 148772a | 2009-06-13 07:13:28 +0000 | [diff] [blame] | 130 | <p>Query for this feature with __has_feature(attribute_ext_vector_type).</p> |
| 131 | |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 132 | <!-- ======================================================================= --> |
| 133 | <h2 id="blocks">Blocks</h2> |
| 134 | <!-- ======================================================================= --> |
| 135 | |
Chris Lattner | a7dbdf5 | 2009-03-09 07:03:22 +0000 | [diff] [blame] | 136 | <p>The syntax and high level language feature description is in <a |
| 137 | href="BlockLanguageSpec.txt">BlockLanguageSpec.txt</a>. Implementation and ABI |
| 138 | details for the clang implementation are in <a |
| 139 | href="BlockImplementation.txt">BlockImplementation.txt</a>.</p> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 140 | |
Chris Lattner | 148772a | 2009-06-13 07:13:28 +0000 | [diff] [blame] | 141 | |
| 142 | <p>Query for this feature with __has_feature(blocks).</p> |
| 143 | |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 144 | <!-- ======================================================================= --> |
Douglas Gregor | cb54d43 | 2009-02-13 00:57:04 +0000 | [diff] [blame] | 145 | <h2 id="overloading-in-c">Function Overloading in C</h2> |
| 146 | <!-- ======================================================================= --> |
| 147 | |
Chris Lattner | f161d41 | 2009-02-13 21:51:45 +0000 | [diff] [blame] | 148 | <p>Clang provides support for C++ function overloading in C. Function |
| 149 | overloading in C is introduced using the <tt>overloadable</tt> attribute. For |
| 150 | example, one might provide several overloaded versions of a <tt>tgsin</tt> |
| 151 | function that invokes the appropriate standard function computing the sine of a |
| 152 | value with <tt>float</tt>, <tt>double</tt>, or <tt>long double</tt> |
| 153 | precision:</p> |
Douglas Gregor | cb54d43 | 2009-02-13 00:57:04 +0000 | [diff] [blame] | 154 | |
| 155 | <blockquote> |
| 156 | <pre> |
| 157 | #include <math.h> |
| 158 | float <b>__attribute__((overloadable))</b> tgsin(float x) { return sinf(x); } |
| 159 | double <b>__attribute__((overloadable))</b> tgsin(double x) { return sin(x); } |
| 160 | long double <b>__attribute__((overloadable))</b> tgsin(long double x) { return sinl(x); } |
| 161 | </pre> |
| 162 | </blockquote> |
| 163 | |
| 164 | <p>Given these declarations, one can call <tt>tgsin</tt> with a |
| 165 | <tt>float</tt> value to receive a <tt>float</tt> result, with a |
| 166 | <tt>double</tt> to receive a <tt>double</tt> result, etc. Function |
| 167 | overloading in C follows the rules of C++ function overloading to pick |
| 168 | the best overload given the call arguments, with a few C-specific |
| 169 | semantics:</p> |
| 170 | <ul> |
| 171 | <li>Conversion from <tt>float</tt> or <tt>double</tt> to <tt>long |
| 172 | double</tt> is ranked as a floating-point promotion (per C99) rather |
| 173 | than as a floating-point conversion (as in C++).</li> |
| 174 | |
| 175 | <li>A conversion from a pointer of type <tt>T*</tt> to a pointer of type |
| 176 | <tt>U*</tt> is considered a pointer conversion (with conversion |
| 177 | rank) if <tt>T</tt> and <tt>U</tt> are compatible types.</li> |
| 178 | |
| 179 | <li>A conversion from type <tt>T</tt> to a value of type <tt>U</tt> |
| 180 | is permitted if <tt>T</tt> and <tt>U</tt> are compatible types. This |
| 181 | conversion is given "conversion" rank.</li> |
| 182 | </ul> |
| 183 | |
| 184 | <p>The declaration of <tt>overloadable</tt> functions is restricted to |
| 185 | function declarations and definitions. Most importantly, if any |
| 186 | function with a given name is given the <tt>overloadable</tt> |
| 187 | attribute, then all function declarations and definitions with that |
| 188 | name (and in that scope) must have the <tt>overloadable</tt> |
Chris Lattner | f161d41 | 2009-02-13 21:51:45 +0000 | [diff] [blame] | 189 | attribute. This rule even applies to redeclarations of functions whose original |
| 190 | declaration had the <tt>overloadable</tt> attribute, e.g.,</p> |
Douglas Gregor | cb54d43 | 2009-02-13 00:57:04 +0000 | [diff] [blame] | 191 | |
| 192 | <blockquote> |
| 193 | <pre> |
| 194 | int f(int) __attribute__((overloadable)); |
| 195 | float f(float); <i>// error: declaration of "f" must have the "overloadable" attribute</i> |
| 196 | |
| 197 | int g(int) __attribute__((overloadable)); |
| 198 | int g(int) { } <i>// error: redeclaration of "g" must also have the "overloadable" attribute</i> |
| 199 | </pre> |
| 200 | </blockquote> |
| 201 | |
Douglas Gregor | 965acbb | 2009-02-18 07:07:28 +0000 | [diff] [blame] | 202 | <p>Functions marked <tt>overloadable</tt> must have |
| 203 | prototypes. Therefore, the following code is ill-formed:</p> |
| 204 | |
| 205 | <blockquote> |
| 206 | <pre> |
| 207 | int h() __attribute__((overloadable)); <i>// error: h does not have a prototype</i> |
| 208 | </pre> |
| 209 | </blockquote> |
| 210 | |
| 211 | <p>However, <tt>overloadable</tt> functions are allowed to use a |
| 212 | ellipsis even if there are no named parameters (as is permitted in C++). This feature is particularly useful when combined with the <tt>unavailable</tt> attribute:</p> |
| 213 | |
| 214 | <blockquote> |
| 215 | <pre> |
Chris Lattner | 0224680 | 2009-02-18 22:27:46 +0000 | [diff] [blame] | 216 | void honeypot(...) __attribute__((overloadable, unavailable)); <i>// calling me is an error</i> |
Douglas Gregor | 965acbb | 2009-02-18 07:07:28 +0000 | [diff] [blame] | 217 | </pre> |
| 218 | </blockquote> |
| 219 | |
Douglas Gregor | cb54d43 | 2009-02-13 00:57:04 +0000 | [diff] [blame] | 220 | <p>Functions declared with the <tt>overloadable</tt> attribute have |
| 221 | their names mangled according to the same rules as C++ function |
| 222 | names. For example, the three <tt>tgsin</tt> functions in our |
| 223 | motivating example get the mangled names <tt>_Z5tgsinf</tt>, |
| 224 | <tt>_Z5tgsind</tt>, and <tt>Z5tgsine</tt>, respectively. There are two |
| 225 | caveats to this use of name mangling:</p> |
| 226 | |
| 227 | <ul> |
| 228 | |
| 229 | <li>Future versions of Clang may change the name mangling of |
| 230 | functions overloaded in C, so you should not depend on an specific |
| 231 | mangling. To be completely safe, we strongly urge the use of |
| 232 | <tt>static inline</tt> with <tt>overloadable</tt> functions.</li> |
| 233 | |
| 234 | <li>The <tt>overloadable</tt> attribute has almost no meaning when |
| 235 | used in C++, because names will already be mangled and functions are |
| 236 | already overloadable. However, when an <tt>overloadable</tt> |
| 237 | function occurs within an <tt>extern "C"</tt> linkage specification, |
| 238 | it's name <i>will</i> be mangled in the same way as it would in |
| 239 | C.</li> |
| 240 | </ul> |
| 241 | |
Chris Lattner | 148772a | 2009-06-13 07:13:28 +0000 | [diff] [blame] | 242 | <p>Query for this feature with __has_feature(attribute_overloadable).</p> |
| 243 | |
| 244 | |
Douglas Gregor | cb54d43 | 2009-02-13 00:57:04 +0000 | [diff] [blame] | 245 | <!-- ======================================================================= --> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 246 | <h2 id="builtins">Builtin Functions</h2> |
| 247 | <!-- ======================================================================= --> |
| 248 | |
| 249 | <p>Clang supports a number of builtin library functions with the same syntax as |
| 250 | GCC, including things like <tt>__builtin_nan</tt>, |
| 251 | <tt>__builtin_constant_p</tt>, <tt>__builtin_choose_expr</tt>, |
| 252 | <tt>__builtin_types_compatible_p</tt>, <tt>__sync_fetch_and_add</tt>, etc. In |
| 253 | addition to the GCC builtins, Clang supports a number of builtins that GCC does |
| 254 | not, which are listed here.</p> |
| 255 | |
| 256 | <p>Please note that Clang does not and will not support all of the GCC builtins |
| 257 | for vector operations. Instead of using builtins, you should use the functions |
| 258 | defined in target-specific header files like <tt><xmmintrin.h></tt>, which |
| 259 | define portable wrappers for these. Many of the Clang versions of these |
| 260 | functions are implemented directly in terms of <a href="#vectors">extended |
| 261 | vector support</a> instead of builtins, in order to reduce the number of |
| 262 | builtins that we need to implement.</p> |
| 263 | |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 264 | <!-- ======================================================================= --> |
Chris Lattner | 6f72da5 | 2009-02-13 20:00:20 +0000 | [diff] [blame] | 265 | <h3 id="__builtin_shufflevector">__builtin_shufflevector</h3> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 266 | <!-- ======================================================================= --> |
| 267 | |
Chris Lattner | aad826b | 2009-09-16 18:56:12 +0000 | [diff] [blame] | 268 | <p><tt>__builtin_shufflevector</tt> is used to express generic vector |
Chris Lattner | 6f72da5 | 2009-02-13 20:00:20 +0000 | [diff] [blame] | 269 | permutation/shuffle/swizzle operations. This builtin is also very important for |
| 270 | the implementation of various target-specific header files like |
| 271 | <tt><xmmintrin.h></tt>. |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 272 | </p> |
| 273 | |
| 274 | <p><b>Syntax:</b></p> |
| 275 | |
| 276 | <pre> |
Chris Lattner | 6f72da5 | 2009-02-13 20:00:20 +0000 | [diff] [blame] | 277 | __builtin_shufflevector(vec1, vec2, index1, index2, ...) |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 278 | </pre> |
| 279 | |
| 280 | <p><b>Examples:</b></p> |
| 281 | |
| 282 | <pre> |
Chris Lattner | 6f72da5 | 2009-02-13 20:00:20 +0000 | [diff] [blame] | 283 | // Identity operation - return 4-element vector V1. |
| 284 | __builtin_shufflevector(V1, V1, 0, 1, 2, 3) |
| 285 | |
| 286 | // "Splat" element 0 of V1 into a 4-element result. |
| 287 | __builtin_shufflevector(V1, V1, 0, 0, 0, 0) |
| 288 | |
| 289 | // Reverse 4-element vector V1. |
| 290 | __builtin_shufflevector(V1, V1, 3, 2, 1, 0) |
| 291 | |
| 292 | // Concatenate every other element of 4-element vectors V1 and V2. |
| 293 | __builtin_shufflevector(V1, V2, 0, 2, 4, 6) |
| 294 | |
| 295 | // Concatenate every other element of 8-element vectors V1 and V2. |
| 296 | __builtin_shufflevector(V1, V2, 0, 2, 4, 6, 8, 10, 12, 14) |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 297 | </pre> |
| 298 | |
| 299 | <p><b>Description:</b></p> |
| 300 | |
Chris Lattner | 6f72da5 | 2009-02-13 20:00:20 +0000 | [diff] [blame] | 301 | <p>The first two arguments to __builtin_shufflevector are vectors that have the |
| 302 | same element type. The remaining arguments are a list of integers that specify |
| 303 | the elements indices of the first two vectors that should be extracted and |
| 304 | returned in a new vector. These element indices are numbered sequentially |
| 305 | starting with the first vector, continuing into the second vector. Thus, if |
| 306 | vec1 is a 4-element vector, index 5 would refer to the second element of vec2. |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 307 | </p> |
| 308 | |
Chris Lattner | 6f72da5 | 2009-02-13 20:00:20 +0000 | [diff] [blame] | 309 | <p>The result of __builtin_shufflevector is a vector |
| 310 | with the same element type as vec1/vec2 but that has an element count equal to |
| 311 | the number of indices specified. |
| 312 | </p> |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 313 | |
Chris Lattner | 21190d5 | 2009-09-21 03:09:59 +0000 | [diff] [blame] | 314 | <p>Query for this feature with __has_builtin(__builtin_shufflevector).</p> |
| 315 | |
| 316 | <!-- ======================================================================= --> |
| 317 | <h3 id="__builtin_unreachable">__builtin_unreachable</h3> |
| 318 | <!-- ======================================================================= --> |
| 319 | |
| 320 | <p><tt>__builtin_unreachable</tt> is used to indicate that a specific point in |
| 321 | the program cannot be reached, even if the compiler might otherwise think it |
| 322 | can. This is useful to improve optimization and eliminates certain warnings. |
| 323 | For example, without the <tt>__builtin_unreachable</tt> in the example below, |
| 324 | the compiler assumes that the inline asm can fall through and prints a "function |
| 325 | declared 'noreturn' should not return" warning. |
| 326 | </p> |
| 327 | |
| 328 | <p><b>Syntax:</b></p> |
| 329 | |
| 330 | <pre> |
| 331 | __builtin_unreachable() |
| 332 | </pre> |
| 333 | |
| 334 | <p><b>Example of Use:</b></p> |
| 335 | |
| 336 | <pre> |
| 337 | void myabort(void) __attribute__((noreturn)); |
| 338 | void myabort(void) { |
| 339 | asm("int3"); |
| 340 | __builtin_unreachable(); |
| 341 | } |
| 342 | </pre> |
| 343 | |
| 344 | <p><b>Description:</b></p> |
| 345 | |
| 346 | <p>The __builtin_unreachable() builtin has completely undefined behavior. Since |
| 347 | it has undefined behavior, it is a statement that it is never reached and the |
| 348 | optimizer can take advantage of this to produce better code. This builtin takes |
| 349 | no arguments and produces a void result. |
| 350 | </p> |
| 351 | |
| 352 | <p>Query for this feature with __has_builtin(__builtin_unreachable).</p> |
| 353 | |
| 354 | |
Chris Lattner | 1177f91 | 2009-04-09 19:58:15 +0000 | [diff] [blame] | 355 | <!-- ======================================================================= --> |
| 356 | <h2 id="targetspecific">Target-Specific Extensions</h2> |
| 357 | <!-- ======================================================================= --> |
| 358 | |
| 359 | <p>Clang supports some language features conditionally on some targets.</p> |
| 360 | |
| 361 | <!-- ======================================================================= --> |
| 362 | <h3 id="x86-specific">X86/X86-64 Language Extensions</h3> |
| 363 | <!-- ======================================================================= --> |
| 364 | |
| 365 | <p>The X86 backend has these language extensions:</p> |
| 366 | |
| 367 | <!-- ======================================================================= --> |
| 368 | <h4 id="x86-gs-segment">Memory references off the GS segment</h4> |
| 369 | <!-- ======================================================================= --> |
| 370 | |
| 371 | <p>Annotating a pointer with address space #256 causes it to be code generated |
Chris Lattner | a021e7c | 2009-05-05 18:54:47 +0000 | [diff] [blame] | 372 | relative to the X86 GS segment register, and address space #257 causes it to be |
| 373 | relative to the X86 FS segment. Note that this is a very very low-level |
| 374 | feature that should only be used if you know what you're doing (for example in |
| 375 | an OS kernel).</p> |
Chris Lattner | 1177f91 | 2009-04-09 19:58:15 +0000 | [diff] [blame] | 376 | |
| 377 | <p>Here is an example:</p> |
| 378 | |
| 379 | <pre> |
| 380 | #define GS_RELATIVE __attribute__((address_space(256))) |
| 381 | int foo(int GS_RELATIVE *P) { |
| 382 | return *P; |
| 383 | } |
| 384 | </pre> |
| 385 | |
| 386 | <p>Which compiles to (on X86-32):</p> |
| 387 | |
| 388 | <pre> |
| 389 | _foo: |
| 390 | movl 4(%esp), %eax |
| 391 | movl %gs:(%eax), %eax |
| 392 | ret |
| 393 | </pre> |
| 394 | |
Ted Kremenek | ed86931 | 2009-04-10 05:03:33 +0000 | [diff] [blame] | 395 | <!-- ======================================================================= --> |
| 396 | <h2 id="analyzerspecific">Static Analysis-Specific Extensions</h2> |
| 397 | <!-- ======================================================================= --> |
| 398 | |
| 399 | <p>Clang supports additional attributes that are useful for documenting program |
| 400 | invariants and rules for static analysis tools. The extensions documented here |
| 401 | are used by the <a |
| 402 | href="http://clang.llvm.org/StaticAnalysis.html">path-sensitive static analyzer |
| 403 | engine</a> that is part of Clang's Analysis library.</p> |
| 404 | |
| 405 | <!-- ======================================================================= --> |
| 406 | <h3 id="analyzerattributes">Analyzer Attributes</h3> |
| 407 | <!-- ======================================================================= --> |
| 408 | |
| 409 | <h4 id="attr_analyzer_noreturn"><tt>analyzer_noreturn</tt></h4> |
| 410 | |
| 411 | <p>Clang's static analysis engine understands the standard <tt>noreturn</tt> |
Ted Kremenek | 4df2114 | 2009-04-10 05:04:22 +0000 | [diff] [blame] | 412 | attribute. This attribute, which is typically affixed to a function prototype, |
| 413 | indicates that a call to a given function never returns. Function prototypes for |
| 414 | common functions like <tt>exit</tt> are typically annotated with this attribute, |
| 415 | as well as a variety of common assertion handlers. Users can educate the static |
| 416 | analyzer about their own custom assertion handles (thus cutting down on false |
| 417 | positives due to false paths) by marking their own "panic" functions |
| 418 | with this attribute.</p> |
Ted Kremenek | ed86931 | 2009-04-10 05:03:33 +0000 | [diff] [blame] | 419 | |
| 420 | <p>While useful, <tt>noreturn</tt> is not applicable in all cases. Sometimes |
Nick Lewycky | 625b586 | 2009-06-14 04:08:08 +0000 | [diff] [blame] | 421 | there are special functions that for all intents and purposes should be |
| 422 | considered panic functions (i.e., they are only called when an internal program |
| 423 | error occurs) but may actually return so that the program can fail gracefully. |
| 424 | The <tt>analyzer_noreturn</tt> attribute allows one to annotate such functions |
| 425 | as being interpreted as "no return" functions by the analyzer (thus |
Chris Lattner | 2893589 | 2009-04-10 05:54:56 +0000 | [diff] [blame] | 426 | pruning bogus paths) but will not affect compilation (as in the case of |
Ted Kremenek | ed86931 | 2009-04-10 05:03:33 +0000 | [diff] [blame] | 427 | <tt>noreturn</tt>).</p> |
| 428 | |
| 429 | <p><b>Usage</b>: The <tt>analyzer_noreturn</tt> attribute can be placed in the |
Chris Lattner | 2893589 | 2009-04-10 05:54:56 +0000 | [diff] [blame] | 430 | same places where the <tt>noreturn</tt> attribute can be placed. It is commonly |
Ted Kremenek | ed86931 | 2009-04-10 05:03:33 +0000 | [diff] [blame] | 431 | placed at the end of function prototypes:</p> |
| 432 | |
| 433 | <pre> |
| 434 | void foo() <b>__attribute__((analyzer_noreturn))</b>; |
Chris Lattner | 148772a | 2009-06-13 07:13:28 +0000 | [diff] [blame] | 435 | </pre> |
| 436 | |
| 437 | <p>Query for this feature with __has_feature(attribute_analyzer_noreturn).</p> |
| 438 | |
Ted Kremenek | ed86931 | 2009-04-10 05:03:33 +0000 | [diff] [blame] | 439 | |
Chris Lattner | 5ce933f | 2009-02-09 08:46:11 +0000 | [diff] [blame] | 440 | </div> |
| 441 | </body> |
| 442 | </html> |