1========================= 2Clang Language Extensions 3========================= 4 5.. contents:: 6 :local: 7 :depth: 1 8 9.. toctree:: 10 :hidden: 11 12 ObjectiveCLiterals 13 BlockLanguageSpec 14 Block-ABI-Apple 15 AutomaticReferenceCounting 16 MatrixTypes 17 18Introduction 19============ 20 21This document describes the language extensions provided by Clang. In addition 22to the language extensions listed here, Clang aims to support a broad range of 23GCC extensions. Please see the `GCC manual 24<https://gcc.gnu.org/onlinedocs/gcc/C-Extensions.html>`_ for more information on 25these extensions. 26 27.. _langext-feature_check: 28 29Feature Checking Macros 30======================= 31 32Language extensions can be very useful, but only if you know you can depend on 33them. In order to allow fine-grain features checks, we support three builtin 34function-like macros. This allows you to directly test for a feature in your 35code without having to resort to something like autoconf or fragile "compiler 36version checks". 37 38``__has_builtin`` 39----------------- 40 41This function-like macro takes a single identifier argument that is the name of 42a builtin function, a builtin pseudo-function (taking one or more type 43arguments), or a builtin template. 44It evaluates to 1 if the builtin is supported or 0 if not. 45It can be used like this: 46 47.. code-block:: c++ 48 49 #ifndef __has_builtin // Optional of course. 50 #define __has_builtin(x) 0 // Compatibility with non-clang compilers. 51 #endif 52 53 ... 54 #if __has_builtin(__builtin_trap) 55 __builtin_trap(); 56 #else 57 abort(); 58 #endif 59 ... 60 61.. note:: 62 63 Prior to Clang 10, ``__has_builtin`` could not be used to detect most builtin 64 pseudo-functions. 65 66 ``__has_builtin`` should not be used to detect support for a builtin macro; 67 use ``#ifdef`` instead. 68 69.. _langext-__has_feature-__has_extension: 70 71``__has_feature`` and ``__has_extension`` 72----------------------------------------- 73 74These function-like macros take a single identifier argument that is the name 75of a feature. ``__has_feature`` evaluates to 1 if the feature is both 76supported by Clang and standardized in the current language standard or 0 if 77not (but see :ref:`below <langext-has-feature-back-compat>`), while 78``__has_extension`` evaluates to 1 if the feature is supported by Clang in the 79current language (either as a language extension or a standard language 80feature) or 0 if not. They can be used like this: 81 82.. code-block:: c++ 83 84 #ifndef __has_feature // Optional of course. 85 #define __has_feature(x) 0 // Compatibility with non-clang compilers. 86 #endif 87 #ifndef __has_extension 88 #define __has_extension __has_feature // Compatibility with pre-3.0 compilers. 89 #endif 90 91 ... 92 #if __has_feature(cxx_rvalue_references) 93 // This code will only be compiled with the -std=c++11 and -std=gnu++11 94 // options, because rvalue references are only standardized in C++11. 95 #endif 96 97 #if __has_extension(cxx_rvalue_references) 98 // This code will be compiled with the -std=c++11, -std=gnu++11, -std=c++98 99 // and -std=gnu++98 options, because rvalue references are supported as a 100 // language extension in C++98. 101 #endif 102 103.. _langext-has-feature-back-compat: 104 105For backward compatibility, ``__has_feature`` can also be used to test 106for support for non-standardized features, i.e. features not prefixed ``c_``, 107``cxx_`` or ``objc_``. 108 109Another use of ``__has_feature`` is to check for compiler features not related 110to the language standard, such as e.g. :doc:`AddressSanitizer 111<AddressSanitizer>`. 112 113If the ``-pedantic-errors`` option is given, ``__has_extension`` is equivalent 114to ``__has_feature``. 115 116The feature tag is described along with the language feature below. 117 118The feature name or extension name can also be specified with a preceding and 119following ``__`` (double underscore) to avoid interference from a macro with 120the same name. For instance, ``__cxx_rvalue_references__`` can be used instead 121of ``cxx_rvalue_references``. 122 123``__has_cpp_attribute`` 124----------------------- 125 126This function-like macro is available in C++20 by default, and is provided as an 127extension in earlier language standards. It takes a single argument that is the 128name of a double-square-bracket-style attribute. The argument can either be a 129single identifier or a scoped identifier. If the attribute is supported, a 130nonzero value is returned. If the attribute is a standards-based attribute, this 131macro returns a nonzero value based on the year and month in which the attribute 132was voted into the working draft. See `WG21 SD-6 133<https://isocpp.org/std/standing-documents/sd-6-sg10-feature-test-recommendations>`_ 134for the list of values returned for standards-based attributes. If the attribute 135is not supported by the current compilation target, this macro evaluates to 0. 136It can be used like this: 137 138.. code-block:: c++ 139 140 #ifndef __has_cpp_attribute // For backwards compatibility 141 #define __has_cpp_attribute(x) 0 142 #endif 143 144 ... 145 #if __has_cpp_attribute(clang::fallthrough) 146 #define FALLTHROUGH [[clang::fallthrough]] 147 #else 148 #define FALLTHROUGH 149 #endif 150 ... 151 152The attribute scope tokens ``clang`` and ``_Clang`` are interchangeable, as are 153the attribute scope tokens ``gnu`` and ``__gnu__``. Attribute tokens in either 154of these namespaces can be specified with a preceding and following ``__`` 155(double underscore) to avoid interference from a macro with the same name. For 156instance, ``gnu::__const__`` can be used instead of ``gnu::const``. 157 158``__has_c_attribute`` 159--------------------- 160 161This function-like macro takes a single argument that is the name of an 162attribute exposed with the double square-bracket syntax in C mode. The argument 163can either be a single identifier or a scoped identifier. If the attribute is 164supported, a nonzero value is returned. If the attribute is not supported by the 165current compilation target, this macro evaluates to 0. It can be used like this: 166 167.. code-block:: c 168 169 #ifndef __has_c_attribute // Optional of course. 170 #define __has_c_attribute(x) 0 // Compatibility with non-clang compilers. 171 #endif 172 173 ... 174 #if __has_c_attribute(fallthrough) 175 #define FALLTHROUGH [[fallthrough]] 176 #else 177 #define FALLTHROUGH 178 #endif 179 ... 180 181The attribute scope tokens ``clang`` and ``_Clang`` are interchangeable, as are 182the attribute scope tokens ``gnu`` and ``__gnu__``. Attribute tokens in either 183of these namespaces can be specified with a preceding and following ``__`` 184(double underscore) to avoid interference from a macro with the same name. For 185instance, ``gnu::__const__`` can be used instead of ``gnu::const``. 186 187``__has_attribute`` 188------------------- 189 190This function-like macro takes a single identifier argument that is the name of 191a GNU-style attribute. It evaluates to 1 if the attribute is supported by the 192current compilation target, or 0 if not. It can be used like this: 193 194.. code-block:: c++ 195 196 #ifndef __has_attribute // Optional of course. 197 #define __has_attribute(x) 0 // Compatibility with non-clang compilers. 198 #endif 199 200 ... 201 #if __has_attribute(always_inline) 202 #define ALWAYS_INLINE __attribute__((always_inline)) 203 #else 204 #define ALWAYS_INLINE 205 #endif 206 ... 207 208The attribute name can also be specified with a preceding and following ``__`` 209(double underscore) to avoid interference from a macro with the same name. For 210instance, ``__always_inline__`` can be used instead of ``always_inline``. 211 212 213``__has_declspec_attribute`` 214---------------------------- 215 216This function-like macro takes a single identifier argument that is the name of 217an attribute implemented as a Microsoft-style ``__declspec`` attribute. It 218evaluates to 1 if the attribute is supported by the current compilation target, 219or 0 if not. It can be used like this: 220 221.. code-block:: c++ 222 223 #ifndef __has_declspec_attribute // Optional of course. 224 #define __has_declspec_attribute(x) 0 // Compatibility with non-clang compilers. 225 #endif 226 227 ... 228 #if __has_declspec_attribute(dllexport) 229 #define DLLEXPORT __declspec(dllexport) 230 #else 231 #define DLLEXPORT 232 #endif 233 ... 234 235The attribute name can also be specified with a preceding and following ``__`` 236(double underscore) to avoid interference from a macro with the same name. For 237instance, ``__dllexport__`` can be used instead of ``dllexport``. 238 239``__is_identifier`` 240------------------- 241 242This function-like macro takes a single identifier argument that might be either 243a reserved word or a regular identifier. It evaluates to 1 if the argument is just 244a regular identifier and not a reserved word, in the sense that it can then be 245used as the name of a user-defined function or variable. Otherwise it evaluates 246to 0. It can be used like this: 247 248.. code-block:: c++ 249 250 ... 251 #ifdef __is_identifier // Compatibility with non-clang compilers. 252 #if __is_identifier(__wchar_t) 253 typedef wchar_t __wchar_t; 254 #endif 255 #endif 256 257 __wchar_t WideCharacter; 258 ... 259 260Include File Checking Macros 261============================ 262 263Not all developments systems have the same include files. The 264:ref:`langext-__has_include` and :ref:`langext-__has_include_next` macros allow 265you to check for the existence of an include file before doing a possibly 266failing ``#include`` directive. Include file checking macros must be used 267as expressions in ``#if`` or ``#elif`` preprocessing directives. 268 269.. _langext-__has_include: 270 271``__has_include`` 272----------------- 273 274This function-like macro takes a single file name string argument that is the 275name of an include file. It evaluates to 1 if the file can be found using the 276include paths, or 0 otherwise: 277 278.. code-block:: c++ 279 280 // Note the two possible file name string formats. 281 #if __has_include("myinclude.h") && __has_include(<stdint.h>) 282 # include "myinclude.h" 283 #endif 284 285To test for this feature, use ``#if defined(__has_include)``: 286 287.. code-block:: c++ 288 289 // To avoid problem with non-clang compilers not having this macro. 290 #if defined(__has_include) 291 #if __has_include("myinclude.h") 292 # include "myinclude.h" 293 #endif 294 #endif 295 296.. _langext-__has_include_next: 297 298``__has_include_next`` 299---------------------- 300 301This function-like macro takes a single file name string argument that is the 302name of an include file. It is like ``__has_include`` except that it looks for 303the second instance of the given file found in the include paths. It evaluates 304to 1 if the second instance of the file can be found using the include paths, 305or 0 otherwise: 306 307.. code-block:: c++ 308 309 // Note the two possible file name string formats. 310 #if __has_include_next("myinclude.h") && __has_include_next(<stdint.h>) 311 # include_next "myinclude.h" 312 #endif 313 314 // To avoid problem with non-clang compilers not having this macro. 315 #if defined(__has_include_next) 316 #if __has_include_next("myinclude.h") 317 # include_next "myinclude.h" 318 #endif 319 #endif 320 321Note that ``__has_include_next``, like the GNU extension ``#include_next`` 322directive, is intended for use in headers only, and will issue a warning if 323used in the top-level compilation file. A warning will also be issued if an 324absolute path is used in the file argument. 325 326``__has_warning`` 327----------------- 328 329This function-like macro takes a string literal that represents a command line 330option for a warning and returns true if that is a valid warning option. 331 332.. code-block:: c++ 333 334 #if __has_warning("-Wformat") 335 ... 336 #endif 337 338.. _languageextensions-builtin-macros: 339 340Builtin Macros 341============== 342 343``__BASE_FILE__`` 344 Defined to a string that contains the name of the main input file passed to 345 Clang. 346 347``__FILE_NAME__`` 348 Clang-specific extension that functions similar to ``__FILE__`` but only 349 renders the last path component (the filename) instead of an invocation 350 dependent full path to that file. 351 352``__COUNTER__`` 353 Defined to an integer value that starts at zero and is incremented each time 354 the ``__COUNTER__`` macro is expanded. 355 356``__INCLUDE_LEVEL__`` 357 Defined to an integral value that is the include depth of the file currently 358 being translated. For the main file, this value is zero. 359 360``__TIMESTAMP__`` 361 Defined to the date and time of the last modification of the current source 362 file. 363 364``__clang__`` 365 Defined when compiling with Clang 366 367``__clang_major__`` 368 Defined to the major marketing version number of Clang (e.g., the 2 in 369 2.0.1). Note that marketing version numbers should not be used to check for 370 language features, as different vendors use different numbering schemes. 371 Instead, use the :ref:`langext-feature_check`. 372 373``__clang_minor__`` 374 Defined to the minor version number of Clang (e.g., the 0 in 2.0.1). Note 375 that marketing version numbers should not be used to check for language 376 features, as different vendors use different numbering schemes. Instead, use 377 the :ref:`langext-feature_check`. 378 379``__clang_patchlevel__`` 380 Defined to the marketing patch level of Clang (e.g., the 1 in 2.0.1). 381 382``__clang_version__`` 383 Defined to a string that captures the Clang marketing version, including the 384 Subversion tag or revision number, e.g., "``1.5 (trunk 102332)``". 385 386``__clang_literal_encoding__`` 387 Defined to a narrow string literal that represents the current encoding of 388 narrow string literals, e.g., ``"hello"``. This macro typically expands to 389 "UTF-8" (but may change in the future if the 390 ``-fexec-charset="Encoding-Name"`` option is implemented.) 391 392``__clang_wide_literal_encoding__`` 393 Defined to a narrow string literal that represents the current encoding of 394 wide string literals, e.g., ``L"hello"``. This macro typically expands to 395 "UTF-16" or "UTF-32" (but may change in the future if the 396 ``-fwide-exec-charset="Encoding-Name"`` option is implemented.) 397 398.. _langext-vectors: 399 400Vectors and Extended Vectors 401============================ 402 403Supports the GCC, OpenCL, AltiVec and NEON vector extensions. 404 405OpenCL vector types are created using the ``ext_vector_type`` attribute. It 406supports the ``V.xyzw`` syntax and other tidbits as seen in OpenCL. An example 407is: 408 409.. code-block:: c++ 410 411 typedef float float4 __attribute__((ext_vector_type(4))); 412 typedef float float2 __attribute__((ext_vector_type(2))); 413 414 float4 foo(float2 a, float2 b) { 415 float4 c; 416 c.xz = a; 417 c.yw = b; 418 return c; 419 } 420 421Query for this feature with ``__has_attribute(ext_vector_type)``. 422 423Giving ``-maltivec`` option to clang enables support for AltiVec vector syntax 424and functions. For example: 425 426.. code-block:: c++ 427 428 vector float foo(vector int a) { 429 vector int b; 430 b = vec_add(a, a) + a; 431 return (vector float)b; 432 } 433 434NEON vector types are created using ``neon_vector_type`` and 435``neon_polyvector_type`` attributes. For example: 436 437.. code-block:: c++ 438 439 typedef __attribute__((neon_vector_type(8))) int8_t int8x8_t; 440 typedef __attribute__((neon_polyvector_type(16))) poly8_t poly8x16_t; 441 442 int8x8_t foo(int8x8_t a) { 443 int8x8_t v; 444 v = a; 445 return v; 446 } 447 448GCC vector types are created using the ``vector_size(N)`` attribute. The 449argument ``N`` specifies the number of bytes that will be allocated for an 450object of this type. The size has to be multiple of the size of the vector 451element type. For example: 452 453.. code-block:: c++ 454 455 // OK: This declares a vector type with four 'int' elements 456 typedef int int4 __attribute__((vector_size(4 * sizeof(int)))); 457 458 // ERROR: '11' is not a multiple of sizeof(int) 459 typedef int int_impossible __attribute__((vector_size(11))); 460 461 int4 foo(int4 a) { 462 int4 v; 463 v = a; 464 return v; 465 } 466 467 468Boolean Vectors 469--------------- 470 471Clang also supports the ext_vector_type attribute with boolean element types in 472C and C++. For example: 473 474.. code-block:: c++ 475 476 // legal for Clang, error for GCC: 477 typedef bool bool4 __attribute__((ext_vector_type(4))); 478 // Objects of bool4 type hold 8 bits, sizeof(bool4) == 1 479 480 bool4 foo(bool4 a) { 481 bool4 v; 482 v = a; 483 return v; 484 } 485 486Boolean vectors are a Clang extension of the ext vector type. Boolean vectors 487are intended, though not guaranteed, to map to vector mask registers. The size 488parameter of a boolean vector type is the number of bits in the vector. The 489boolean vector is dense and each bit in the boolean vector is one vector 490element. 491 492The semantics of boolean vectors borrows from C bit-fields with the following 493differences: 494 495* Distinct boolean vectors are always distinct memory objects (there is no 496 packing). 497* Only the operators `?:`, `!`, `~`, `|`, `&`, `^` and comparison are allowed on 498 boolean vectors. 499* Casting a scalar bool value to a boolean vector type means broadcasting the 500 scalar value onto all lanes (same as general ext_vector_type). 501* It is not possible to access or swizzle elements of a boolean vector 502 (different than general ext_vector_type). 503 504The size and alignment are both the number of bits rounded up to the next power 505of two, but the alignment is at most the maximum vector alignment of the 506target. 507 508 509Vector Literals 510--------------- 511 512Vector literals can be used to create vectors from a set of scalars, or 513vectors. Either parentheses or braces form can be used. In the parentheses 514form the number of literal values specified must be one, i.e. referring to a 515scalar value, or must match the size of the vector type being created. If a 516single scalar literal value is specified, the scalar literal value will be 517replicated to all the components of the vector type. In the brackets form any 518number of literals can be specified. For example: 519 520.. code-block:: c++ 521 522 typedef int v4si __attribute__((__vector_size__(16))); 523 typedef float float4 __attribute__((ext_vector_type(4))); 524 typedef float float2 __attribute__((ext_vector_type(2))); 525 526 v4si vsi = (v4si){1, 2, 3, 4}; 527 float4 vf = (float4)(1.0f, 2.0f, 3.0f, 4.0f); 528 vector int vi1 = (vector int)(1); // vi1 will be (1, 1, 1, 1). 529 vector int vi2 = (vector int){1}; // vi2 will be (1, 0, 0, 0). 530 vector int vi3 = (vector int)(1, 2); // error 531 vector int vi4 = (vector int){1, 2}; // vi4 will be (1, 2, 0, 0). 532 vector int vi5 = (vector int)(1, 2, 3, 4); 533 float4 vf = (float4)((float2)(1.0f, 2.0f), (float2)(3.0f, 4.0f)); 534 535Vector Operations 536----------------- 537 538The table below shows the support for each operation by vector extension. A 539dash indicates that an operation is not accepted according to a corresponding 540specification. 541 542============================== ======= ======= ============= ======= 543 Operator OpenCL AltiVec GCC NEON 544============================== ======= ======= ============= ======= 545[] yes yes yes -- 546unary operators +, -- yes yes yes -- 547++, -- -- yes yes yes -- 548+,--,*,/,% yes yes yes -- 549bitwise operators &,|,^,~ yes yes yes -- 550>>,<< yes yes yes -- 551!, &&, || yes -- yes -- 552==, !=, >, <, >=, <= yes yes yes -- 553= yes yes yes yes 554?: [#]_ yes -- yes -- 555sizeof yes yes yes yes 556C-style cast yes yes yes no 557reinterpret_cast yes no yes no 558static_cast yes no yes no 559const_cast no no no no 560address &v[i] no no no [#]_ no 561============================== ======= ======= ============= ======= 562 563See also :ref:`langext-__builtin_shufflevector`, :ref:`langext-__builtin_convertvector`. 564 565.. [#] ternary operator(?:) has different behaviors depending on condition 566 operand's vector type. If the condition is a GNU vector (i.e. __vector_size__), 567 it's only available in C++ and uses normal bool conversions (that is, != 0). 568 If it's an extension (OpenCL) vector, it's only available in C and OpenCL C. 569 And it selects base on signedness of the condition operands (OpenCL v1.1 s6.3.9). 570.. [#] Clang does not allow the address of an element to be taken while GCC 571 allows this. This is intentional for vectors with a boolean element type and 572 not implemented otherwise. 573 574Vector Builtins 575--------------- 576 577**Note: The implementation of vector builtins is work-in-progress and incomplete.** 578 579In addition to the operators mentioned above, Clang provides a set of builtins 580to perform additional operations on certain scalar and vector types. 581 582Let ``T`` be one of the following types: 583 584* an integer type (as in C2x 6.2.5p19), but excluding enumerated types and _Bool 585* the standard floating types float or double 586* a half-precision floating point type, if one is supported on the target 587* a vector type. 588 589For scalar types, consider the operation applied to a vector with a single element. 590 591*Elementwise Builtins* 592 593Each builtin returns a vector equivalent to applying the specified operation 594elementwise to the input. 595 596Unless specified otherwise operation(±0) = ±0 and operation(±infinity) = ±infinity 597 598=========================================== ================================================================ ========================================= 599 Name Operation Supported element types 600=========================================== ================================================================ ========================================= 601 T __builtin_elementwise_abs(T x) return the absolute value of a number x; the absolute value of signed integer and floating point types 602 the most negative integer remains the most negative integer 603 T __builtin_elementwise_ceil(T x) return the smallest integral value greater than or equal to x floating point types 604 T __builtin_elementwise_floor(T x) return the largest integral value less than or equal to x floating point types 605 T __builtin_elementwise_roundeven(T x) round x to the nearest integer value in floating point format, floating point types 606 rounding halfway cases to even (that is, to the nearest value 607 that is an even integer), regardless of the current rounding 608 direction. 609 T__builtin_elementwise_trunc(T x) return the integral value nearest to but no larger in floating point types 610 magnitude than x 611 T __builtin_elementwise_max(T x, T y) return x or y, whichever is larger integer and floating point types 612 T __builtin_elementwise_min(T x, T y) return x or y, whichever is smaller integer and floating point types 613 T __builtin_elementwise_add_sat(T x, T y) return the sum of x and y, clamped to the range of integer types 614 representable values for the signed/unsigned integer type. 615 T __builtin_elementwise_sub_sat(T x, T y) return the difference of x and y, clamped to the range of integer types 616 representable values for the signed/unsigned integer type. 617=========================================== ================================================================ ========================================= 618 619 620*Reduction Builtins* 621 622Each builtin returns a scalar equivalent to applying the specified 623operation(x, y) as recursive even-odd pairwise reduction to all vector 624elements. ``operation(x, y)`` is repeatedly applied to each non-overlapping 625even-odd element pair with indices ``i * 2`` and ``i * 2 + 1`` with 626``i in [0, Number of elements / 2)``. If the numbers of elements is not a 627power of 2, the vector is widened with neutral elements for the reduction 628at the end to the next power of 2. 629 630Example: 631 632.. code-block:: c++ 633 634 __builtin_reduce_add([e3, e2, e1, e0]) = __builtin_reduced_add([e3 + e2, e1 + e0]) 635 = (e3 + e2) + (e1 + e0) 636 637 638Let ``VT`` be a vector type and ``ET`` the element type of ``VT``. 639 640======================================= ================================================================ ================================== 641 Name Operation Supported element types 642======================================= ================================================================ ================================== 643 ET __builtin_reduce_max(VT a) return x or y, whichever is larger; If exactly one argument is integer and floating point types 644 a NaN, return the other argument. If both arguments are NaNs, 645 fmax() return a NaN. 646 ET __builtin_reduce_min(VT a) return x or y, whichever is smaller; If exactly one argument integer and floating point types 647 is a NaN, return the other argument. If both arguments are 648 NaNs, fmax() return a NaN. 649 ET __builtin_reduce_add(VT a) \+ integer and floating point types 650 ET __builtin_reduce_and(VT a) & integer types 651 ET __builtin_reduce_or(VT a) \| integer types 652 ET __builtin_reduce_xor(VT a) ^ integer types 653======================================= ================================================================ ================================== 654 655Matrix Types 656============ 657 658Clang provides an extension for matrix types, which is currently being 659implemented. See :ref:`the draft specification <matrixtypes>` for more details. 660 661For example, the code below uses the matrix types extension to multiply two 4x4 662float matrices and add the result to a third 4x4 matrix. 663 664.. code-block:: c++ 665 666 typedef float m4x4_t __attribute__((matrix_type(4, 4))); 667 668 m4x4_t f(m4x4_t a, m4x4_t b, m4x4_t c) { 669 return a + b * c; 670 } 671 672The matrix type extension also supports operations on a matrix and a scalar. 673 674.. code-block:: c++ 675 676 typedef float m4x4_t __attribute__((matrix_type(4, 4))); 677 678 m4x4_t f(m4x4_t a) { 679 return (a + 23) * 12; 680 } 681 682The matrix type extension supports division on a matrix and a scalar but not on a matrix and a matrix. 683 684.. code-block:: c++ 685 686 typedef float m4x4_t __attribute__((matrix_type(4, 4))); 687 688 m4x4_t f(m4x4_t a) { 689 a = a / 3.0; 690 return a; 691 } 692 693The matrix type extension supports compound assignments for addition, subtraction, and multiplication on matrices 694and on a matrix and a scalar, provided their types are consistent. 695 696.. code-block:: c++ 697 698 typedef float m4x4_t __attribute__((matrix_type(4, 4))); 699 700 m4x4_t f(m4x4_t a, m4x4_t b) { 701 a += b; 702 a -= b; 703 a *= b; 704 a += 23; 705 a -= 12; 706 return a; 707 } 708 709The matrix type extension supports explicit casts. Implicit type conversion between matrix types is not allowed. 710 711.. code-block:: c++ 712 713 typedef int ix5x5 __attribute__((matrix_type(5, 5))); 714 typedef float fx5x5 __attribute__((matrix_type(5, 5))); 715 716 fx5x5 f1(ix5x5 i, fx5x5 f) { 717 return (fx5x5) i; 718 } 719 720 721 template <typename X> 722 using matrix_4_4 = X __attribute__((matrix_type(4, 4))); 723 724 void f2() { 725 matrix_5_5<double> d; 726 matrix_5_5<int> i; 727 i = (matrix_5_5<int>)d; 728 i = static_cast<matrix_5_5<int>>(d); 729 } 730 731Half-Precision Floating Point 732============================= 733 734Clang supports three half-precision (16-bit) floating point types: ``__fp16``, 735``_Float16`` and ``__bf16``. These types are supported in all language modes. 736 737``__fp16`` is supported on every target, as it is purely a storage format; see below. 738``_Float16`` is currently only supported on the following targets, with further 739targets pending ABI standardization: 740 741* 32-bit ARM 742* 64-bit ARM (AArch64) 743* AMDGPU 744* SPIR 745* X86 (Only available under feature AVX512-FP16) 746 747``_Float16`` will be supported on more targets as they define ABIs for it. 748 749``__bf16`` is purely a storage format; it is currently only supported on the following targets: 750* 32-bit ARM 751* 64-bit ARM (AArch64) 752 753The ``__bf16`` type is only available when supported in hardware. 754 755``__fp16`` is a storage and interchange format only. This means that values of 756``__fp16`` are immediately promoted to (at least) ``float`` when used in arithmetic 757operations, so that e.g. the result of adding two ``__fp16`` values has type ``float``. 758The behavior of ``__fp16`` is specified by the ARM C Language Extensions (`ACLE <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053d/IHI0053D_acle_2_1.pdf>`_). 759Clang uses the ``binary16`` format from IEEE 754-2008 for ``__fp16``, not the ARM 760alternative format. 761 762``_Float16`` is an interchange floating-point type. This means that, just like arithmetic on 763``float`` or ``double``, arithmetic on ``_Float16`` operands is formally performed in the 764``_Float16`` type, so that e.g. the result of adding two ``_Float16`` values has type 765``_Float16``. The behavior of ``_Float16`` is specified by ISO/IEC TS 18661-3:2015 766("Floating-point extensions for C"). As with ``__fp16``, Clang uses the ``binary16`` 767format from IEEE 754-2008 for ``_Float16``. 768 769``_Float16`` arithmetic will be performed using native half-precision support 770when available on the target (e.g. on ARMv8.2a); otherwise it will be performed 771at a higher precision (currently always ``float``) and then truncated down to 772``_Float16``. Note that C and C++ allow intermediate floating-point operands 773of an expression to be computed with greater precision than is expressible in 774their type, so Clang may avoid intermediate truncations in certain cases; this may 775lead to results that are inconsistent with native arithmetic. 776 777It is recommended that portable code use ``_Float16`` instead of ``__fp16``, 778as it has been defined by the C standards committee and has behavior that is 779more familiar to most programmers. 780 781Because ``__fp16`` operands are always immediately promoted to ``float``, the 782common real type of ``__fp16`` and ``_Float16`` for the purposes of the usual 783arithmetic conversions is ``float``. 784 785A literal can be given ``_Float16`` type using the suffix ``f16``. For example, 786``3.14f16``. 787 788Because default argument promotion only applies to the standard floating-point 789types, ``_Float16`` values are not promoted to ``double`` when passed as variadic 790or untyped arguments. As a consequence, some caution must be taken when using 791certain library facilities with ``_Float16``; for example, there is no ``printf`` format 792specifier for ``_Float16``, and (unlike ``float``) it will not be implicitly promoted to 793``double`` when passed to ``printf``, so the programmer must explicitly cast it to 794``double`` before using it with an ``%f`` or similar specifier. 795 796Messages on ``deprecated`` and ``unavailable`` Attributes 797========================================================= 798 799An optional string message can be added to the ``deprecated`` and 800``unavailable`` attributes. For example: 801 802.. code-block:: c++ 803 804 void explode(void) __attribute__((deprecated("extremely unsafe, use 'combust' instead!!!"))); 805 806If the deprecated or unavailable declaration is used, the message will be 807incorporated into the appropriate diagnostic: 808 809.. code-block:: none 810 811 harmless.c:4:3: warning: 'explode' is deprecated: extremely unsafe, use 'combust' instead!!! 812 [-Wdeprecated-declarations] 813 explode(); 814 ^ 815 816Query for this feature with 817``__has_extension(attribute_deprecated_with_message)`` and 818``__has_extension(attribute_unavailable_with_message)``. 819 820Attributes on Enumerators 821========================= 822 823Clang allows attributes to be written on individual enumerators. This allows 824enumerators to be deprecated, made unavailable, etc. The attribute must appear 825after the enumerator name and before any initializer, like so: 826 827.. code-block:: c++ 828 829 enum OperationMode { 830 OM_Invalid, 831 OM_Normal, 832 OM_Terrified __attribute__((deprecated)), 833 OM_AbortOnError __attribute__((deprecated)) = 4 834 }; 835 836Attributes on the ``enum`` declaration do not apply to individual enumerators. 837 838Query for this feature with ``__has_extension(enumerator_attributes)``. 839 840C++11 Attributes on using-declarations 841====================================== 842 843Clang allows C++-style ``[[]]`` attributes to be written on using-declarations. 844For instance: 845 846.. code-block:: c++ 847 848 [[clang::using_if_exists]] using foo::bar; 849 using foo::baz [[clang::using_if_exists]]; 850 851You can test for support for this extension with 852``__has_extension(cxx_attributes_on_using_declarations)``. 853 854'User-Specified' System Frameworks 855================================== 856 857Clang provides a mechanism by which frameworks can be built in such a way that 858they will always be treated as being "system frameworks", even if they are not 859present in a system framework directory. This can be useful to system 860framework developers who want to be able to test building other applications 861with development builds of their framework, including the manner in which the 862compiler changes warning behavior for system headers. 863 864Framework developers can opt-in to this mechanism by creating a 865"``.system_framework``" file at the top-level of their framework. That is, the 866framework should have contents like: 867 868.. code-block:: none 869 870 .../TestFramework.framework 871 .../TestFramework.framework/.system_framework 872 .../TestFramework.framework/Headers 873 .../TestFramework.framework/Headers/TestFramework.h 874 ... 875 876Clang will treat the presence of this file as an indicator that the framework 877should be treated as a system framework, regardless of how it was found in the 878framework search path. For consistency, we recommend that such files never be 879included in installed versions of the framework. 880 881Checks for Standard Language Features 882===================================== 883 884The ``__has_feature`` macro can be used to query if certain standard language 885features are enabled. The ``__has_extension`` macro can be used to query if 886language features are available as an extension when compiling for a standard 887which does not provide them. The features which can be tested are listed here. 888 889Since Clang 3.4, the C++ SD-6 feature test macros are also supported. 890These are macros with names of the form ``__cpp_<feature_name>``, and are 891intended to be a portable way to query the supported features of the compiler. 892See `the C++ status page <https://clang.llvm.org/cxx_status.html#ts>`_ for 893information on the version of SD-6 supported by each Clang release, and the 894macros provided by that revision of the recommendations. 895 896C++98 897----- 898 899The features listed below are part of the C++98 standard. These features are 900enabled by default when compiling C++ code. 901 902C++ exceptions 903^^^^^^^^^^^^^^ 904 905Use ``__has_feature(cxx_exceptions)`` to determine if C++ exceptions have been 906enabled. For example, compiling code with ``-fno-exceptions`` disables C++ 907exceptions. 908 909C++ RTTI 910^^^^^^^^ 911 912Use ``__has_feature(cxx_rtti)`` to determine if C++ RTTI has been enabled. For 913example, compiling code with ``-fno-rtti`` disables the use of RTTI. 914 915C++11 916----- 917 918The features listed below are part of the C++11 standard. As a result, all 919these features are enabled with the ``-std=c++11`` or ``-std=gnu++11`` option 920when compiling C++ code. 921 922C++11 SFINAE includes access control 923^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 924 925Use ``__has_feature(cxx_access_control_sfinae)`` or 926``__has_extension(cxx_access_control_sfinae)`` to determine whether 927access-control errors (e.g., calling a private constructor) are considered to 928be template argument deduction errors (aka SFINAE errors), per `C++ DR1170 929<http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1170>`_. 930 931C++11 alias templates 932^^^^^^^^^^^^^^^^^^^^^ 933 934Use ``__has_feature(cxx_alias_templates)`` or 935``__has_extension(cxx_alias_templates)`` to determine if support for C++11's 936alias declarations and alias templates is enabled. 937 938C++11 alignment specifiers 939^^^^^^^^^^^^^^^^^^^^^^^^^^ 940 941Use ``__has_feature(cxx_alignas)`` or ``__has_extension(cxx_alignas)`` to 942determine if support for alignment specifiers using ``alignas`` is enabled. 943 944Use ``__has_feature(cxx_alignof)`` or ``__has_extension(cxx_alignof)`` to 945determine if support for the ``alignof`` keyword is enabled. 946 947C++11 attributes 948^^^^^^^^^^^^^^^^ 949 950Use ``__has_feature(cxx_attributes)`` or ``__has_extension(cxx_attributes)`` to 951determine if support for attribute parsing with C++11's square bracket notation 952is enabled. 953 954C++11 generalized constant expressions 955^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 956 957Use ``__has_feature(cxx_constexpr)`` to determine if support for generalized 958constant expressions (e.g., ``constexpr``) is enabled. 959 960C++11 ``decltype()`` 961^^^^^^^^^^^^^^^^^^^^ 962 963Use ``__has_feature(cxx_decltype)`` or ``__has_extension(cxx_decltype)`` to 964determine if support for the ``decltype()`` specifier is enabled. C++11's 965``decltype`` does not require type-completeness of a function call expression. 966Use ``__has_feature(cxx_decltype_incomplete_return_types)`` or 967``__has_extension(cxx_decltype_incomplete_return_types)`` to determine if 968support for this feature is enabled. 969 970C++11 default template arguments in function templates 971^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 972 973Use ``__has_feature(cxx_default_function_template_args)`` or 974``__has_extension(cxx_default_function_template_args)`` to determine if support 975for default template arguments in function templates is enabled. 976 977C++11 ``default``\ ed functions 978^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 979 980Use ``__has_feature(cxx_defaulted_functions)`` or 981``__has_extension(cxx_defaulted_functions)`` to determine if support for 982defaulted function definitions (with ``= default``) is enabled. 983 984C++11 delegating constructors 985^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 986 987Use ``__has_feature(cxx_delegating_constructors)`` to determine if support for 988delegating constructors is enabled. 989 990C++11 ``deleted`` functions 991^^^^^^^^^^^^^^^^^^^^^^^^^^^ 992 993Use ``__has_feature(cxx_deleted_functions)`` or 994``__has_extension(cxx_deleted_functions)`` to determine if support for deleted 995function definitions (with ``= delete``) is enabled. 996 997C++11 explicit conversion functions 998^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 999 1000Use ``__has_feature(cxx_explicit_conversions)`` to determine if support for 1001``explicit`` conversion functions is enabled. 1002 1003C++11 generalized initializers 1004^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1005 1006Use ``__has_feature(cxx_generalized_initializers)`` to determine if support for 1007generalized initializers (using braced lists and ``std::initializer_list``) is 1008enabled. 1009 1010C++11 implicit move constructors/assignment operators 1011^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1012 1013Use ``__has_feature(cxx_implicit_moves)`` to determine if Clang will implicitly 1014generate move constructors and move assignment operators where needed. 1015 1016C++11 inheriting constructors 1017^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1018 1019Use ``__has_feature(cxx_inheriting_constructors)`` to determine if support for 1020inheriting constructors is enabled. 1021 1022C++11 inline namespaces 1023^^^^^^^^^^^^^^^^^^^^^^^ 1024 1025Use ``__has_feature(cxx_inline_namespaces)`` or 1026``__has_extension(cxx_inline_namespaces)`` to determine if support for inline 1027namespaces is enabled. 1028 1029C++11 lambdas 1030^^^^^^^^^^^^^ 1031 1032Use ``__has_feature(cxx_lambdas)`` or ``__has_extension(cxx_lambdas)`` to 1033determine if support for lambdas is enabled. 1034 1035C++11 local and unnamed types as template arguments 1036^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1037 1038Use ``__has_feature(cxx_local_type_template_args)`` or 1039``__has_extension(cxx_local_type_template_args)`` to determine if support for 1040local and unnamed types as template arguments is enabled. 1041 1042C++11 noexcept 1043^^^^^^^^^^^^^^ 1044 1045Use ``__has_feature(cxx_noexcept)`` or ``__has_extension(cxx_noexcept)`` to 1046determine if support for noexcept exception specifications is enabled. 1047 1048C++11 in-class non-static data member initialization 1049^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1050 1051Use ``__has_feature(cxx_nonstatic_member_init)`` to determine whether in-class 1052initialization of non-static data members is enabled. 1053 1054C++11 ``nullptr`` 1055^^^^^^^^^^^^^^^^^ 1056 1057Use ``__has_feature(cxx_nullptr)`` or ``__has_extension(cxx_nullptr)`` to 1058determine if support for ``nullptr`` is enabled. 1059 1060C++11 ``override control`` 1061^^^^^^^^^^^^^^^^^^^^^^^^^^ 1062 1063Use ``__has_feature(cxx_override_control)`` or 1064``__has_extension(cxx_override_control)`` to determine if support for the 1065override control keywords is enabled. 1066 1067C++11 reference-qualified functions 1068^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1069 1070Use ``__has_feature(cxx_reference_qualified_functions)`` or 1071``__has_extension(cxx_reference_qualified_functions)`` to determine if support 1072for reference-qualified functions (e.g., member functions with ``&`` or ``&&`` 1073applied to ``*this``) is enabled. 1074 1075C++11 range-based ``for`` loop 1076^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1077 1078Use ``__has_feature(cxx_range_for)`` or ``__has_extension(cxx_range_for)`` to 1079determine if support for the range-based for loop is enabled. 1080 1081C++11 raw string literals 1082^^^^^^^^^^^^^^^^^^^^^^^^^ 1083 1084Use ``__has_feature(cxx_raw_string_literals)`` to determine if support for raw 1085string literals (e.g., ``R"x(foo\bar)x"``) is enabled. 1086 1087C++11 rvalue references 1088^^^^^^^^^^^^^^^^^^^^^^^ 1089 1090Use ``__has_feature(cxx_rvalue_references)`` or 1091``__has_extension(cxx_rvalue_references)`` to determine if support for rvalue 1092references is enabled. 1093 1094C++11 ``static_assert()`` 1095^^^^^^^^^^^^^^^^^^^^^^^^^ 1096 1097Use ``__has_feature(cxx_static_assert)`` or 1098``__has_extension(cxx_static_assert)`` to determine if support for compile-time 1099assertions using ``static_assert`` is enabled. 1100 1101C++11 ``thread_local`` 1102^^^^^^^^^^^^^^^^^^^^^^ 1103 1104Use ``__has_feature(cxx_thread_local)`` to determine if support for 1105``thread_local`` variables is enabled. 1106 1107C++11 type inference 1108^^^^^^^^^^^^^^^^^^^^ 1109 1110Use ``__has_feature(cxx_auto_type)`` or ``__has_extension(cxx_auto_type)`` to 1111determine C++11 type inference is supported using the ``auto`` specifier. If 1112this is disabled, ``auto`` will instead be a storage class specifier, as in C 1113or C++98. 1114 1115C++11 strongly typed enumerations 1116^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1117 1118Use ``__has_feature(cxx_strong_enums)`` or 1119``__has_extension(cxx_strong_enums)`` to determine if support for strongly 1120typed, scoped enumerations is enabled. 1121 1122C++11 trailing return type 1123^^^^^^^^^^^^^^^^^^^^^^^^^^ 1124 1125Use ``__has_feature(cxx_trailing_return)`` or 1126``__has_extension(cxx_trailing_return)`` to determine if support for the 1127alternate function declaration syntax with trailing return type is enabled. 1128 1129C++11 Unicode string literals 1130^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1131 1132Use ``__has_feature(cxx_unicode_literals)`` to determine if support for Unicode 1133string literals is enabled. 1134 1135C++11 unrestricted unions 1136^^^^^^^^^^^^^^^^^^^^^^^^^ 1137 1138Use ``__has_feature(cxx_unrestricted_unions)`` to determine if support for 1139unrestricted unions is enabled. 1140 1141C++11 user-defined literals 1142^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1143 1144Use ``__has_feature(cxx_user_literals)`` to determine if support for 1145user-defined literals is enabled. 1146 1147C++11 variadic templates 1148^^^^^^^^^^^^^^^^^^^^^^^^ 1149 1150Use ``__has_feature(cxx_variadic_templates)`` or 1151``__has_extension(cxx_variadic_templates)`` to determine if support for 1152variadic templates is enabled. 1153 1154C++14 1155----- 1156 1157The features listed below are part of the C++14 standard. As a result, all 1158these features are enabled with the ``-std=C++14`` or ``-std=gnu++14`` option 1159when compiling C++ code. 1160 1161C++14 binary literals 1162^^^^^^^^^^^^^^^^^^^^^ 1163 1164Use ``__has_feature(cxx_binary_literals)`` or 1165``__has_extension(cxx_binary_literals)`` to determine whether 1166binary literals (for instance, ``0b10010``) are recognized. Clang supports this 1167feature as an extension in all language modes. 1168 1169C++14 contextual conversions 1170^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1171 1172Use ``__has_feature(cxx_contextual_conversions)`` or 1173``__has_extension(cxx_contextual_conversions)`` to determine if the C++14 rules 1174are used when performing an implicit conversion for an array bound in a 1175*new-expression*, the operand of a *delete-expression*, an integral constant 1176expression, or a condition in a ``switch`` statement. 1177 1178C++14 decltype(auto) 1179^^^^^^^^^^^^^^^^^^^^ 1180 1181Use ``__has_feature(cxx_decltype_auto)`` or 1182``__has_extension(cxx_decltype_auto)`` to determine if support 1183for the ``decltype(auto)`` placeholder type is enabled. 1184 1185C++14 default initializers for aggregates 1186^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1187 1188Use ``__has_feature(cxx_aggregate_nsdmi)`` or 1189``__has_extension(cxx_aggregate_nsdmi)`` to determine if support 1190for default initializers in aggregate members is enabled. 1191 1192C++14 digit separators 1193^^^^^^^^^^^^^^^^^^^^^^ 1194 1195Use ``__cpp_digit_separators`` to determine if support for digit separators 1196using single quotes (for instance, ``10'000``) is enabled. At this time, there 1197is no corresponding ``__has_feature`` name 1198 1199C++14 generalized lambda capture 1200^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1201 1202Use ``__has_feature(cxx_init_captures)`` or 1203``__has_extension(cxx_init_captures)`` to determine if support for 1204lambda captures with explicit initializers is enabled 1205(for instance, ``[n(0)] { return ++n; }``). 1206 1207C++14 generic lambdas 1208^^^^^^^^^^^^^^^^^^^^^ 1209 1210Use ``__has_feature(cxx_generic_lambdas)`` or 1211``__has_extension(cxx_generic_lambdas)`` to determine if support for generic 1212(polymorphic) lambdas is enabled 1213(for instance, ``[] (auto x) { return x + 1; }``). 1214 1215C++14 relaxed constexpr 1216^^^^^^^^^^^^^^^^^^^^^^^ 1217 1218Use ``__has_feature(cxx_relaxed_constexpr)`` or 1219``__has_extension(cxx_relaxed_constexpr)`` to determine if variable 1220declarations, local variable modification, and control flow constructs 1221are permitted in ``constexpr`` functions. 1222 1223C++14 return type deduction 1224^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1225 1226Use ``__has_feature(cxx_return_type_deduction)`` or 1227``__has_extension(cxx_return_type_deduction)`` to determine if support 1228for return type deduction for functions (using ``auto`` as a return type) 1229is enabled. 1230 1231C++14 runtime-sized arrays 1232^^^^^^^^^^^^^^^^^^^^^^^^^^ 1233 1234Use ``__has_feature(cxx_runtime_array)`` or 1235``__has_extension(cxx_runtime_array)`` to determine if support 1236for arrays of runtime bound (a restricted form of variable-length arrays) 1237is enabled. 1238Clang's implementation of this feature is incomplete. 1239 1240C++14 variable templates 1241^^^^^^^^^^^^^^^^^^^^^^^^ 1242 1243Use ``__has_feature(cxx_variable_templates)`` or 1244``__has_extension(cxx_variable_templates)`` to determine if support for 1245templated variable declarations is enabled. 1246 1247C11 1248--- 1249 1250The features listed below are part of the C11 standard. As a result, all these 1251features are enabled with the ``-std=c11`` or ``-std=gnu11`` option when 1252compiling C code. Additionally, because these features are all 1253backward-compatible, they are available as extensions in all language modes. 1254 1255C11 alignment specifiers 1256^^^^^^^^^^^^^^^^^^^^^^^^ 1257 1258Use ``__has_feature(c_alignas)`` or ``__has_extension(c_alignas)`` to determine 1259if support for alignment specifiers using ``_Alignas`` is enabled. 1260 1261Use ``__has_feature(c_alignof)`` or ``__has_extension(c_alignof)`` to determine 1262if support for the ``_Alignof`` keyword is enabled. 1263 1264C11 atomic operations 1265^^^^^^^^^^^^^^^^^^^^^ 1266 1267Use ``__has_feature(c_atomic)`` or ``__has_extension(c_atomic)`` to determine 1268if support for atomic types using ``_Atomic`` is enabled. Clang also provides 1269:ref:`a set of builtins <langext-__c11_atomic>` which can be used to implement 1270the ``<stdatomic.h>`` operations on ``_Atomic`` types. Use 1271``__has_include(<stdatomic.h>)`` to determine if C11's ``<stdatomic.h>`` header 1272is available. 1273 1274Clang will use the system's ``<stdatomic.h>`` header when one is available, and 1275will otherwise use its own. When using its own, implementations of the atomic 1276operations are provided as macros. In the cases where C11 also requires a real 1277function, this header provides only the declaration of that function (along 1278with a shadowing macro implementation), and you must link to a library which 1279provides a definition of the function if you use it instead of the macro. 1280 1281C11 generic selections 1282^^^^^^^^^^^^^^^^^^^^^^ 1283 1284Use ``__has_feature(c_generic_selections)`` or 1285``__has_extension(c_generic_selections)`` to determine if support for generic 1286selections is enabled. 1287 1288As an extension, the C11 generic selection expression is available in all 1289languages supported by Clang. The syntax is the same as that given in the C11 1290standard. 1291 1292In C, type compatibility is decided according to the rules given in the 1293appropriate standard, but in C++, which lacks the type compatibility rules used 1294in C, types are considered compatible only if they are equivalent. 1295 1296C11 ``_Static_assert()`` 1297^^^^^^^^^^^^^^^^^^^^^^^^ 1298 1299Use ``__has_feature(c_static_assert)`` or ``__has_extension(c_static_assert)`` 1300to determine if support for compile-time assertions using ``_Static_assert`` is 1301enabled. 1302 1303C11 ``_Thread_local`` 1304^^^^^^^^^^^^^^^^^^^^^ 1305 1306Use ``__has_feature(c_thread_local)`` or ``__has_extension(c_thread_local)`` 1307to determine if support for ``_Thread_local`` variables is enabled. 1308 1309Modules 1310------- 1311 1312Use ``__has_feature(modules)`` to determine if Modules have been enabled. 1313For example, compiling code with ``-fmodules`` enables the use of Modules. 1314 1315More information could be found `here <https://clang.llvm.org/docs/Modules.html>`_. 1316 1317Type Trait Primitives 1318===================== 1319 1320Type trait primitives are special builtin constant expressions that can be used 1321by the standard C++ library to facilitate or simplify the implementation of 1322user-facing type traits in the <type_traits> header. 1323 1324They are not intended to be used directly by user code because they are 1325implementation-defined and subject to change -- as such they're tied closely to 1326the supported set of system headers, currently: 1327 1328* LLVM's own libc++ 1329* GNU libstdc++ 1330* The Microsoft standard C++ library 1331 1332Clang supports the `GNU C++ type traits 1333<https://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html>`_ and a subset of the 1334`Microsoft Visual C++ type traits 1335<https://msdn.microsoft.com/en-us/library/ms177194(v=VS.100).aspx>`_, 1336as well as nearly all of the 1337`Embarcadero C++ type traits 1338<http://docwiki.embarcadero.com/RADStudio/Rio/en/Type_Trait_Functions_(C%2B%2B11)_Index>`_. 1339 1340The following type trait primitives are supported by Clang. Those traits marked 1341(C++) provide implementations for type traits specified by the C++ standard; 1342``__X(...)`` has the same semantics and constraints as the corresponding 1343``std::X_t<...>`` or ``std::X_v<...>`` type trait. 1344 1345* ``__array_rank(type)`` (Embarcadero): 1346 Returns the number of levels of array in the type ``type``: 1347 ``0`` if ``type`` is not an array type, and 1348 ``__array_rank(element) + 1`` if ``type`` is an array of ``element``. 1349* ``__array_extent(type, dim)`` (Embarcadero): 1350 The ``dim``'th array bound in the type ``type``, or ``0`` if 1351 ``dim >= __array_rank(type)``. 1352* ``__has_nothrow_assign`` (GNU, Microsoft, Embarcadero): 1353 Deprecated, use ``__is_nothrow_assignable`` instead. 1354* ``__has_nothrow_move_assign`` (GNU, Microsoft): 1355 Deprecated, use ``__is_nothrow_assignable`` instead. 1356* ``__has_nothrow_copy`` (GNU, Microsoft): 1357 Deprecated, use ``__is_nothrow_constructible`` instead. 1358* ``__has_nothrow_constructor`` (GNU, Microsoft): 1359 Deprecated, use ``__is_nothrow_constructible`` instead. 1360* ``__has_trivial_assign`` (GNU, Microsoft, Embarcadero): 1361 Deprecated, use ``__is_trivially_assignable`` instead. 1362* ``__has_trivial_move_assign`` (GNU, Microsoft): 1363 Deprecated, use ``__is_trivially_assignable`` instead. 1364* ``__has_trivial_copy`` (GNU, Microsoft): 1365 Deprecated, use ``__is_trivially_constructible`` instead. 1366* ``__has_trivial_constructor`` (GNU, Microsoft): 1367 Deprecated, use ``__is_trivially_constructible`` instead. 1368* ``__has_trivial_move_constructor`` (GNU, Microsoft): 1369 Deprecated, use ``__is_trivially_constructible`` instead. 1370* ``__has_trivial_destructor`` (GNU, Microsoft, Embarcadero): 1371 Deprecated, use ``__is_trivially_destructible`` instead. 1372* ``__has_unique_object_representations`` (C++, GNU) 1373* ``__has_virtual_destructor`` (C++, GNU, Microsoft, Embarcadero) 1374* ``__is_abstract`` (C++, GNU, Microsoft, Embarcadero) 1375* ``__is_aggregate`` (C++, GNU, Microsoft) 1376* ``__is_arithmetic`` (C++, Embarcadero) 1377* ``__is_array`` (C++, Embarcadero) 1378* ``__is_assignable`` (C++, MSVC 2015) 1379* ``__is_base_of`` (C++, GNU, Microsoft, Embarcadero) 1380* ``__is_class`` (C++, GNU, Microsoft, Embarcadero) 1381* ``__is_complete_type(type)`` (Embarcadero): 1382 Return ``true`` if ``type`` is a complete type. 1383 Warning: this trait is dangerous because it can return different values at 1384 different points in the same program. 1385* ``__is_compound`` (C++, Embarcadero) 1386* ``__is_const`` (C++, Embarcadero) 1387* ``__is_constructible`` (C++, MSVC 2013) 1388* ``__is_convertible`` (C++, Embarcadero) 1389* ``__is_convertible_to`` (Microsoft): 1390 Synonym for ``__is_convertible``. 1391* ``__is_destructible`` (C++, MSVC 2013): 1392 Only available in ``-fms-extensions`` mode. 1393* ``__is_empty`` (C++, GNU, Microsoft, Embarcadero) 1394* ``__is_enum`` (C++, GNU, Microsoft, Embarcadero) 1395* ``__is_final`` (C++, GNU, Microsoft) 1396* ``__is_floating_point`` (C++, Embarcadero) 1397* ``__is_function`` (C++, Embarcadero) 1398* ``__is_fundamental`` (C++, Embarcadero) 1399* ``__is_integral`` (C++, Embarcadero) 1400* ``__is_interface_class`` (Microsoft): 1401 Returns ``false``, even for types defined with ``__interface``. 1402* ``__is_literal`` (Clang): 1403 Synonym for ``__is_literal_type``. 1404* ``__is_literal_type`` (C++, GNU, Microsoft): 1405 Note, the corresponding standard trait was deprecated in C++17 1406 and removed in C++20. 1407* ``__is_lvalue_reference`` (C++, Embarcadero) 1408* ``__is_member_object_pointer`` (C++, Embarcadero) 1409* ``__is_member_function_pointer`` (C++, Embarcadero) 1410* ``__is_member_pointer`` (C++, Embarcadero) 1411* ``__is_nothrow_assignable`` (C++, MSVC 2013) 1412* ``__is_nothrow_constructible`` (C++, MSVC 2013) 1413* ``__is_nothrow_destructible`` (C++, MSVC 2013) 1414 Only available in ``-fms-extensions`` mode. 1415* ``__is_object`` (C++, Embarcadero) 1416* ``__is_pod`` (C++, GNU, Microsoft, Embarcadero): 1417 Note, the corresponding standard trait was deprecated in C++20. 1418* ``__is_pointer`` (C++, Embarcadero) 1419* ``__is_polymorphic`` (C++, GNU, Microsoft, Embarcadero) 1420* ``__is_reference`` (C++, Embarcadero) 1421* ``__is_rvalue_reference`` (C++, Embarcadero) 1422* ``__is_same`` (C++, Embarcadero) 1423* ``__is_same_as`` (GCC): Synonym for ``__is_same``. 1424* ``__is_scalar`` (C++, Embarcadero) 1425* ``__is_sealed`` (Microsoft): 1426 Synonym for ``__is_final``. 1427* ``__is_signed`` (C++, Embarcadero): 1428 Returns false for enumeration types, and returns true for floating-point 1429 types. Note, before Clang 10, returned true for enumeration types if the 1430 underlying type was signed, and returned false for floating-point types. 1431* ``__is_standard_layout`` (C++, GNU, Microsoft, Embarcadero) 1432* ``__is_trivial`` (C++, GNU, Microsoft, Embarcadero) 1433* ``__is_trivially_assignable`` (C++, GNU, Microsoft) 1434* ``__is_trivially_constructible`` (C++, GNU, Microsoft) 1435* ``__is_trivially_copyable`` (C++, GNU, Microsoft) 1436* ``__is_trivially_destructible`` (C++, MSVC 2013) 1437* ``__is_union`` (C++, GNU, Microsoft, Embarcadero) 1438* ``__is_unsigned`` (C++, Embarcadero): 1439 Returns false for enumeration types. Note, before Clang 13, returned true for 1440 enumeration types if the underlying type was unsigned. 1441* ``__is_void`` (C++, Embarcadero) 1442* ``__is_volatile`` (C++, Embarcadero) 1443* ``__reference_binds_to_temporary(T, U)`` (Clang): Determines whether a 1444 reference of type ``T`` bound to an expression of type ``U`` would bind to a 1445 materialized temporary object. If ``T`` is not a reference type the result 1446 is false. Note this trait will also return false when the initialization of 1447 ``T`` from ``U`` is ill-formed. 1448* ``__underlying_type`` (C++, GNU, Microsoft) 1449 1450In addition, the following expression traits are supported: 1451 1452* ``__is_lvalue_expr(e)`` (Embarcadero): 1453 Returns true if ``e`` is an lvalue expression. 1454 Deprecated, use ``__is_lvalue_reference(decltype((e)))`` instead. 1455* ``__is_rvalue_expr(e)`` (Embarcadero): 1456 Returns true if ``e`` is a prvalue expression. 1457 Deprecated, use ``!__is_reference(decltype((e)))`` instead. 1458 1459There are multiple ways to detect support for a type trait ``__X`` in the 1460compiler, depending on the oldest version of Clang you wish to support. 1461 1462* From Clang 10 onwards, ``__has_builtin(__X)`` can be used. 1463* From Clang 6 onwards, ``!__is_identifier(__X)`` can be used. 1464* From Clang 3 onwards, ``__has_feature(X)`` can be used, but only supports 1465 the following traits: 1466 1467 * ``__has_nothrow_assign`` 1468 * ``__has_nothrow_copy`` 1469 * ``__has_nothrow_constructor`` 1470 * ``__has_trivial_assign`` 1471 * ``__has_trivial_copy`` 1472 * ``__has_trivial_constructor`` 1473 * ``__has_trivial_destructor`` 1474 * ``__has_virtual_destructor`` 1475 * ``__is_abstract`` 1476 * ``__is_base_of`` 1477 * ``__is_class`` 1478 * ``__is_constructible`` 1479 * ``__is_convertible_to`` 1480 * ``__is_empty`` 1481 * ``__is_enum`` 1482 * ``__is_final`` 1483 * ``__is_literal`` 1484 * ``__is_standard_layout`` 1485 * ``__is_pod`` 1486 * ``__is_polymorphic`` 1487 * ``__is_sealed`` 1488 * ``__is_trivial`` 1489 * ``__is_trivially_assignable`` 1490 * ``__is_trivially_constructible`` 1491 * ``__is_trivially_copyable`` 1492 * ``__is_union`` 1493 * ``__underlying_type`` 1494 1495A simplistic usage example as might be seen in standard C++ headers follows: 1496 1497.. code-block:: c++ 1498 1499 #if __has_builtin(__is_convertible_to) 1500 template<typename From, typename To> 1501 struct is_convertible_to { 1502 static const bool value = __is_convertible_to(From, To); 1503 }; 1504 #else 1505 // Emulate type trait for compatibility with other compilers. 1506 #endif 1507 1508Blocks 1509====== 1510 1511The syntax and high level language feature description is in 1512:doc:`BlockLanguageSpec<BlockLanguageSpec>`. Implementation and ABI details for 1513the clang implementation are in :doc:`Block-ABI-Apple<Block-ABI-Apple>`. 1514 1515Query for this feature with ``__has_extension(blocks)``. 1516 1517ASM Goto with Output Constraints 1518================================ 1519 1520In addition to the functionality provided by `GCC's extended 1521assembly <https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html>`_, clang 1522supports output constraints with the `goto` form. 1523 1524The goto form of GCC's extended assembly allows the programmer to branch to a C 1525label from within an inline assembly block. Clang extends this behavior by 1526allowing the programmer to use output constraints: 1527 1528.. code-block:: c++ 1529 1530 int foo(int x) { 1531 int y; 1532 asm goto("# %0 %1 %l2" : "=r"(y) : "r"(x) : : err); 1533 return y; 1534 err: 1535 return -1; 1536 } 1537 1538It's important to note that outputs are valid only on the "fallthrough" branch. 1539Using outputs on an indirect branch may result in undefined behavior. For 1540example, in the function above, use of the value assigned to `y` in the `err` 1541block is undefined behavior. 1542 1543When using tied-outputs (i.e. outputs that are inputs and outputs, not just 1544outputs) with the `+r` constraint, there is a hidden input that's created 1545before the label, so numeric references to operands must account for that. 1546 1547.. code-block:: c++ 1548 1549 int foo(int x) { 1550 // %0 and %1 both refer to x 1551 // %l2 refers to err 1552 asm goto("# %0 %1 %l2" : "+r"(x) : : : err); 1553 return x; 1554 err: 1555 return -1; 1556 } 1557 1558This was changed to match GCC in clang-13; for better portability, symbolic 1559references can be used instead of numeric references. 1560 1561.. code-block:: c++ 1562 1563 int foo(int x) { 1564 asm goto("# %[x] %l[err]" : [x]"+r"(x) : : : err); 1565 return x; 1566 err: 1567 return -1; 1568 } 1569 1570Query for this feature with ``__has_extension(gnu_asm_goto_with_outputs)``. 1571 1572Objective-C Features 1573==================== 1574 1575Related result types 1576-------------------- 1577 1578According to Cocoa conventions, Objective-C methods with certain names 1579("``init``", "``alloc``", etc.) always return objects that are an instance of 1580the receiving class's type. Such methods are said to have a "related result 1581type", meaning that a message send to one of these methods will have the same 1582static type as an instance of the receiver class. For example, given the 1583following classes: 1584 1585.. code-block:: objc 1586 1587 @interface NSObject 1588 + (id)alloc; 1589 - (id)init; 1590 @end 1591 1592 @interface NSArray : NSObject 1593 @end 1594 1595and this common initialization pattern 1596 1597.. code-block:: objc 1598 1599 NSArray *array = [[NSArray alloc] init]; 1600 1601the type of the expression ``[NSArray alloc]`` is ``NSArray*`` because 1602``alloc`` implicitly has a related result type. Similarly, the type of the 1603expression ``[[NSArray alloc] init]`` is ``NSArray*``, since ``init`` has a 1604related result type and its receiver is known to have the type ``NSArray *``. 1605If neither ``alloc`` nor ``init`` had a related result type, the expressions 1606would have had type ``id``, as declared in the method signature. 1607 1608A method with a related result type can be declared by using the type 1609``instancetype`` as its result type. ``instancetype`` is a contextual keyword 1610that is only permitted in the result type of an Objective-C method, e.g. 1611 1612.. code-block:: objc 1613 1614 @interface A 1615 + (instancetype)constructAnA; 1616 @end 1617 1618The related result type can also be inferred for some methods. To determine 1619whether a method has an inferred related result type, the first word in the 1620camel-case selector (e.g., "``init``" in "``initWithObjects``") is considered, 1621and the method will have a related result type if its return type is compatible 1622with the type of its class and if: 1623 1624* the first word is "``alloc``" or "``new``", and the method is a class method, 1625 or 1626 1627* the first word is "``autorelease``", "``init``", "``retain``", or "``self``", 1628 and the method is an instance method. 1629 1630If a method with a related result type is overridden by a subclass method, the 1631subclass method must also return a type that is compatible with the subclass 1632type. For example: 1633 1634.. code-block:: objc 1635 1636 @interface NSString : NSObject 1637 - (NSUnrelated *)init; // incorrect usage: NSUnrelated is not NSString or a superclass of NSString 1638 @end 1639 1640Related result types only affect the type of a message send or property access 1641via the given method. In all other respects, a method with a related result 1642type is treated the same way as method that returns ``id``. 1643 1644Use ``__has_feature(objc_instancetype)`` to determine whether the 1645``instancetype`` contextual keyword is available. 1646 1647Automatic reference counting 1648---------------------------- 1649 1650Clang provides support for :doc:`automated reference counting 1651<AutomaticReferenceCounting>` in Objective-C, which eliminates the need 1652for manual ``retain``/``release``/``autorelease`` message sends. There are three 1653feature macros associated with automatic reference counting: 1654``__has_feature(objc_arc)`` indicates the availability of automated reference 1655counting in general, while ``__has_feature(objc_arc_weak)`` indicates that 1656automated reference counting also includes support for ``__weak`` pointers to 1657Objective-C objects. ``__has_feature(objc_arc_fields)`` indicates that C structs 1658are allowed to have fields that are pointers to Objective-C objects managed by 1659automatic reference counting. 1660 1661.. _objc-weak: 1662 1663Weak references 1664--------------- 1665 1666Clang supports ARC-style weak and unsafe references in Objective-C even 1667outside of ARC mode. Weak references must be explicitly enabled with 1668the ``-fobjc-weak`` option; use ``__has_feature((objc_arc_weak))`` 1669to test whether they are enabled. Unsafe references are enabled 1670unconditionally. ARC-style weak and unsafe references cannot be used 1671when Objective-C garbage collection is enabled. 1672 1673Except as noted below, the language rules for the ``__weak`` and 1674``__unsafe_unretained`` qualifiers (and the ``weak`` and 1675``unsafe_unretained`` property attributes) are just as laid out 1676in the :doc:`ARC specification <AutomaticReferenceCounting>`. 1677In particular, note that some classes do not support forming weak 1678references to their instances, and note that special care must be 1679taken when storing weak references in memory where initialization 1680and deinitialization are outside the responsibility of the compiler 1681(such as in ``malloc``-ed memory). 1682 1683Loading from a ``__weak`` variable always implicitly retains the 1684loaded value. In non-ARC modes, this retain is normally balanced 1685by an implicit autorelease. This autorelease can be suppressed 1686by performing the load in the receiver position of a ``-retain`` 1687message send (e.g. ``[weakReference retain]``); note that this performs 1688only a single retain (the retain done when primitively loading from 1689the weak reference). 1690 1691For the most part, ``__unsafe_unretained`` in non-ARC modes is just the 1692default behavior of variables and therefore is not needed. However, 1693it does have an effect on the semantics of block captures: normally, 1694copying a block which captures an Objective-C object or block pointer 1695causes the captured pointer to be retained or copied, respectively, 1696but that behavior is suppressed when the captured variable is qualified 1697with ``__unsafe_unretained``. 1698 1699Note that the ``__weak`` qualifier formerly meant the GC qualifier in 1700all non-ARC modes and was silently ignored outside of GC modes. It now 1701means the ARC-style qualifier in all non-GC modes and is no longer 1702allowed if not enabled by either ``-fobjc-arc`` or ``-fobjc-weak``. 1703It is expected that ``-fobjc-weak`` will eventually be enabled by default 1704in all non-GC Objective-C modes. 1705 1706.. _objc-fixed-enum: 1707 1708Enumerations with a fixed underlying type 1709----------------------------------------- 1710 1711Clang provides support for C++11 enumerations with a fixed underlying type 1712within Objective-C. For example, one can write an enumeration type as: 1713 1714.. code-block:: c++ 1715 1716 typedef enum : unsigned char { Red, Green, Blue } Color; 1717 1718This specifies that the underlying type, which is used to store the enumeration 1719value, is ``unsigned char``. 1720 1721Use ``__has_feature(objc_fixed_enum)`` to determine whether support for fixed 1722underlying types is available in Objective-C. 1723 1724Interoperability with C++11 lambdas 1725----------------------------------- 1726 1727Clang provides interoperability between C++11 lambdas and blocks-based APIs, by 1728permitting a lambda to be implicitly converted to a block pointer with the 1729corresponding signature. For example, consider an API such as ``NSArray``'s 1730array-sorting method: 1731 1732.. code-block:: objc 1733 1734 - (NSArray *)sortedArrayUsingComparator:(NSComparator)cmptr; 1735 1736``NSComparator`` is simply a typedef for the block pointer ``NSComparisonResult 1737(^)(id, id)``, and parameters of this type are generally provided with block 1738literals as arguments. However, one can also use a C++11 lambda so long as it 1739provides the same signature (in this case, accepting two parameters of type 1740``id`` and returning an ``NSComparisonResult``): 1741 1742.. code-block:: objc 1743 1744 NSArray *array = @[@"string 1", @"string 21", @"string 12", @"String 11", 1745 @"String 02"]; 1746 const NSStringCompareOptions comparisonOptions 1747 = NSCaseInsensitiveSearch | NSNumericSearch | 1748 NSWidthInsensitiveSearch | NSForcedOrderingSearch; 1749 NSLocale *currentLocale = [NSLocale currentLocale]; 1750 NSArray *sorted 1751 = [array sortedArrayUsingComparator:[=](id s1, id s2) -> NSComparisonResult { 1752 NSRange string1Range = NSMakeRange(0, [s1 length]); 1753 return [s1 compare:s2 options:comparisonOptions 1754 range:string1Range locale:currentLocale]; 1755 }]; 1756 NSLog(@"sorted: %@", sorted); 1757 1758This code relies on an implicit conversion from the type of the lambda 1759expression (an unnamed, local class type called the *closure type*) to the 1760corresponding block pointer type. The conversion itself is expressed by a 1761conversion operator in that closure type that produces a block pointer with the 1762same signature as the lambda itself, e.g., 1763 1764.. code-block:: objc 1765 1766 operator NSComparisonResult (^)(id, id)() const; 1767 1768This conversion function returns a new block that simply forwards the two 1769parameters to the lambda object (which it captures by copy), then returns the 1770result. The returned block is first copied (with ``Block_copy``) and then 1771autoreleased. As an optimization, if a lambda expression is immediately 1772converted to a block pointer (as in the first example, above), then the block 1773is not copied and autoreleased: rather, it is given the same lifetime as a 1774block literal written at that point in the program, which avoids the overhead 1775of copying a block to the heap in the common case. 1776 1777The conversion from a lambda to a block pointer is only available in 1778Objective-C++, and not in C++ with blocks, due to its use of Objective-C memory 1779management (autorelease). 1780 1781Object Literals and Subscripting 1782-------------------------------- 1783 1784Clang provides support for :doc:`Object Literals and Subscripting 1785<ObjectiveCLiterals>` in Objective-C, which simplifies common Objective-C 1786programming patterns, makes programs more concise, and improves the safety of 1787container creation. There are several feature macros associated with object 1788literals and subscripting: ``__has_feature(objc_array_literals)`` tests the 1789availability of array literals; ``__has_feature(objc_dictionary_literals)`` 1790tests the availability of dictionary literals; 1791``__has_feature(objc_subscripting)`` tests the availability of object 1792subscripting. 1793 1794Objective-C Autosynthesis of Properties 1795--------------------------------------- 1796 1797Clang provides support for autosynthesis of declared properties. Using this 1798feature, clang provides default synthesis of those properties not declared 1799@dynamic and not having user provided backing getter and setter methods. 1800``__has_feature(objc_default_synthesize_properties)`` checks for availability 1801of this feature in version of clang being used. 1802 1803.. _langext-objc-retain-release: 1804 1805Objective-C retaining behavior attributes 1806----------------------------------------- 1807 1808In Objective-C, functions and methods are generally assumed to follow the 1809`Cocoa Memory Management 1810<https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmRules.html>`_ 1811conventions for ownership of object arguments and 1812return values. However, there are exceptions, and so Clang provides attributes 1813to allow these exceptions to be documented. This are used by ARC and the 1814`static analyzer <https://clang-analyzer.llvm.org>`_ Some exceptions may be 1815better described using the ``objc_method_family`` attribute instead. 1816 1817**Usage**: The ``ns_returns_retained``, ``ns_returns_not_retained``, 1818``ns_returns_autoreleased``, ``cf_returns_retained``, and 1819``cf_returns_not_retained`` attributes can be placed on methods and functions 1820that return Objective-C or CoreFoundation objects. They are commonly placed at 1821the end of a function prototype or method declaration: 1822 1823.. code-block:: objc 1824 1825 id foo() __attribute__((ns_returns_retained)); 1826 1827 - (NSString *)bar:(int)x __attribute__((ns_returns_retained)); 1828 1829The ``*_returns_retained`` attributes specify that the returned object has a +1 1830retain count. The ``*_returns_not_retained`` attributes specify that the return 1831object has a +0 retain count, even if the normal convention for its selector 1832would be +1. ``ns_returns_autoreleased`` specifies that the returned object is 1833+0, but is guaranteed to live at least as long as the next flush of an 1834autorelease pool. 1835 1836**Usage**: The ``ns_consumed`` and ``cf_consumed`` attributes can be placed on 1837an parameter declaration; they specify that the argument is expected to have a 1838+1 retain count, which will be balanced in some way by the function or method. 1839The ``ns_consumes_self`` attribute can only be placed on an Objective-C 1840method; it specifies that the method expects its ``self`` parameter to have a 1841+1 retain count, which it will balance in some way. 1842 1843.. code-block:: objc 1844 1845 void foo(__attribute__((ns_consumed)) NSString *string); 1846 1847 - (void) bar __attribute__((ns_consumes_self)); 1848 - (void) baz:(id) __attribute__((ns_consumed)) x; 1849 1850Further examples of these attributes are available in the static analyzer's `list of annotations for analysis 1851<https://clang-analyzer.llvm.org/annotations.html#cocoa_mem>`_. 1852 1853Query for these features with ``__has_attribute(ns_consumed)``, 1854``__has_attribute(ns_returns_retained)``, etc. 1855 1856Objective-C @available 1857---------------------- 1858 1859It is possible to use the newest SDK but still build a program that can run on 1860older versions of macOS and iOS by passing ``-mmacosx-version-min=`` / 1861``-miphoneos-version-min=``. 1862 1863Before LLVM 5.0, when calling a function that exists only in the OS that's 1864newer than the target OS (as determined by the minimum deployment version), 1865programmers had to carefully check if the function exists at runtime, using 1866null checks for weakly-linked C functions, ``+class`` for Objective-C classes, 1867and ``-respondsToSelector:`` or ``+instancesRespondToSelector:`` for 1868Objective-C methods. If such a check was missed, the program would compile 1869fine, run fine on newer systems, but crash on older systems. 1870 1871As of LLVM 5.0, ``-Wunguarded-availability`` uses the `availability attributes 1872<https://clang.llvm.org/docs/AttributeReference.html#availability>`_ together 1873with the new ``@available()`` keyword to assist with this issue. 1874When a method that's introduced in the OS newer than the target OS is called, a 1875-Wunguarded-availability warning is emitted if that call is not guarded: 1876 1877.. code-block:: objc 1878 1879 void my_fun(NSSomeClass* var) { 1880 // If fancyNewMethod was added in e.g. macOS 10.12, but the code is 1881 // built with -mmacosx-version-min=10.11, then this unconditional call 1882 // will emit a -Wunguarded-availability warning: 1883 [var fancyNewMethod]; 1884 } 1885 1886To fix the warning and to avoid the crash on macOS 10.11, wrap it in 1887``if(@available())``: 1888 1889.. code-block:: objc 1890 1891 void my_fun(NSSomeClass* var) { 1892 if (@available(macOS 10.12, *)) { 1893 [var fancyNewMethod]; 1894 } else { 1895 // Put fallback behavior for old macOS versions (and for non-mac 1896 // platforms) here. 1897 } 1898 } 1899 1900The ``*`` is required and means that platforms not explicitly listed will take 1901the true branch, and the compiler will emit ``-Wunguarded-availability`` 1902warnings for unlisted platforms based on those platform's deployment target. 1903More than one platform can be listed in ``@available()``: 1904 1905.. code-block:: objc 1906 1907 void my_fun(NSSomeClass* var) { 1908 if (@available(macOS 10.12, iOS 10, *)) { 1909 [var fancyNewMethod]; 1910 } 1911 } 1912 1913If the caller of ``my_fun()`` already checks that ``my_fun()`` is only called 1914on 10.12, then add an `availability attribute 1915<https://clang.llvm.org/docs/AttributeReference.html#availability>`_ to it, 1916which will also suppress the warning and require that calls to my_fun() are 1917checked: 1918 1919.. code-block:: objc 1920 1921 API_AVAILABLE(macos(10.12)) void my_fun(NSSomeClass* var) { 1922 [var fancyNewMethod]; // Now ok. 1923 } 1924 1925``@available()`` is only available in Objective-C code. To use the feature 1926in C and C++ code, use the ``__builtin_available()`` spelling instead. 1927 1928If existing code uses null checks or ``-respondsToSelector:``, it should 1929be changed to use ``@available()`` (or ``__builtin_available``) instead. 1930 1931``-Wunguarded-availability`` is disabled by default, but 1932``-Wunguarded-availability-new``, which only emits this warning for APIs 1933that have been introduced in macOS >= 10.13, iOS >= 11, watchOS >= 4 and 1934tvOS >= 11, is enabled by default. 1935 1936.. _langext-overloading: 1937 1938Objective-C++ ABI: protocol-qualifier mangling of parameters 1939------------------------------------------------------------ 1940 1941Starting with LLVM 3.4, Clang produces a new mangling for parameters whose 1942type is a qualified-``id`` (e.g., ``id<Foo>``). This mangling allows such 1943parameters to be differentiated from those with the regular unqualified ``id`` 1944type. 1945 1946This was a non-backward compatible mangling change to the ABI. This change 1947allows proper overloading, and also prevents mangling conflicts with template 1948parameters of protocol-qualified type. 1949 1950Query the presence of this new mangling with 1951``__has_feature(objc_protocol_qualifier_mangling)``. 1952 1953Initializer lists for complex numbers in C 1954========================================== 1955 1956clang supports an extension which allows the following in C: 1957 1958.. code-block:: c++ 1959 1960 #include <math.h> 1961 #include <complex.h> 1962 complex float x = { 1.0f, INFINITY }; // Init to (1, Inf) 1963 1964This construct is useful because there is no way to separately initialize the 1965real and imaginary parts of a complex variable in standard C, given that clang 1966does not support ``_Imaginary``. (Clang also supports the ``__real__`` and 1967``__imag__`` extensions from gcc, which help in some cases, but are not usable 1968in static initializers.) 1969 1970Note that this extension does not allow eliding the braces; the meaning of the 1971following two lines is different: 1972 1973.. code-block:: c++ 1974 1975 complex float x[] = { { 1.0f, 1.0f } }; // [0] = (1, 1) 1976 complex float x[] = { 1.0f, 1.0f }; // [0] = (1, 0), [1] = (1, 0) 1977 1978This extension also works in C++ mode, as far as that goes, but does not apply 1979to the C++ ``std::complex``. (In C++11, list initialization allows the same 1980syntax to be used with ``std::complex`` with the same meaning.) 1981 1982For GCC compatibility, ``__builtin_complex(re, im)`` can also be used to 1983construct a complex number from the given real and imaginary components. 1984 1985OpenCL Features 1986=============== 1987 1988Clang supports internal OpenCL extensions documented below. 1989 1990``__cl_clang_bitfields`` 1991-------------------------------- 1992 1993With this extension it is possible to enable bitfields in structs 1994or unions using the OpenCL extension pragma mechanism detailed in 1995`the OpenCL Extension Specification, section 1.2 1996<https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_Ext.html#extensions-overview>`_. 1997 1998Use of bitfields in OpenCL kernels can result in reduced portability as struct 1999layout is not guaranteed to be consistent when compiled by different compilers. 2000If structs with bitfields are used as kernel function parameters, it can result 2001in incorrect functionality when the layout is different between the host and 2002device code. 2003 2004**Example of Use**: 2005 2006.. code-block:: c++ 2007 2008 #pragma OPENCL EXTENSION __cl_clang_bitfields : enable 2009 struct with_bitfield { 2010 unsigned int i : 5; // compiled - no diagnostic generated 2011 }; 2012 2013 #pragma OPENCL EXTENSION __cl_clang_bitfields : disable 2014 struct without_bitfield { 2015 unsigned int i : 5; // error - bitfields are not supported 2016 }; 2017 2018``__cl_clang_function_pointers`` 2019-------------------------------- 2020 2021With this extension it is possible to enable various language features that 2022are relying on function pointers using regular OpenCL extension pragma 2023mechanism detailed in `the OpenCL Extension Specification, 2024section 1.2 2025<https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_Ext.html#extensions-overview>`_. 2026 2027In C++ for OpenCL this also enables: 2028 2029- Use of member function pointers; 2030 2031- Unrestricted use of references to functions; 2032 2033- Virtual member functions. 2034 2035Such functionality is not conformant and does not guarantee to compile 2036correctly in any circumstances. It can be used if: 2037 2038- the kernel source does not contain call expressions to (member-) function 2039 pointers, or virtual functions. For example this extension can be used in 2040 metaprogramming algorithms to be able to specify/detect types generically. 2041 2042- the generated kernel binary does not contain indirect calls because they 2043 are eliminated using compiler optimizations e.g. devirtualization. 2044 2045- the selected target supports the function pointer like functionality e.g. 2046 most CPU targets. 2047 2048**Example of Use**: 2049 2050.. code-block:: c++ 2051 2052 #pragma OPENCL EXTENSION __cl_clang_function_pointers : enable 2053 void foo() 2054 { 2055 void (*fp)(); // compiled - no diagnostic generated 2056 } 2057 2058 #pragma OPENCL EXTENSION __cl_clang_function_pointers : disable 2059 void bar() 2060 { 2061 void (*fp)(); // error - pointers to function are not allowed 2062 } 2063 2064``__cl_clang_variadic_functions`` 2065--------------------------------- 2066 2067With this extension it is possible to enable variadic arguments in functions 2068using regular OpenCL extension pragma mechanism detailed in `the OpenCL 2069Extension Specification, section 1.2 2070<https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_Ext.html#extensions-overview>`_. 2071 2072This is not conformant behavior and it can only be used portably when the 2073functions with variadic prototypes do not get generated in binary e.g. the 2074variadic prototype is used to specify a function type with any number of 2075arguments in metaprogramming algorithms in C++ for OpenCL. 2076 2077This extensions can also be used when the kernel code is intended for targets 2078supporting the variadic arguments e.g. majority of CPU targets. 2079 2080**Example of Use**: 2081 2082.. code-block:: c++ 2083 2084 #pragma OPENCL EXTENSION __cl_clang_variadic_functions : enable 2085 void foo(int a, ...); // compiled - no diagnostic generated 2086 2087 #pragma OPENCL EXTENSION __cl_clang_variadic_functions : disable 2088 void bar(int a, ...); // error - variadic prototype is not allowed 2089 2090``__cl_clang_non_portable_kernel_param_types`` 2091---------------------------------------------- 2092 2093With this extension it is possible to enable the use of some restricted types 2094in kernel parameters specified in `C++ for OpenCL v1.0 s2.4 2095<https://www.khronos.org/opencl/assets/CXX_for_OpenCL.html#kernel_function>`_. 2096The restrictions can be relaxed using regular OpenCL extension pragma mechanism 2097detailed in `the OpenCL Extension Specification, section 1.2 2098<https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_Ext.html#extensions-overview>`_. 2099 2100This is not a conformant behavior and it can only be used when the 2101kernel arguments are not accessed on the host side or the data layout/size 2102between the host and device is known to be compatible. 2103 2104**Example of Use**: 2105 2106.. code-block:: c++ 2107 2108 // Plain Old Data type. 2109 struct Pod { 2110 int a; 2111 int b; 2112 }; 2113 2114 // Not POD type because of the constructor. 2115 // Standard layout type because there is only one access control. 2116 struct OnlySL { 2117 int a; 2118 int b; 2119 NotPod() : a(0), b(0) {} 2120 }; 2121 2122 // Not standard layout type because of two different access controls. 2123 struct NotSL { 2124 int a; 2125 private: 2126 int b; 2127 } 2128 2129 kernel void kernel_main( 2130 Pod a, 2131 #pragma OPENCL EXTENSION __cl_clang_non_portable_kernel_param_types : enable 2132 OnlySL b, 2133 global NotSL *c, 2134 #pragma OPENCL EXTENSION __cl_clang_non_portable_kernel_param_types : disable 2135 global OnlySL *d, 2136 ); 2137 2138Remove address space builtin function 2139------------------------------------- 2140 2141``__remove_address_space`` allows to derive types in C++ for OpenCL 2142that have address space qualifiers removed. This utility only affects 2143address space qualifiers, therefore, other type qualifiers such as 2144``const`` or ``volatile`` remain unchanged. 2145 2146**Example of Use**: 2147 2148.. code-block:: c++ 2149 2150 template<typename T> 2151 void foo(T *par){ 2152 T var1; // error - local function variable with global address space 2153 __private T var2; // error - conflicting address space qualifiers 2154 __private __remove_address_space<T>::type var3; // var3 is __private int 2155 } 2156 2157 void bar(){ 2158 __global int* ptr; 2159 foo(ptr); 2160 } 2161 2162Legacy 1.x atomics with generic address space 2163--------------------------------------------- 2164 2165Clang allows use of atomic functions from the OpenCL 1.x standards 2166with the generic address space pointer in C++ for OpenCL mode. 2167 2168This is a non-portable feature and might not be supported by all 2169targets. 2170 2171**Example of Use**: 2172 2173.. code-block:: c++ 2174 2175 void foo(__generic volatile unsigned int* a) { 2176 atomic_add(a, 1); 2177 } 2178 2179Builtin Functions 2180================= 2181 2182Clang supports a number of builtin library functions with the same syntax as 2183GCC, including things like ``__builtin_nan``, ``__builtin_constant_p``, 2184``__builtin_choose_expr``, ``__builtin_types_compatible_p``, 2185``__builtin_assume_aligned``, ``__sync_fetch_and_add``, etc. In addition to 2186the GCC builtins, Clang supports a number of builtins that GCC does not, which 2187are listed here. 2188 2189Please note that Clang does not and will not support all of the GCC builtins 2190for vector operations. Instead of using builtins, you should use the functions 2191defined in target-specific header files like ``<xmmintrin.h>``, which define 2192portable wrappers for these. Many of the Clang versions of these functions are 2193implemented directly in terms of :ref:`extended vector support 2194<langext-vectors>` instead of builtins, in order to reduce the number of 2195builtins that we need to implement. 2196 2197``__builtin_alloca`` 2198-------------------- 2199 2200``__builtin_alloca`` is used to dynamically allocate memory on the stack. Memory 2201is automatically freed upon function termination. 2202 2203**Syntax**: 2204 2205.. code-block:: c++ 2206 2207 __builtin_alloca(size_t n) 2208 2209**Example of Use**: 2210 2211.. code-block:: c++ 2212 2213 void init(float* data, size_t nbelems); 2214 void process(float* data, size_t nbelems); 2215 int foo(size_t n) { 2216 auto mem = (float*)__builtin_alloca(n * sizeof(float)); 2217 init(mem, n); 2218 process(mem, n); 2219 /* mem is automatically freed at this point */ 2220 } 2221 2222**Description**: 2223 2224``__builtin_alloca`` is meant to be used to allocate a dynamic amount of memory 2225on the stack. This amount is subject to stack allocation limits. 2226 2227Query for this feature with ``__has_builtin(__builtin_alloca)``. 2228 2229``__builtin_alloca_with_align`` 2230------------------------------- 2231 2232``__builtin_alloca_with_align`` is used to dynamically allocate memory on the 2233stack while controlling its alignment. Memory is automatically freed upon 2234function termination. 2235 2236 2237**Syntax**: 2238 2239.. code-block:: c++ 2240 2241 __builtin_alloca_with_align(size_t n, size_t align) 2242 2243**Example of Use**: 2244 2245.. code-block:: c++ 2246 2247 void init(float* data, size_t nbelems); 2248 void process(float* data, size_t nbelems); 2249 int foo(size_t n) { 2250 auto mem = (float*)__builtin_alloca_with_align( 2251 n * sizeof(float), 2252 CHAR_BIT * alignof(float)); 2253 init(mem, n); 2254 process(mem, n); 2255 /* mem is automatically freed at this point */ 2256 } 2257 2258**Description**: 2259 2260``__builtin_alloca_with_align`` is meant to be used to allocate a dynamic amount of memory 2261on the stack. It is similar to ``__builtin_alloca`` but accepts a second 2262argument whose value is the alignment constraint, as a power of 2 in *bits*. 2263 2264Query for this feature with ``__has_builtin(__builtin_alloca_with_align)``. 2265 2266.. _langext-__builtin_assume: 2267 2268``__builtin_assume`` 2269-------------------- 2270 2271``__builtin_assume`` is used to provide the optimizer with a boolean 2272invariant that is defined to be true. 2273 2274**Syntax**: 2275 2276.. code-block:: c++ 2277 2278 __builtin_assume(bool) 2279 2280**Example of Use**: 2281 2282.. code-block:: c++ 2283 2284 int foo(int x) { 2285 __builtin_assume(x != 0); 2286 // The optimizer may short-circuit this check using the invariant. 2287 if (x == 0) 2288 return do_something(); 2289 return do_something_else(); 2290 } 2291 2292**Description**: 2293 2294The boolean argument to this function is defined to be true. The optimizer may 2295analyze the form of the expression provided as the argument and deduce from 2296that information used to optimize the program. If the condition is violated 2297during execution, the behavior is undefined. The argument itself is never 2298evaluated, so any side effects of the expression will be discarded. 2299 2300Query for this feature with ``__has_builtin(__builtin_assume)``. 2301 2302``__builtin_call_with_static_chain`` 2303------------------------------------ 2304 2305``__builtin_call_with_static_chain`` is used to perform a static call while 2306setting updating the static chain register. 2307 2308**Syntax**: 2309 2310.. code-block:: c++ 2311 2312 T __builtin_call_with_static_chain(T expr, void* ptr) 2313 2314**Example of Use**: 2315 2316.. code-block:: c++ 2317 2318 auto v = __builtin_call_with_static_chain(foo(3), foo); 2319 2320**Description**: 2321 2322This builtin returns ``expr`` after checking that ``expr`` is a non-member 2323static call expression. The call to that expression is made while using ``ptr`` 2324as a function pointer stored in a dedicated register to implement *static chain* 2325calling convention, as used by some language to implement closures or nested 2326functions. 2327 2328Query for this feature with ``__has_builtin(__builtin_call_with_static_chain)``. 2329 2330``__builtin_readcyclecounter`` 2331------------------------------ 2332 2333``__builtin_readcyclecounter`` is used to access the cycle counter register (or 2334a similar low-latency, high-accuracy clock) on those targets that support it. 2335 2336**Syntax**: 2337 2338.. code-block:: c++ 2339 2340 __builtin_readcyclecounter() 2341 2342**Example of Use**: 2343 2344.. code-block:: c++ 2345 2346 unsigned long long t0 = __builtin_readcyclecounter(); 2347 do_something(); 2348 unsigned long long t1 = __builtin_readcyclecounter(); 2349 unsigned long long cycles_to_do_something = t1 - t0; // assuming no overflow 2350 2351**Description**: 2352 2353The ``__builtin_readcyclecounter()`` builtin returns the cycle counter value, 2354which may be either global or process/thread-specific depending on the target. 2355As the backing counters often overflow quickly (on the order of seconds) this 2356should only be used for timing small intervals. When not supported by the 2357target, the return value is always zero. This builtin takes no arguments and 2358produces an unsigned long long result. 2359 2360Query for this feature with ``__has_builtin(__builtin_readcyclecounter)``. Note 2361that even if present, its use may depend on run-time privilege or other OS 2362controlled state. 2363 2364``__builtin_dump_struct`` 2365------------------------- 2366 2367**Syntax**: 2368 2369.. code-block:: c++ 2370 2371 __builtin_dump_struct(&some_struct, &some_printf_func); 2372 2373**Examples**: 2374 2375.. code-block:: c++ 2376 2377 struct S { 2378 int x, y; 2379 float f; 2380 struct T { 2381 int i; 2382 } t; 2383 }; 2384 2385 void func(struct S *s) { 2386 __builtin_dump_struct(s, &printf); 2387 } 2388 2389Example output: 2390 2391.. code-block:: none 2392 2393 struct S { 2394 int i : 100 2395 int j : 42 2396 float f : 3.14159 2397 struct T t : struct T { 2398 int i : 1997 2399 } 2400 } 2401 2402**Description**: 2403 2404The '``__builtin_dump_struct``' function is used to print the fields of a simple 2405structure and their values for debugging purposes. The builtin accepts a pointer 2406to a structure to dump the fields of, and a pointer to a formatted output 2407function whose signature must be: ``int (*)(const char *, ...)`` and must 2408support the format specifiers used by ``printf()``. 2409 2410.. _langext-__builtin_shufflevector: 2411 2412``__builtin_shufflevector`` 2413--------------------------- 2414 2415``__builtin_shufflevector`` is used to express generic vector 2416permutation/shuffle/swizzle operations. This builtin is also very important 2417for the implementation of various target-specific header files like 2418``<xmmintrin.h>``. 2419 2420**Syntax**: 2421 2422.. code-block:: c++ 2423 2424 __builtin_shufflevector(vec1, vec2, index1, index2, ...) 2425 2426**Examples**: 2427 2428.. code-block:: c++ 2429 2430 // identity operation - return 4-element vector v1. 2431 __builtin_shufflevector(v1, v1, 0, 1, 2, 3) 2432 2433 // "Splat" element 0 of V1 into a 4-element result. 2434 __builtin_shufflevector(V1, V1, 0, 0, 0, 0) 2435 2436 // Reverse 4-element vector V1. 2437 __builtin_shufflevector(V1, V1, 3, 2, 1, 0) 2438 2439 // Concatenate every other element of 4-element vectors V1 and V2. 2440 __builtin_shufflevector(V1, V2, 0, 2, 4, 6) 2441 2442 // Concatenate every other element of 8-element vectors V1 and V2. 2443 __builtin_shufflevector(V1, V2, 0, 2, 4, 6, 8, 10, 12, 14) 2444 2445 // Shuffle v1 with some elements being undefined 2446 __builtin_shufflevector(v1, v1, 3, -1, 1, -1) 2447 2448**Description**: 2449 2450The first two arguments to ``__builtin_shufflevector`` are vectors that have 2451the same element type. The remaining arguments are a list of integers that 2452specify the elements indices of the first two vectors that should be extracted 2453and returned in a new vector. These element indices are numbered sequentially 2454starting with the first vector, continuing into the second vector. Thus, if 2455``vec1`` is a 4-element vector, index 5 would refer to the second element of 2456``vec2``. An index of -1 can be used to indicate that the corresponding element 2457in the returned vector is a don't care and can be optimized by the backend. 2458 2459The result of ``__builtin_shufflevector`` is a vector with the same element 2460type as ``vec1``/``vec2`` but that has an element count equal to the number of 2461indices specified. 2462 2463Query for this feature with ``__has_builtin(__builtin_shufflevector)``. 2464 2465.. _langext-__builtin_convertvector: 2466 2467``__builtin_convertvector`` 2468--------------------------- 2469 2470``__builtin_convertvector`` is used to express generic vector 2471type-conversion operations. The input vector and the output vector 2472type must have the same number of elements. 2473 2474**Syntax**: 2475 2476.. code-block:: c++ 2477 2478 __builtin_convertvector(src_vec, dst_vec_type) 2479 2480**Examples**: 2481 2482.. code-block:: c++ 2483 2484 typedef double vector4double __attribute__((__vector_size__(32))); 2485 typedef float vector4float __attribute__((__vector_size__(16))); 2486 typedef short vector4short __attribute__((__vector_size__(8))); 2487 vector4float vf; vector4short vs; 2488 2489 // convert from a vector of 4 floats to a vector of 4 doubles. 2490 __builtin_convertvector(vf, vector4double) 2491 // equivalent to: 2492 (vector4double) { (double) vf[0], (double) vf[1], (double) vf[2], (double) vf[3] } 2493 2494 // convert from a vector of 4 shorts to a vector of 4 floats. 2495 __builtin_convertvector(vs, vector4float) 2496 // equivalent to: 2497 (vector4float) { (float) vs[0], (float) vs[1], (float) vs[2], (float) vs[3] } 2498 2499**Description**: 2500 2501The first argument to ``__builtin_convertvector`` is a vector, and the second 2502argument is a vector type with the same number of elements as the first 2503argument. 2504 2505The result of ``__builtin_convertvector`` is a vector with the same element 2506type as the second argument, with a value defined in terms of the action of a 2507C-style cast applied to each element of the first argument. 2508 2509Query for this feature with ``__has_builtin(__builtin_convertvector)``. 2510 2511``__builtin_bitreverse`` 2512------------------------ 2513 2514* ``__builtin_bitreverse8`` 2515* ``__builtin_bitreverse16`` 2516* ``__builtin_bitreverse32`` 2517* ``__builtin_bitreverse64`` 2518 2519**Syntax**: 2520 2521.. code-block:: c++ 2522 2523 __builtin_bitreverse32(x) 2524 2525**Examples**: 2526 2527.. code-block:: c++ 2528 2529 uint8_t rev_x = __builtin_bitreverse8(x); 2530 uint16_t rev_x = __builtin_bitreverse16(x); 2531 uint32_t rev_y = __builtin_bitreverse32(y); 2532 uint64_t rev_z = __builtin_bitreverse64(z); 2533 2534**Description**: 2535 2536The '``__builtin_bitreverse``' family of builtins is used to reverse 2537the bitpattern of an integer value; for example ``0b10110110`` becomes 2538``0b01101101``. These builtins can be used within constant expressions. 2539 2540``__builtin_rotateleft`` 2541------------------------ 2542 2543* ``__builtin_rotateleft8`` 2544* ``__builtin_rotateleft16`` 2545* ``__builtin_rotateleft32`` 2546* ``__builtin_rotateleft64`` 2547 2548**Syntax**: 2549 2550.. code-block:: c++ 2551 2552 __builtin_rotateleft32(x, y) 2553 2554**Examples**: 2555 2556.. code-block:: c++ 2557 2558 uint8_t rot_x = __builtin_rotateleft8(x, y); 2559 uint16_t rot_x = __builtin_rotateleft16(x, y); 2560 uint32_t rot_x = __builtin_rotateleft32(x, y); 2561 uint64_t rot_x = __builtin_rotateleft64(x, y); 2562 2563**Description**: 2564 2565The '``__builtin_rotateleft``' family of builtins is used to rotate 2566the bits in the first argument by the amount in the second argument. 2567For example, ``0b10000110`` rotated left by 11 becomes ``0b00110100``. 2568The shift value is treated as an unsigned amount modulo the size of 2569the arguments. Both arguments and the result have the bitwidth specified 2570by the name of the builtin. These builtins can be used within constant 2571expressions. 2572 2573``__builtin_rotateright`` 2574------------------------- 2575 2576* ``__builtin_rotateright8`` 2577* ``__builtin_rotateright16`` 2578* ``__builtin_rotateright32`` 2579* ``__builtin_rotateright64`` 2580 2581**Syntax**: 2582 2583.. code-block:: c++ 2584 2585 __builtin_rotateright32(x, y) 2586 2587**Examples**: 2588 2589.. code-block:: c++ 2590 2591 uint8_t rot_x = __builtin_rotateright8(x, y); 2592 uint16_t rot_x = __builtin_rotateright16(x, y); 2593 uint32_t rot_x = __builtin_rotateright32(x, y); 2594 uint64_t rot_x = __builtin_rotateright64(x, y); 2595 2596**Description**: 2597 2598The '``__builtin_rotateright``' family of builtins is used to rotate 2599the bits in the first argument by the amount in the second argument. 2600For example, ``0b10000110`` rotated right by 3 becomes ``0b11010000``. 2601The shift value is treated as an unsigned amount modulo the size of 2602the arguments. Both arguments and the result have the bitwidth specified 2603by the name of the builtin. These builtins can be used within constant 2604expressions. 2605 2606``__builtin_unreachable`` 2607------------------------- 2608 2609``__builtin_unreachable`` is used to indicate that a specific point in the 2610program cannot be reached, even if the compiler might otherwise think it can. 2611This is useful to improve optimization and eliminates certain warnings. For 2612example, without the ``__builtin_unreachable`` in the example below, the 2613compiler assumes that the inline asm can fall through and prints a "function 2614declared '``noreturn``' should not return" warning. 2615 2616**Syntax**: 2617 2618.. code-block:: c++ 2619 2620 __builtin_unreachable() 2621 2622**Example of use**: 2623 2624.. code-block:: c++ 2625 2626 void myabort(void) __attribute__((noreturn)); 2627 void myabort(void) { 2628 asm("int3"); 2629 __builtin_unreachable(); 2630 } 2631 2632**Description**: 2633 2634The ``__builtin_unreachable()`` builtin has completely undefined behavior. 2635Since it has undefined behavior, it is a statement that it is never reached and 2636the optimizer can take advantage of this to produce better code. This builtin 2637takes no arguments and produces a void result. 2638 2639Query for this feature with ``__has_builtin(__builtin_unreachable)``. 2640 2641``__builtin_unpredictable`` 2642--------------------------- 2643 2644``__builtin_unpredictable`` is used to indicate that a branch condition is 2645unpredictable by hardware mechanisms such as branch prediction logic. 2646 2647**Syntax**: 2648 2649.. code-block:: c++ 2650 2651 __builtin_unpredictable(long long) 2652 2653**Example of use**: 2654 2655.. code-block:: c++ 2656 2657 if (__builtin_unpredictable(x > 0)) { 2658 foo(); 2659 } 2660 2661**Description**: 2662 2663The ``__builtin_unpredictable()`` builtin is expected to be used with control 2664flow conditions such as in ``if`` and ``switch`` statements. 2665 2666Query for this feature with ``__has_builtin(__builtin_unpredictable)``. 2667 2668 2669``__builtin_expect`` 2670-------------------- 2671 2672``__builtin_expect`` is used to indicate that the value of an expression is 2673anticipated to be the same as a statically known result. 2674 2675**Syntax**: 2676 2677.. code-block:: c++ 2678 2679 long __builtin_expect(long expr, long val) 2680 2681**Example of use**: 2682 2683.. code-block:: c++ 2684 2685 if (__builtin_expect(x, 0)) { 2686 bar(); 2687 } 2688 2689**Description**: 2690 2691The ``__builtin_expect()`` builtin is typically used with control flow 2692conditions such as in ``if`` and ``switch`` statements to help branch 2693prediction. It means that its first argument ``expr`` is expected to take the 2694value of its second argument ``val``. It always returns ``expr``. 2695 2696Query for this feature with ``__has_builtin(__builtin_expect)``. 2697 2698``__builtin_expect_with_probability`` 2699------------------------------------- 2700 2701``__builtin_expect_with_probability`` is similar to ``__builtin_expect`` but it 2702takes a probability as third argument. 2703 2704**Syntax**: 2705 2706.. code-block:: c++ 2707 2708 long __builtin_expect_with_probability(long expr, long val, double p) 2709 2710**Example of use**: 2711 2712.. code-block:: c++ 2713 2714 if (__builtin_expect_with_probability(x, 0, .3)) { 2715 bar(); 2716 } 2717 2718**Description**: 2719 2720The ``__builtin_expect_with_probability()`` builtin is typically used with 2721control flow conditions such as in ``if`` and ``switch`` statements to help 2722branch prediction. It means that its first argument ``expr`` is expected to take 2723the value of its second argument ``val`` with probability ``p``. ``p`` must be 2724within ``[0.0 ; 1.0]`` bounds. This builtin always returns the value of ``expr``. 2725 2726Query for this feature with ``__has_builtin(__builtin_expect_with_probability)``. 2727 2728``__builtin_prefetch`` 2729---------------------- 2730 2731``__builtin_prefetch`` is used to communicate with the cache handler to bring 2732data into the cache before it gets used. 2733 2734**Syntax**: 2735 2736.. code-block:: c++ 2737 2738 void __builtin_prefetch(const void *addr, int rw=0, int locality=3) 2739 2740**Example of use**: 2741 2742.. code-block:: c++ 2743 2744 __builtin_prefetch(a + i); 2745 2746**Description**: 2747 2748The ``__builtin_prefetch(addr, rw, locality)`` builtin is expected to be used to 2749avoid cache misses when the developper has a good understanding of which data 2750are going to be used next. ``addr`` is the address that needs to be brought into 2751the cache. ``rw`` indicates the expected access mode: ``0`` for *read* and ``1`` 2752for *write*. In case of *read write* access, ``1`` is to be used. ``locality`` 2753indicates the expected persistance of data in cache, from ``0`` which means that 2754data can be discarded from cache after its next use to ``3`` which means that 2755data is going to be reused a lot once in cache. ``1`` and ``2`` provide 2756intermediate behavior between these two extremes. 2757 2758Query for this feature with ``__has_builtin(__builtin_prefetch)``. 2759 2760``__sync_swap`` 2761--------------- 2762 2763``__sync_swap`` is used to atomically swap integers or pointers in memory. 2764 2765**Syntax**: 2766 2767.. code-block:: c++ 2768 2769 type __sync_swap(type *ptr, type value, ...) 2770 2771**Example of Use**: 2772 2773.. code-block:: c++ 2774 2775 int old_value = __sync_swap(&value, new_value); 2776 2777**Description**: 2778 2779The ``__sync_swap()`` builtin extends the existing ``__sync_*()`` family of 2780atomic intrinsics to allow code to atomically swap the current value with the 2781new value. More importantly, it helps developers write more efficient and 2782correct code by avoiding expensive loops around 2783``__sync_bool_compare_and_swap()`` or relying on the platform specific 2784implementation details of ``__sync_lock_test_and_set()``. The 2785``__sync_swap()`` builtin is a full barrier. 2786 2787``__builtin_addressof`` 2788----------------------- 2789 2790``__builtin_addressof`` performs the functionality of the built-in ``&`` 2791operator, ignoring any ``operator&`` overload. This is useful in constant 2792expressions in C++11, where there is no other way to take the address of an 2793object that overloads ``operator&``. 2794 2795**Example of use**: 2796 2797.. code-block:: c++ 2798 2799 template<typename T> constexpr T *addressof(T &value) { 2800 return __builtin_addressof(value); 2801 } 2802 2803``__builtin_function_start`` 2804----------------------------- 2805 2806``__builtin_function_start`` returns the address of a function body. 2807 2808**Syntax**: 2809 2810.. code-block:: c++ 2811 2812 void *__builtin_function_start(function) 2813 2814**Example of use**: 2815 2816.. code-block:: c++ 2817 2818 void a() {} 2819 void *p = __builtin_function_start(a); 2820 2821 class A { 2822 public: 2823 void a(int n); 2824 void a(); 2825 }; 2826 2827 void A::a(int n) {} 2828 void A::a() {} 2829 2830 void *pa1 = __builtin_function_start((void(A::*)(int)) &A::a); 2831 void *pa2 = __builtin_function_start((void(A::*)()) &A::a); 2832 2833**Description**: 2834 2835The ``__builtin_function_start`` builtin accepts an argument that can be 2836constant-evaluated to a function, and returns the address of the function 2837body. This builtin is not supported on all targets. 2838 2839The returned pointer may differ from the normally taken function address 2840and is not safe to call. For example, with ``-fsanitize=cfi``, taking a 2841function address produces a callable pointer to a CFI jump table, while 2842``__builtin_function_start`` returns an address that fails 2843:doc:`cfi-icall<ControlFlowIntegrity>` checks. 2844 2845``__builtin_operator_new`` and ``__builtin_operator_delete`` 2846------------------------------------------------------------ 2847 2848A call to ``__builtin_operator_new(args)`` is exactly the same as a call to 2849``::operator new(args)``, except that it allows certain optimizations 2850that the C++ standard does not permit for a direct function call to 2851``::operator new`` (in particular, removing ``new`` / ``delete`` pairs and 2852merging allocations), and that the call is required to resolve to a 2853`replaceable global allocation function 2854<https://en.cppreference.com/w/cpp/memory/new/operator_new>`_. 2855 2856Likewise, ``__builtin_operator_delete`` is exactly the same as a call to 2857``::operator delete(args)``, except that it permits optimizations 2858and that the call is required to resolve to a 2859`replaceable global deallocation function 2860<https://en.cppreference.com/w/cpp/memory/new/operator_delete>`_. 2861 2862These builtins are intended for use in the implementation of ``std::allocator`` 2863and other similar allocation libraries, and are only available in C++. 2864 2865Query for this feature with ``__has_builtin(__builtin_operator_new)`` or 2866``__has_builtin(__builtin_operator_delete)``: 2867 2868 * If the value is at least ``201802L``, the builtins behave as described above. 2869 2870 * If the value is non-zero, the builtins may not support calling arbitrary 2871 replaceable global (de)allocation functions, but do support calling at least 2872 ``::operator new(size_t)`` and ``::operator delete(void*)``. 2873 2874``__builtin_preserve_access_index`` 2875----------------------------------- 2876 2877``__builtin_preserve_access_index`` specifies a code section where 2878array subscript access and structure/union member access are relocatable 2879under bpf compile-once run-everywhere framework. Debuginfo (typically 2880with ``-g``) is needed, otherwise, the compiler will exit with an error. 2881The return type for the intrinsic is the same as the type of the 2882argument. 2883 2884**Syntax**: 2885 2886.. code-block:: c 2887 2888 type __builtin_preserve_access_index(type arg) 2889 2890**Example of Use**: 2891 2892.. code-block:: c 2893 2894 struct t { 2895 int i; 2896 int j; 2897 union { 2898 int a; 2899 int b; 2900 } c[4]; 2901 }; 2902 struct t *v = ...; 2903 int *pb =__builtin_preserve_access_index(&v->c[3].b); 2904 __builtin_preserve_access_index(v->j); 2905 2906``__builtin_debugtrap`` 2907----------------------- 2908 2909``__builtin_debugtrap`` causes the program to stop its execution in such a way that a debugger can catch it. 2910 2911**Syntax**: 2912 2913.. code-block:: c++ 2914 2915 __builtin_debugtrap() 2916 2917**Description** 2918 2919``__builtin_debugtrap`` is lowered to the ` ``llvm.debugtrap`` <https://llvm.org/docs/LangRef.html#llvm-debugtrap-intrinsic>`_ builtin. It should have the same effect as setting a breakpoint on the line where the builtin is called. 2920 2921Query for this feature with ``__has_builtin(__builtin_debugtrap)``. 2922 2923 2924``__builtin_trap`` 2925------------------ 2926 2927``__builtin_trap`` causes the program to stop its execution abnormally. 2928 2929**Syntax**: 2930 2931.. code-block:: c++ 2932 2933 __builtin_trap() 2934 2935**Description** 2936 2937``__builtin_trap`` is lowered to the ` ``llvm.trap`` <https://llvm.org/docs/LangRef.html#llvm-trap-intrinsic>`_ builtin. 2938 2939Query for this feature with ``__has_builtin(__builtin_trap)``. 2940 2941 2942``__builtin_sycl_unique_stable_name`` 2943------------------------------------- 2944 2945``__builtin_sycl_unique_stable_name()`` is a builtin that takes a type and 2946produces a string literal containing a unique name for the type that is stable 2947across split compilations, mainly to support SYCL/Data Parallel C++ language. 2948 2949In cases where the split compilation needs to share a unique token for a type 2950across the boundary (such as in an offloading situation), this name can be used 2951for lookup purposes, such as in the SYCL Integration Header. 2952 2953The value of this builtin is computed entirely at compile time, so it can be 2954used in constant expressions. This value encodes lambda functions based on a 2955stable numbering order in which they appear in their local declaration contexts. 2956Once this builtin is evaluated in a constexpr context, it is erroneous to use 2957it in an instantiation which changes its value. 2958 2959In order to produce the unique name, the current implementation of the bultin 2960uses Itanium mangling even if the host compilation uses a different name 2961mangling scheme at runtime. The mangler marks all the lambdas required to name 2962the SYCL kernel and emits a stable local ordering of the respective lambdas. 2963The resulting pattern is demanglable. When non-lambda types are passed to the 2964builtin, the mangler emits their usual pattern without any special treatment. 2965 2966**Syntax**: 2967 2968.. code-block:: c 2969 2970 // Computes a unique stable name for the given type. 2971 constexpr const char * __builtin_sycl_unique_stable_name( type-id ); 2972 2973Multiprecision Arithmetic Builtins 2974---------------------------------- 2975 2976Clang provides a set of builtins which expose multiprecision arithmetic in a 2977manner amenable to C. They all have the following form: 2978 2979.. code-block:: c 2980 2981 unsigned x = ..., y = ..., carryin = ..., carryout; 2982 unsigned sum = __builtin_addc(x, y, carryin, &carryout); 2983 2984Thus one can form a multiprecision addition chain in the following manner: 2985 2986.. code-block:: c 2987 2988 unsigned *x, *y, *z, carryin=0, carryout; 2989 z[0] = __builtin_addc(x[0], y[0], carryin, &carryout); 2990 carryin = carryout; 2991 z[1] = __builtin_addc(x[1], y[1], carryin, &carryout); 2992 carryin = carryout; 2993 z[2] = __builtin_addc(x[2], y[2], carryin, &carryout); 2994 carryin = carryout; 2995 z[3] = __builtin_addc(x[3], y[3], carryin, &carryout); 2996 2997The complete list of builtins are: 2998 2999.. code-block:: c 3000 3001 unsigned char __builtin_addcb (unsigned char x, unsigned char y, unsigned char carryin, unsigned char *carryout); 3002 unsigned short __builtin_addcs (unsigned short x, unsigned short y, unsigned short carryin, unsigned short *carryout); 3003 unsigned __builtin_addc (unsigned x, unsigned y, unsigned carryin, unsigned *carryout); 3004 unsigned long __builtin_addcl (unsigned long x, unsigned long y, unsigned long carryin, unsigned long *carryout); 3005 unsigned long long __builtin_addcll(unsigned long long x, unsigned long long y, unsigned long long carryin, unsigned long long *carryout); 3006 unsigned char __builtin_subcb (unsigned char x, unsigned char y, unsigned char carryin, unsigned char *carryout); 3007 unsigned short __builtin_subcs (unsigned short x, unsigned short y, unsigned short carryin, unsigned short *carryout); 3008 unsigned __builtin_subc (unsigned x, unsigned y, unsigned carryin, unsigned *carryout); 3009 unsigned long __builtin_subcl (unsigned long x, unsigned long y, unsigned long carryin, unsigned long *carryout); 3010 unsigned long long __builtin_subcll(unsigned long long x, unsigned long long y, unsigned long long carryin, unsigned long long *carryout); 3011 3012Checked Arithmetic Builtins 3013--------------------------- 3014 3015Clang provides a set of builtins that implement checked arithmetic for security 3016critical applications in a manner that is fast and easily expressible in C. As 3017an example of their usage: 3018 3019.. code-block:: c 3020 3021 errorcode_t security_critical_application(...) { 3022 unsigned x, y, result; 3023 ... 3024 if (__builtin_mul_overflow(x, y, &result)) 3025 return kErrorCodeHackers; 3026 ... 3027 use_multiply(result); 3028 ... 3029 } 3030 3031Clang provides the following checked arithmetic builtins: 3032 3033.. code-block:: c 3034 3035 bool __builtin_add_overflow (type1 x, type2 y, type3 *sum); 3036 bool __builtin_sub_overflow (type1 x, type2 y, type3 *diff); 3037 bool __builtin_mul_overflow (type1 x, type2 y, type3 *prod); 3038 bool __builtin_uadd_overflow (unsigned x, unsigned y, unsigned *sum); 3039 bool __builtin_uaddl_overflow (unsigned long x, unsigned long y, unsigned long *sum); 3040 bool __builtin_uaddll_overflow(unsigned long long x, unsigned long long y, unsigned long long *sum); 3041 bool __builtin_usub_overflow (unsigned x, unsigned y, unsigned *diff); 3042 bool __builtin_usubl_overflow (unsigned long x, unsigned long y, unsigned long *diff); 3043 bool __builtin_usubll_overflow(unsigned long long x, unsigned long long y, unsigned long long *diff); 3044 bool __builtin_umul_overflow (unsigned x, unsigned y, unsigned *prod); 3045 bool __builtin_umull_overflow (unsigned long x, unsigned long y, unsigned long *prod); 3046 bool __builtin_umulll_overflow(unsigned long long x, unsigned long long y, unsigned long long *prod); 3047 bool __builtin_sadd_overflow (int x, int y, int *sum); 3048 bool __builtin_saddl_overflow (long x, long y, long *sum); 3049 bool __builtin_saddll_overflow(long long x, long long y, long long *sum); 3050 bool __builtin_ssub_overflow (int x, int y, int *diff); 3051 bool __builtin_ssubl_overflow (long x, long y, long *diff); 3052 bool __builtin_ssubll_overflow(long long x, long long y, long long *diff); 3053 bool __builtin_smul_overflow (int x, int y, int *prod); 3054 bool __builtin_smull_overflow (long x, long y, long *prod); 3055 bool __builtin_smulll_overflow(long long x, long long y, long long *prod); 3056 3057Each builtin performs the specified mathematical operation on the 3058first two arguments and stores the result in the third argument. If 3059possible, the result will be equal to mathematically-correct result 3060and the builtin will return 0. Otherwise, the builtin will return 30611 and the result will be equal to the unique value that is equivalent 3062to the mathematically-correct result modulo two raised to the *k* 3063power, where *k* is the number of bits in the result type. The 3064behavior of these builtins is well-defined for all argument values. 3065 3066The first three builtins work generically for operands of any integer type, 3067including boolean types. The operands need not have the same type as each 3068other, or as the result. The other builtins may implicitly promote or 3069convert their operands before performing the operation. 3070 3071Query for this feature with ``__has_builtin(__builtin_add_overflow)``, etc. 3072 3073Floating point builtins 3074--------------------------------------- 3075 3076``__builtin_canonicalize`` 3077-------------------------- 3078 3079.. code-block:: c 3080 3081 double __builtin_canonicalize(double); 3082 float __builtin_canonicalizef(float); 3083 long double__builtin_canonicalizel(long double); 3084 3085Returns the platform specific canonical encoding of a floating point 3086number. This canonicalization is useful for implementing certain 3087numeric primitives such as frexp. See `LLVM canonicalize intrinsic 3088<https://llvm.org/docs/LangRef.html#llvm-canonicalize-intrinsic>`_ for 3089more information on the semantics. 3090 3091String builtins 3092--------------- 3093 3094Clang provides constant expression evaluation support for builtins forms of 3095the following functions from the C standard library headers 3096``<string.h>`` and ``<wchar.h>``: 3097 3098* ``memchr`` 3099* ``memcmp`` (and its deprecated BSD / POSIX alias ``bcmp``) 3100* ``strchr`` 3101* ``strcmp`` 3102* ``strlen`` 3103* ``strncmp`` 3104* ``wcschr`` 3105* ``wcscmp`` 3106* ``wcslen`` 3107* ``wcsncmp`` 3108* ``wmemchr`` 3109* ``wmemcmp`` 3110 3111In each case, the builtin form has the name of the C library function prefixed 3112by ``__builtin_``. Example: 3113 3114.. code-block:: c 3115 3116 void *p = __builtin_memchr("foobar", 'b', 5); 3117 3118In addition to the above, one further builtin is provided: 3119 3120.. code-block:: c 3121 3122 char *__builtin_char_memchr(const char *haystack, int needle, size_t size); 3123 3124``__builtin_char_memchr(a, b, c)`` is identical to 3125``(char*)__builtin_memchr(a, b, c)`` except that its use is permitted within 3126constant expressions in C++11 onwards (where a cast from ``void*`` to ``char*`` 3127is disallowed in general). 3128 3129Constant evaluation support for the ``__builtin_mem*`` functions is provided 3130only for arrays of ``char``, ``signed char``, ``unsigned char``, or ``char8_t``, 3131despite these functions accepting an argument of type ``const void*``. 3132 3133Support for constant expression evaluation for the above builtins can be detected 3134with ``__has_feature(cxx_constexpr_string_builtins)``. 3135 3136Memory builtins 3137--------------- 3138 3139Clang provides constant expression evaluation support for builtin forms of the 3140following functions from the C standard library headers 3141``<string.h>`` and ``<wchar.h>``: 3142 3143* ``memcpy`` 3144* ``memmove`` 3145* ``wmemcpy`` 3146* ``wmemmove`` 3147 3148In each case, the builtin form has the name of the C library function prefixed 3149by ``__builtin_``. 3150 3151Constant evaluation support is only provided when the source and destination 3152are pointers to arrays with the same trivially copyable element type, and the 3153given size is an exact multiple of the element size that is no greater than 3154the number of elements accessible through the source and destination operands. 3155 3156Guaranteed inlined copy 3157^^^^^^^^^^^^^^^^^^^^^^^ 3158 3159.. code-block:: c 3160 3161 void __builtin_memcpy_inline(void *dst, const void *src, size_t size); 3162 3163 3164``__builtin_memcpy_inline`` has been designed as a building block for efficient 3165``memcpy`` implementations. It is identical to ``__builtin_memcpy`` but also 3166guarantees not to call any external functions. See LLVM IR `llvm.memcpy.inline 3167<https://llvm.org/docs/LangRef.html#llvm-memcpy-inline-intrinsic>`_ intrinsic 3168for more information. 3169 3170This is useful to implement a custom version of ``memcpy``, implement a 3171``libc`` memcpy or work around the absence of a ``libc``. 3172 3173Note that the `size` argument must be a compile time constant. 3174 3175Note that this intrinsic cannot yet be called in a ``constexpr`` context. 3176 3177 3178Atomic Min/Max builtins with memory ordering 3179-------------------------------------------- 3180 3181There are two atomic builtins with min/max in-memory comparison and swap. 3182The syntax and semantics are similar to GCC-compatible __atomic_* builtins. 3183 3184* ``__atomic_fetch_min`` 3185* ``__atomic_fetch_max`` 3186 3187The builtins work with signed and unsigned integers and require to specify memory ordering. 3188The return value is the original value that was stored in memory before comparison. 3189 3190Example: 3191 3192.. code-block:: c 3193 3194 unsigned int val = __atomic_fetch_min(unsigned int *pi, unsigned int ui, __ATOMIC_RELAXED); 3195 3196The third argument is one of the memory ordering specifiers ``__ATOMIC_RELAXED``, 3197``__ATOMIC_CONSUME``, ``__ATOMIC_ACQUIRE``, ``__ATOMIC_RELEASE``, 3198``__ATOMIC_ACQ_REL``, or ``__ATOMIC_SEQ_CST`` following C++11 memory model semantics. 3199 3200In terms or aquire-release ordering barriers these two operations are always 3201considered as operations with *load-store* semantics, even when the original value 3202is not actually modified after comparison. 3203 3204.. _langext-__c11_atomic: 3205 3206__c11_atomic builtins 3207--------------------- 3208 3209Clang provides a set of builtins which are intended to be used to implement 3210C11's ``<stdatomic.h>`` header. These builtins provide the semantics of the 3211``_explicit`` form of the corresponding C11 operation, and are named with a 3212``__c11_`` prefix. The supported operations, and the differences from 3213the corresponding C11 operations, are: 3214 3215* ``__c11_atomic_init`` 3216* ``__c11_atomic_thread_fence`` 3217* ``__c11_atomic_signal_fence`` 3218* ``__c11_atomic_is_lock_free`` (The argument is the size of the 3219 ``_Atomic(...)`` object, instead of its address) 3220* ``__c11_atomic_store`` 3221* ``__c11_atomic_load`` 3222* ``__c11_atomic_exchange`` 3223* ``__c11_atomic_compare_exchange_strong`` 3224* ``__c11_atomic_compare_exchange_weak`` 3225* ``__c11_atomic_fetch_add`` 3226* ``__c11_atomic_fetch_sub`` 3227* ``__c11_atomic_fetch_and`` 3228* ``__c11_atomic_fetch_or`` 3229* ``__c11_atomic_fetch_xor`` 3230* ``__c11_atomic_fetch_nand`` (Nand is not presented in ``<stdatomic.h>``) 3231* ``__c11_atomic_fetch_max`` 3232* ``__c11_atomic_fetch_min`` 3233 3234The macros ``__ATOMIC_RELAXED``, ``__ATOMIC_CONSUME``, ``__ATOMIC_ACQUIRE``, 3235``__ATOMIC_RELEASE``, ``__ATOMIC_ACQ_REL``, and ``__ATOMIC_SEQ_CST`` are 3236provided, with values corresponding to the enumerators of C11's 3237``memory_order`` enumeration. 3238 3239(Note that Clang additionally provides GCC-compatible ``__atomic_*`` 3240builtins and OpenCL 2.0 ``__opencl_atomic_*`` builtins. The OpenCL 2.0 3241atomic builtins are an explicit form of the corresponding OpenCL 2.0 3242builtin function, and are named with a ``__opencl_`` prefix. The macros 3243``__OPENCL_MEMORY_SCOPE_WORK_ITEM``, ``__OPENCL_MEMORY_SCOPE_WORK_GROUP``, 3244``__OPENCL_MEMORY_SCOPE_DEVICE``, ``__OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES``, 3245and ``__OPENCL_MEMORY_SCOPE_SUB_GROUP`` are provided, with values 3246corresponding to the enumerators of OpenCL's ``memory_scope`` enumeration.) 3247 3248Low-level ARM exclusive memory builtins 3249--------------------------------------- 3250 3251Clang provides overloaded builtins giving direct access to the three key ARM 3252instructions for implementing atomic operations. 3253 3254.. code-block:: c 3255 3256 T __builtin_arm_ldrex(const volatile T *addr); 3257 T __builtin_arm_ldaex(const volatile T *addr); 3258 int __builtin_arm_strex(T val, volatile T *addr); 3259 int __builtin_arm_stlex(T val, volatile T *addr); 3260 void __builtin_arm_clrex(void); 3261 3262The types ``T`` currently supported are: 3263 3264* Integer types with width at most 64 bits (or 128 bits on AArch64). 3265* Floating-point types 3266* Pointer types. 3267 3268Note that the compiler does not guarantee it will not insert stores which clear 3269the exclusive monitor in between an ``ldrex`` type operation and its paired 3270``strex``. In practice this is only usually a risk when the extra store is on 3271the same cache line as the variable being modified and Clang will only insert 3272stack stores on its own, so it is best not to use these operations on variables 3273with automatic storage duration. 3274 3275Also, loads and stores may be implicit in code written between the ``ldrex`` and 3276``strex``. Clang will not necessarily mitigate the effects of these either, so 3277care should be exercised. 3278 3279For these reasons the higher level atomic primitives should be preferred where 3280possible. 3281 3282Non-temporal load/store builtins 3283-------------------------------- 3284 3285Clang provides overloaded builtins allowing generation of non-temporal memory 3286accesses. 3287 3288.. code-block:: c 3289 3290 T __builtin_nontemporal_load(T *addr); 3291 void __builtin_nontemporal_store(T value, T *addr); 3292 3293The types ``T`` currently supported are: 3294 3295* Integer types. 3296* Floating-point types. 3297* Vector types. 3298 3299Note that the compiler does not guarantee that non-temporal loads or stores 3300will be used. 3301 3302C++ Coroutines support builtins 3303-------------------------------- 3304 3305.. warning:: 3306 This is a work in progress. Compatibility across Clang/LLVM releases is not 3307 guaranteed. 3308 3309Clang provides experimental builtins to support C++ Coroutines as defined by 3310https://wg21.link/P0057. The following four are intended to be used by the 3311standard library to implement the ``std::coroutine_handle`` type. 3312 3313**Syntax**: 3314 3315.. code-block:: c 3316 3317 void __builtin_coro_resume(void *addr); 3318 void __builtin_coro_destroy(void *addr); 3319 bool __builtin_coro_done(void *addr); 3320 void *__builtin_coro_promise(void *addr, int alignment, bool from_promise) 3321 3322**Example of use**: 3323 3324.. code-block:: c++ 3325 3326 template <> struct coroutine_handle<void> { 3327 void resume() const { __builtin_coro_resume(ptr); } 3328 void destroy() const { __builtin_coro_destroy(ptr); } 3329 bool done() const { return __builtin_coro_done(ptr); } 3330 // ... 3331 protected: 3332 void *ptr; 3333 }; 3334 3335 template <typename Promise> struct coroutine_handle : coroutine_handle<> { 3336 // ... 3337 Promise &promise() const { 3338 return *reinterpret_cast<Promise *>( 3339 __builtin_coro_promise(ptr, alignof(Promise), /*from-promise=*/false)); 3340 } 3341 static coroutine_handle from_promise(Promise &promise) { 3342 coroutine_handle p; 3343 p.ptr = __builtin_coro_promise(&promise, alignof(Promise), 3344 /*from-promise=*/true); 3345 return p; 3346 } 3347 }; 3348 3349 3350Other coroutine builtins are either for internal clang use or for use during 3351development of the coroutine feature. See `Coroutines in LLVM 3352<https://llvm.org/docs/Coroutines.html#intrinsics>`_ for 3353more information on their semantics. Note that builtins matching the intrinsics 3354that take token as the first parameter (llvm.coro.begin, llvm.coro.alloc, 3355llvm.coro.free and llvm.coro.suspend) omit the token parameter and fill it to 3356an appropriate value during the emission. 3357 3358**Syntax**: 3359 3360.. code-block:: c 3361 3362 size_t __builtin_coro_size() 3363 void *__builtin_coro_frame() 3364 void *__builtin_coro_free(void *coro_frame) 3365 3366 void *__builtin_coro_id(int align, void *promise, void *fnaddr, void *parts) 3367 bool __builtin_coro_alloc() 3368 void *__builtin_coro_begin(void *memory) 3369 void __builtin_coro_end(void *coro_frame, bool unwind) 3370 char __builtin_coro_suspend(bool final) 3371 3372Note that there is no builtin matching the `llvm.coro.save` intrinsic. LLVM 3373automatically will insert one if the first argument to `llvm.coro.suspend` is 3374token `none`. If a user calls `__builin_suspend`, clang will insert `token none` 3375as the first argument to the intrinsic. 3376 3377Source location builtins 3378------------------------ 3379 3380Clang provides builtins to support C++ standard library implementation 3381of ``std::source_location`` as specified in C++20. With the exception 3382of ``__builtin_COLUMN``, these builtins are also implemented by GCC. 3383 3384**Syntax**: 3385 3386.. code-block:: c 3387 3388 const char *__builtin_FILE(); 3389 const char *__builtin_FUNCTION(); 3390 unsigned __builtin_LINE(); 3391 unsigned __builtin_COLUMN(); // Clang only 3392 const std::source_location::__impl *__builtin_source_location(); 3393 3394**Example of use**: 3395 3396.. code-block:: c++ 3397 3398 void my_assert(bool pred, int line = __builtin_LINE(), // Captures line of caller 3399 const char* file = __builtin_FILE(), 3400 const char* function = __builtin_FUNCTION()) { 3401 if (pred) return; 3402 printf("%s:%d assertion failed in function %s\n", file, line, function); 3403 std::abort(); 3404 } 3405 3406 struct MyAggregateType { 3407 int x; 3408 int line = __builtin_LINE(); // captures line where aggregate initialization occurs 3409 }; 3410 static_assert(MyAggregateType{42}.line == __LINE__); 3411 3412 struct MyClassType { 3413 int line = __builtin_LINE(); // captures line of the constructor used during initialization 3414 constexpr MyClassType(int) { assert(line == __LINE__); } 3415 }; 3416 3417**Description**: 3418 3419The builtins ``__builtin_LINE``, ``__builtin_FUNCTION``, and ``__builtin_FILE`` 3420return the values, at the "invocation point", for ``__LINE__``, 3421``__FUNCTION__``, and ``__FILE__`` respectively. ``__builtin_COLUMN`` similarly 3422returns the column, though there is no corresponding macro. These builtins are 3423constant expressions. 3424 3425When the builtins appear as part of a default function argument the invocation 3426point is the location of the caller. When the builtins appear as part of a 3427default member initializer, the invocation point is the location of the 3428constructor or aggregate initialization used to create the object. Otherwise 3429the invocation point is the same as the location of the builtin. 3430 3431When the invocation point of ``__builtin_FUNCTION`` is not a function scope the 3432empty string is returned. 3433 3434The builtin ``__builtin_source_location`` returns a pointer to constant static 3435data of type ``std::source_location::__impl``. This type must have already been 3436defined, and must contain exactly four fields: ``const char *_M_file_name``, 3437``const char *_M_function_name``, ``<any-integral-type> _M_line``, and 3438``<any-integral-type> _M_column``. The fields will be populated in the same 3439manner as the above four builtins, except that ``_M_function_name`` is populated 3440with ``__PRETTY_FUNCTION__`` rather than ``__FUNCTION__``. 3441 3442 3443Alignment builtins 3444------------------ 3445Clang provides builtins to support checking and adjusting alignment of 3446pointers and integers. 3447These builtins can be used to avoid relying on implementation-defined behavior 3448of arithmetic on integers derived from pointers. 3449Additionally, these builtins retain type information and, unlike bitwise 3450arithmetic, they can perform semantic checking on the alignment value. 3451 3452**Syntax**: 3453 3454.. code-block:: c 3455 3456 Type __builtin_align_up(Type value, size_t alignment); 3457 Type __builtin_align_down(Type value, size_t alignment); 3458 bool __builtin_is_aligned(Type value, size_t alignment); 3459 3460 3461**Example of use**: 3462 3463.. code-block:: c++ 3464 3465 char* global_alloc_buffer; 3466 void* my_aligned_allocator(size_t alloc_size, size_t alignment) { 3467 char* result = __builtin_align_up(global_alloc_buffer, alignment); 3468 // result now contains the value of global_alloc_buffer rounded up to the 3469 // next multiple of alignment. 3470 global_alloc_buffer = result + alloc_size; 3471 return result; 3472 } 3473 3474 void* get_start_of_page(void* ptr) { 3475 return __builtin_align_down(ptr, PAGE_SIZE); 3476 } 3477 3478 void example(char* buffer) { 3479 if (__builtin_is_aligned(buffer, 64)) { 3480 do_fast_aligned_copy(buffer); 3481 } else { 3482 do_unaligned_copy(buffer); 3483 } 3484 } 3485 3486 // In addition to pointers, the builtins can also be used on integer types 3487 // and are evaluatable inside constant expressions. 3488 static_assert(__builtin_align_up(123, 64) == 128, ""); 3489 static_assert(__builtin_align_down(123u, 64) == 64u, ""); 3490 static_assert(!__builtin_is_aligned(123, 64), ""); 3491 3492 3493**Description**: 3494 3495The builtins ``__builtin_align_up``, ``__builtin_align_down``, return their 3496first argument aligned up/down to the next multiple of the second argument. 3497If the value is already sufficiently aligned, it is returned unchanged. 3498The builtin ``__builtin_is_aligned`` returns whether the first argument is 3499aligned to a multiple of the second argument. 3500All of these builtins expect the alignment to be expressed as a number of bytes. 3501 3502These builtins can be used for all integer types as well as (non-function) 3503pointer types. For pointer types, these builtins operate in terms of the integer 3504address of the pointer and return a new pointer of the same type (including 3505qualifiers such as ``const``) with an adjusted address. 3506When aligning pointers up or down, the resulting value must be within the same 3507underlying allocation or one past the end (see C17 6.5.6p8, C++ [expr.add]). 3508This means that arbitrary integer values stored in pointer-type variables must 3509not be passed to these builtins. For those use cases, the builtins can still be 3510used, but the operation must be performed on the pointer cast to ``uintptr_t``. 3511 3512If Clang can determine that the alignment is not a power of two at compile time, 3513it will result in a compilation failure. If the alignment argument is not a 3514power of two at run time, the behavior of these builtins is undefined. 3515 3516Non-standard C++11 Attributes 3517============================= 3518 3519Clang's non-standard C++11 attributes live in the ``clang`` attribute 3520namespace. 3521 3522Clang supports GCC's ``gnu`` attribute namespace. All GCC attributes which 3523are accepted with the ``__attribute__((foo))`` syntax are also accepted as 3524``[[gnu::foo]]``. This only extends to attributes which are specified by GCC 3525(see the list of `GCC function attributes 3526<https://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html>`_, `GCC variable 3527attributes <https://gcc.gnu.org/onlinedocs/gcc/Variable-Attributes.html>`_, and 3528`GCC type attributes 3529<https://gcc.gnu.org/onlinedocs/gcc/Type-Attributes.html>`_). As with the GCC 3530implementation, these attributes must appertain to the *declarator-id* in a 3531declaration, which means they must go either at the start of the declaration or 3532immediately after the name being declared. 3533 3534For example, this applies the GNU ``unused`` attribute to ``a`` and ``f``, and 3535also applies the GNU ``noreturn`` attribute to ``f``. 3536 3537.. code-block:: c++ 3538 3539 [[gnu::unused]] int a, f [[gnu::noreturn]] (); 3540 3541Target-Specific Extensions 3542========================== 3543 3544Clang supports some language features conditionally on some targets. 3545 3546ARM/AArch64 Language Extensions 3547------------------------------- 3548 3549Memory Barrier Intrinsics 3550^^^^^^^^^^^^^^^^^^^^^^^^^ 3551Clang implements the ``__dmb``, ``__dsb`` and ``__isb`` intrinsics as defined 3552in the `ARM C Language Extensions Release 2.0 3553<http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053c/IHI0053C_acle_2_0.pdf>`_. 3554Note that these intrinsics are implemented as motion barriers that block 3555reordering of memory accesses and side effect instructions. Other instructions 3556like simple arithmetic may be reordered around the intrinsic. If you expect to 3557have no reordering at all, use inline assembly instead. 3558 3559X86/X86-64 Language Extensions 3560------------------------------ 3561 3562The X86 backend has these language extensions: 3563 3564Memory references to specified segments 3565^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 3566 3567Annotating a pointer with address space #256 causes it to be code generated 3568relative to the X86 GS segment register, address space #257 causes it to be 3569relative to the X86 FS segment, and address space #258 causes it to be 3570relative to the X86 SS segment. Note that this is a very very low-level 3571feature that should only be used if you know what you're doing (for example in 3572an OS kernel). 3573 3574Here is an example: 3575 3576.. code-block:: c++ 3577 3578 #define GS_RELATIVE __attribute__((address_space(256))) 3579 int foo(int GS_RELATIVE *P) { 3580 return *P; 3581 } 3582 3583Which compiles to (on X86-32): 3584 3585.. code-block:: gas 3586 3587 _foo: 3588 movl 4(%esp), %eax 3589 movl %gs:(%eax), %eax 3590 ret 3591 3592You can also use the GCC compatibility macros ``__seg_fs`` and ``__seg_gs`` for 3593the same purpose. The preprocessor symbols ``__SEG_FS`` and ``__SEG_GS`` 3594indicate their support. 3595 3596PowerPC Language Extensions 3597--------------------------- 3598 3599Set the Floating Point Rounding Mode 3600^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 3601PowerPC64/PowerPC64le supports the builtin function ``__builtin_setrnd`` to set 3602the floating point rounding mode. This function will use the least significant 3603two bits of integer argument to set the floating point rounding mode. 3604 3605.. code-block:: c++ 3606 3607 double __builtin_setrnd(int mode); 3608 3609The effective values for mode are: 3610 3611 - 0 - round to nearest 3612 - 1 - round to zero 3613 - 2 - round to +infinity 3614 - 3 - round to -infinity 3615 3616Note that the mode argument will modulo 4, so if the integer argument is greater 3617than 3, it will only use the least significant two bits of the mode. 3618Namely, ``__builtin_setrnd(102))`` is equal to ``__builtin_setrnd(2)``. 3619 3620PowerPC cache builtins 3621^^^^^^^^^^^^^^^^^^^^^^ 3622 3623The PowerPC architecture specifies instructions implementing cache operations. 3624Clang provides builtins that give direct programmer access to these cache 3625instructions. 3626 3627Currently the following builtins are implemented in clang: 3628 3629``__builtin_dcbf`` copies the contents of a modified block from the data cache 3630to main memory and flushes the copy from the data cache. 3631 3632**Syntax**: 3633 3634.. code-block:: c 3635 3636 void __dcbf(const void* addr); /* Data Cache Block Flush */ 3637 3638**Example of Use**: 3639 3640.. code-block:: c 3641 3642 int a = 1; 3643 __builtin_dcbf (&a); 3644 3645Extensions for Static Analysis 3646============================== 3647 3648Clang supports additional attributes that are useful for documenting program 3649invariants and rules for static analysis tools, such as the `Clang Static 3650Analyzer <https://clang-analyzer.llvm.org/>`_. These attributes are documented 3651in the analyzer's `list of source-level annotations 3652<https://clang-analyzer.llvm.org/annotations.html>`_. 3653 3654 3655Extensions for Dynamic Analysis 3656=============================== 3657 3658Use ``__has_feature(address_sanitizer)`` to check if the code is being built 3659with :doc:`AddressSanitizer`. 3660 3661Use ``__has_feature(thread_sanitizer)`` to check if the code is being built 3662with :doc:`ThreadSanitizer`. 3663 3664Use ``__has_feature(memory_sanitizer)`` to check if the code is being built 3665with :doc:`MemorySanitizer`. 3666 3667Use ``__has_feature(dataflow_sanitizer)`` to check if the code is being built 3668with :doc:`DataFlowSanitizer`. 3669 3670Use ``__has_feature(safe_stack)`` to check if the code is being built 3671with :doc:`SafeStack`. 3672 3673 3674Extensions for selectively disabling optimization 3675================================================= 3676 3677Clang provides a mechanism for selectively disabling optimizations in functions 3678and methods. 3679 3680To disable optimizations in a single function definition, the GNU-style or C++11 3681non-standard attribute ``optnone`` can be used. 3682 3683.. code-block:: c++ 3684 3685 // The following functions will not be optimized. 3686 // GNU-style attribute 3687 __attribute__((optnone)) int foo() { 3688 // ... code 3689 } 3690 // C++11 attribute 3691 [[clang::optnone]] int bar() { 3692 // ... code 3693 } 3694 3695To facilitate disabling optimization for a range of function definitions, a 3696range-based pragma is provided. Its syntax is ``#pragma clang optimize`` 3697followed by ``off`` or ``on``. 3698 3699All function definitions in the region between an ``off`` and the following 3700``on`` will be decorated with the ``optnone`` attribute unless doing so would 3701conflict with explicit attributes already present on the function (e.g. the 3702ones that control inlining). 3703 3704.. code-block:: c++ 3705 3706 #pragma clang optimize off 3707 // This function will be decorated with optnone. 3708 int foo() { 3709 // ... code 3710 } 3711 3712 // optnone conflicts with always_inline, so bar() will not be decorated. 3713 __attribute__((always_inline)) int bar() { 3714 // ... code 3715 } 3716 #pragma clang optimize on 3717 3718If no ``on`` is found to close an ``off`` region, the end of the region is the 3719end of the compilation unit. 3720 3721Note that a stray ``#pragma clang optimize on`` does not selectively enable 3722additional optimizations when compiling at low optimization levels. This feature 3723can only be used to selectively disable optimizations. 3724 3725The pragma has an effect on functions only at the point of their definition; for 3726function templates, this means that the state of the pragma at the point of an 3727instantiation is not necessarily relevant. Consider the following example: 3728 3729.. code-block:: c++ 3730 3731 template<typename T> T twice(T t) { 3732 return 2 * t; 3733 } 3734 3735 #pragma clang optimize off 3736 template<typename T> T thrice(T t) { 3737 return 3 * t; 3738 } 3739 3740 int container(int a, int b) { 3741 return twice(a) + thrice(b); 3742 } 3743 #pragma clang optimize on 3744 3745In this example, the definition of the template function ``twice`` is outside 3746the pragma region, whereas the definition of ``thrice`` is inside the region. 3747The ``container`` function is also in the region and will not be optimized, but 3748it causes the instantiation of ``twice`` and ``thrice`` with an ``int`` type; of 3749these two instantiations, ``twice`` will be optimized (because its definition 3750was outside the region) and ``thrice`` will not be optimized. 3751 3752Extensions for loop hint optimizations 3753====================================== 3754 3755The ``#pragma clang loop`` directive is used to specify hints for optimizing the 3756subsequent for, while, do-while, or c++11 range-based for loop. The directive 3757provides options for vectorization, interleaving, predication, unrolling and 3758distribution. Loop hints can be specified before any loop and will be ignored if 3759the optimization is not safe to apply. 3760 3761There are loop hints that control transformations (e.g. vectorization, loop 3762unrolling) and there are loop hints that set transformation options (e.g. 3763``vectorize_width``, ``unroll_count``). Pragmas setting transformation options 3764imply the transformation is enabled, as if it was enabled via the corresponding 3765transformation pragma (e.g. ``vectorize(enable)``). If the transformation is 3766disabled (e.g. ``vectorize(disable)``), that takes precedence over 3767transformations option pragmas implying that transformation. 3768 3769Vectorization, Interleaving, and Predication 3770-------------------------------------------- 3771 3772A vectorized loop performs multiple iterations of the original loop 3773in parallel using vector instructions. The instruction set of the target 3774processor determines which vector instructions are available and their vector 3775widths. This restricts the types of loops that can be vectorized. The vectorizer 3776automatically determines if the loop is safe and profitable to vectorize. A 3777vector instruction cost model is used to select the vector width. 3778 3779Interleaving multiple loop iterations allows modern processors to further 3780improve instruction-level parallelism (ILP) using advanced hardware features, 3781such as multiple execution units and out-of-order execution. The vectorizer uses 3782a cost model that depends on the register pressure and generated code size to 3783select the interleaving count. 3784 3785Vectorization is enabled by ``vectorize(enable)`` and interleaving is enabled 3786by ``interleave(enable)``. This is useful when compiling with ``-Os`` to 3787manually enable vectorization or interleaving. 3788 3789.. code-block:: c++ 3790 3791 #pragma clang loop vectorize(enable) 3792 #pragma clang loop interleave(enable) 3793 for(...) { 3794 ... 3795 } 3796 3797The vector width is specified by 3798``vectorize_width(_value_[, fixed|scalable])``, where _value_ is a positive 3799integer and the type of vectorization can be specified with an optional 3800second parameter. The default for the second parameter is 'fixed' and 3801refers to fixed width vectorization, whereas 'scalable' indicates the 3802compiler should use scalable vectors instead. Another use of vectorize_width 3803is ``vectorize_width(fixed|scalable)`` where the user can hint at the type 3804of vectorization to use without specifying the exact width. In both variants 3805of the pragma the vectorizer may decide to fall back on fixed width 3806vectorization if the target does not support scalable vectors. 3807 3808The interleave count is specified by ``interleave_count(_value_)``, where 3809_value_ is a positive integer. This is useful for specifying the optimal 3810width/count of the set of target architectures supported by your application. 3811 3812.. code-block:: c++ 3813 3814 #pragma clang loop vectorize_width(2) 3815 #pragma clang loop interleave_count(2) 3816 for(...) { 3817 ... 3818 } 3819 3820Specifying a width/count of 1 disables the optimization, and is equivalent to 3821``vectorize(disable)`` or ``interleave(disable)``. 3822 3823Vector predication is enabled by ``vectorize_predicate(enable)``, for example: 3824 3825.. code-block:: c++ 3826 3827 #pragma clang loop vectorize(enable) 3828 #pragma clang loop vectorize_predicate(enable) 3829 for(...) { 3830 ... 3831 } 3832 3833This predicates (masks) all instructions in the loop, which allows the scalar 3834remainder loop (the tail) to be folded into the main vectorized loop. This 3835might be more efficient when vector predication is efficiently supported by the 3836target platform. 3837 3838Loop Unrolling 3839-------------- 3840 3841Unrolling a loop reduces the loop control overhead and exposes more 3842opportunities for ILP. Loops can be fully or partially unrolled. Full unrolling 3843eliminates the loop and replaces it with an enumerated sequence of loop 3844iterations. Full unrolling is only possible if the loop trip count is known at 3845compile time. Partial unrolling replicates the loop body within the loop and 3846reduces the trip count. 3847 3848If ``unroll(enable)`` is specified the unroller will attempt to fully unroll the 3849loop if the trip count is known at compile time. If the fully unrolled code size 3850is greater than an internal limit the loop will be partially unrolled up to this 3851limit. If the trip count is not known at compile time the loop will be partially 3852unrolled with a heuristically chosen unroll factor. 3853 3854.. code-block:: c++ 3855 3856 #pragma clang loop unroll(enable) 3857 for(...) { 3858 ... 3859 } 3860 3861If ``unroll(full)`` is specified the unroller will attempt to fully unroll the 3862loop if the trip count is known at compile time identically to 3863``unroll(enable)``. However, with ``unroll(full)`` the loop will not be unrolled 3864if the loop count is not known at compile time. 3865 3866.. code-block:: c++ 3867 3868 #pragma clang loop unroll(full) 3869 for(...) { 3870 ... 3871 } 3872 3873The unroll count can be specified explicitly with ``unroll_count(_value_)`` where 3874_value_ is a positive integer. If this value is greater than the trip count the 3875loop will be fully unrolled. Otherwise the loop is partially unrolled subject 3876to the same code size limit as with ``unroll(enable)``. 3877 3878.. code-block:: c++ 3879 3880 #pragma clang loop unroll_count(8) 3881 for(...) { 3882 ... 3883 } 3884 3885Unrolling of a loop can be prevented by specifying ``unroll(disable)``. 3886 3887Loop unroll parameters can be controlled by options 3888`-mllvm -unroll-count=n` and `-mllvm -pragma-unroll-threshold=n`. 3889 3890Loop Distribution 3891----------------- 3892 3893Loop Distribution allows splitting a loop into multiple loops. This is 3894beneficial for example when the entire loop cannot be vectorized but some of the 3895resulting loops can. 3896 3897If ``distribute(enable))`` is specified and the loop has memory dependencies 3898that inhibit vectorization, the compiler will attempt to isolate the offending 3899operations into a new loop. This optimization is not enabled by default, only 3900loops marked with the pragma are considered. 3901 3902.. code-block:: c++ 3903 3904 #pragma clang loop distribute(enable) 3905 for (i = 0; i < N; ++i) { 3906 S1: A[i + 1] = A[i] + B[i]; 3907 S2: C[i] = D[i] * E[i]; 3908 } 3909 3910This loop will be split into two loops between statements S1 and S2. The 3911second loop containing S2 will be vectorized. 3912 3913Loop Distribution is currently not enabled by default in the optimizer because 3914it can hurt performance in some cases. For example, instruction-level 3915parallelism could be reduced by sequentializing the execution of the 3916statements S1 and S2 above. 3917 3918If Loop Distribution is turned on globally with 3919``-mllvm -enable-loop-distribution``, specifying ``distribute(disable)`` can 3920be used the disable it on a per-loop basis. 3921 3922Additional Information 3923---------------------- 3924 3925For convenience multiple loop hints can be specified on a single line. 3926 3927.. code-block:: c++ 3928 3929 #pragma clang loop vectorize_width(4) interleave_count(8) 3930 for(...) { 3931 ... 3932 } 3933 3934If an optimization cannot be applied any hints that apply to it will be ignored. 3935For example, the hint ``vectorize_width(4)`` is ignored if the loop is not 3936proven safe to vectorize. To identify and diagnose optimization issues use 3937`-Rpass`, `-Rpass-missed`, and `-Rpass-analysis` command line options. See the 3938user guide for details. 3939 3940Extensions to specify floating-point flags 3941==================================================== 3942 3943The ``#pragma clang fp`` pragma allows floating-point options to be specified 3944for a section of the source code. This pragma can only appear at file scope or 3945at the start of a compound statement (excluding comments). When using within a 3946compound statement, the pragma is active within the scope of the compound 3947statement. 3948 3949Currently, the following settings can be controlled with this pragma: 3950 3951``#pragma clang fp reassociate`` allows control over the reassociation 3952of floating point expressions. When enabled, this pragma allows the expression 3953``x + (y + z)`` to be reassociated as ``(x + y) + z``. 3954Reassociation can also occur across multiple statements. 3955This pragma can be used to disable reassociation when it is otherwise 3956enabled for the translation unit with the ``-fassociative-math`` flag. 3957The pragma can take two values: ``on`` and ``off``. 3958 3959.. code-block:: c++ 3960 3961 float f(float x, float y, float z) 3962 { 3963 // Enable floating point reassociation across statements 3964 #pragma clang fp reassociate(on) 3965 float t = x + y; 3966 float v = t + z; 3967 } 3968 3969 3970``#pragma clang fp contract`` specifies whether the compiler should 3971contract a multiply and an addition (or subtraction) into a fused FMA 3972operation when supported by the target. 3973 3974The pragma can take three values: ``on``, ``fast`` and ``off``. The ``on`` 3975option is identical to using ``#pragma STDC FP_CONTRACT(ON)`` and it allows 3976fusion as specified the language standard. The ``fast`` option allows fusion 3977in cases when the language standard does not make this possible (e.g. across 3978statements in C). 3979 3980.. code-block:: c++ 3981 3982 for(...) { 3983 #pragma clang fp contract(fast) 3984 a = b[i] * c[i]; 3985 d[i] += a; 3986 } 3987 3988 3989The pragma can also be used with ``off`` which turns FP contraction off for a 3990section of the code. This can be useful when fast contraction is otherwise 3991enabled for the translation unit with the ``-ffp-contract=fast-honor-pragmas`` flag. 3992Note that ``-ffp-contract=fast`` will override pragmas to fuse multiply and 3993addition across statements regardless of any controlling pragmas. 3994 3995``#pragma clang fp exceptions`` specifies floating point exception behavior. It 3996may take one the the values: ``ignore``, ``maytrap`` or ``strict``. Meaning of 3997these values is same as for `constrained floating point intrinsics <http://llvm.org/docs/LangRef.html#constrained-floating-point-intrinsics>`_. 3998 3999.. code-block:: c++ 4000 4001 { 4002 // Preserve floating point exceptions 4003 #pragma clang fp exceptions(strict) 4004 z = x + y; 4005 if (fetestexcept(FE_OVERFLOW)) 4006 ... 4007 } 4008 4009A ``#pragma clang fp`` pragma may contain any number of options: 4010 4011.. code-block:: c++ 4012 4013 void func(float *dest, float a, float b) { 4014 #pragma clang fp exceptions(maytrap) contract(fast) reassociate(on) 4015 ... 4016 } 4017 4018``#pragma clang fp eval_method`` allows floating-point behavior to be specified 4019for a section of the source code. This pragma can appear at file or namespace 4020scope, or at the start of a compound statement (excluding comments). 4021The pragma is active within the scope of the compound statement. 4022 4023When ``pragma clang fp eval_method(source)`` is enabled, the section of code 4024governed by the pragma behaves as though the command-line option 4025``-ffp-eval-method=source`` is enabled. Rounds intermediate results to 4026source-defined precision. 4027 4028When ``pragma clang fp eval_method(double)`` is enabled, the section of code 4029governed by the pragma behaves as though the command-line option 4030``-ffp-eval-method=double`` is enabled. Rounds intermediate results to 4031``double`` precision. 4032 4033When ``pragma clang fp eval_method(extended)`` is enabled, the section of code 4034governed by the pragma behaves as though the command-line option 4035``-ffp-eval-method=extended`` is enabled. Rounds intermediate results to 4036target-dependent ``long double`` precision. In Win32 programming, for instance, 4037the long double data type maps to the double, 64-bit precision data type. 4038 4039The full syntax this pragma supports is 4040``#pragma clang fp eval_method(source|double|extended)``. 4041 4042.. code-block:: c++ 4043 4044 for(...) { 4045 // The compiler will use long double as the floating-point evaluation 4046 // method. 4047 #pragma clang fp eval_method(extended) 4048 a = b[i] * c[i] + e; 4049 } 4050 4051The ``#pragma float_control`` pragma allows precise floating-point 4052semantics and floating-point exception behavior to be specified 4053for a section of the source code. This pragma can only appear at file or 4054namespace scope, within a language linkage specification or at the start of a 4055compound statement (excluding comments). When used within a compound statement, 4056the pragma is active within the scope of the compound statement. This pragma 4057is modeled after a Microsoft pragma with the same spelling and syntax. For 4058pragmas specified at file or namespace scope, or within a language linkage 4059specification, a stack is supported so that the ``pragma float_control`` 4060settings can be pushed or popped. 4061 4062When ``pragma float_control(precise, on)`` is enabled, the section of code 4063governed by the pragma uses precise floating point semantics, effectively 4064``-ffast-math`` is disabled and ``-ffp-contract=on`` 4065(fused multiply add) is enabled. 4066 4067When ``pragma float_control(except, on)`` is enabled, the section of code 4068governed by the pragma behaves as though the command-line option 4069``-ffp-exception-behavior=strict`` is enabled, 4070when ``pragma float_control(except, off)`` is enabled, the section of code 4071governed by the pragma behaves as though the command-line option 4072``-ffp-exception-behavior=ignore`` is enabled. 4073 4074The full syntax this pragma supports is 4075``float_control(except|precise, on|off [, push])`` and 4076``float_control(push|pop)``. 4077The ``push`` and ``pop`` forms, including using ``push`` as the optional 4078third argument, can only occur at file scope. 4079 4080.. code-block:: c++ 4081 4082 for(...) { 4083 // This block will be compiled with -fno-fast-math and -ffp-contract=on 4084 #pragma float_control(precise, on) 4085 a = b[i] * c[i] + e; 4086 } 4087 4088Specifying an attribute for multiple declarations (#pragma clang attribute) 4089=========================================================================== 4090 4091The ``#pragma clang attribute`` directive can be used to apply an attribute to 4092multiple declarations. The ``#pragma clang attribute push`` variation of the 4093directive pushes a new "scope" of ``#pragma clang attribute`` that attributes 4094can be added to. The ``#pragma clang attribute (...)`` variation adds an 4095attribute to that scope, and the ``#pragma clang attribute pop`` variation pops 4096the scope. You can also use ``#pragma clang attribute push (...)``, which is a 4097shorthand for when you want to add one attribute to a new scope. Multiple push 4098directives can be nested inside each other. 4099 4100The attributes that are used in the ``#pragma clang attribute`` directives 4101can be written using the GNU-style syntax: 4102 4103.. code-block:: c++ 4104 4105 #pragma clang attribute push (__attribute__((annotate("custom"))), apply_to = function) 4106 4107 void function(); // The function now has the annotate("custom") attribute 4108 4109 #pragma clang attribute pop 4110 4111The attributes can also be written using the C++11 style syntax: 4112 4113.. code-block:: c++ 4114 4115 #pragma clang attribute push ([[noreturn]], apply_to = function) 4116 4117 void function(); // The function now has the [[noreturn]] attribute 4118 4119 #pragma clang attribute pop 4120 4121The ``__declspec`` style syntax is also supported: 4122 4123.. code-block:: c++ 4124 4125 #pragma clang attribute push (__declspec(dllexport), apply_to = function) 4126 4127 void function(); // The function now has the __declspec(dllexport) attribute 4128 4129 #pragma clang attribute pop 4130 4131A single push directive can contain multiple attributes, however, 4132only one syntax style can be used within a single directive: 4133 4134.. code-block:: c++ 4135 4136 #pragma clang attribute push ([[noreturn, noinline]], apply_to = function) 4137 4138 void function1(); // The function now has the [[noreturn]] and [[noinline]] attributes 4139 4140 #pragma clang attribute pop 4141 4142 #pragma clang attribute push (__attribute((noreturn, noinline)), apply_to = function) 4143 4144 void function2(); // The function now has the __attribute((noreturn)) and __attribute((noinline)) attributes 4145 4146 #pragma clang attribute pop 4147 4148Because multiple push directives can be nested, if you're writing a macro that 4149expands to ``_Pragma("clang attribute")`` it's good hygiene (though not 4150required) to add a namespace to your push/pop directives. A pop directive with a 4151namespace will pop the innermost push that has that same namespace. This will 4152ensure that another macro's ``pop`` won't inadvertently pop your attribute. Note 4153that an ``pop`` without a namespace will pop the innermost ``push`` without a 4154namespace. ``push``es with a namespace can only be popped by ``pop`` with the 4155same namespace. For instance: 4156 4157.. code-block:: c++ 4158 4159 #define ASSUME_NORETURN_BEGIN _Pragma("clang attribute AssumeNoreturn.push ([[noreturn]], apply_to = function)") 4160 #define ASSUME_NORETURN_END _Pragma("clang attribute AssumeNoreturn.pop") 4161 4162 #define ASSUME_UNAVAILABLE_BEGIN _Pragma("clang attribute Unavailable.push (__attribute__((unavailable)), apply_to=function)") 4163 #define ASSUME_UNAVAILABLE_END _Pragma("clang attribute Unavailable.pop") 4164 4165 4166 ASSUME_NORETURN_BEGIN 4167 ASSUME_UNAVAILABLE_BEGIN 4168 void function(); // function has [[noreturn]] and __attribute__((unavailable)) 4169 ASSUME_NORETURN_END 4170 void other_function(); // function has __attribute__((unavailable)) 4171 ASSUME_UNAVAILABLE_END 4172 4173Without the namespaces on the macros, ``other_function`` will be annotated with 4174``[[noreturn]]`` instead of ``__attribute__((unavailable))``. This may seem like 4175a contrived example, but its very possible for this kind of situation to appear 4176in real code if the pragmas are spread out across a large file. You can test if 4177your version of clang supports namespaces on ``#pragma clang attribute`` with 4178``__has_extension(pragma_clang_attribute_namespaces)``. 4179 4180Subject Match Rules 4181------------------- 4182 4183The set of declarations that receive a single attribute from the attribute stack 4184depends on the subject match rules that were specified in the pragma. Subject 4185match rules are specified after the attribute. The compiler expects an 4186identifier that corresponds to the subject set specifier. The ``apply_to`` 4187specifier is currently the only supported subject set specifier. It allows you 4188to specify match rules that form a subset of the attribute's allowed subject 4189set, i.e. the compiler doesn't require all of the attribute's subjects. For 4190example, an attribute like ``[[nodiscard]]`` whose subject set includes 4191``enum``, ``record`` and ``hasType(functionType)``, requires the presence of at 4192least one of these rules after ``apply_to``: 4193 4194.. code-block:: c++ 4195 4196 #pragma clang attribute push([[nodiscard]], apply_to = enum) 4197 4198 enum Enum1 { A1, B1 }; // The enum will receive [[nodiscard]] 4199 4200 struct Record1 { }; // The struct will *not* receive [[nodiscard]] 4201 4202 #pragma clang attribute pop 4203 4204 #pragma clang attribute push([[nodiscard]], apply_to = any(record, enum)) 4205 4206 enum Enum2 { A2, B2 }; // The enum will receive [[nodiscard]] 4207 4208 struct Record2 { }; // The struct *will* receive [[nodiscard]] 4209 4210 #pragma clang attribute pop 4211 4212 // This is an error, since [[nodiscard]] can't be applied to namespaces: 4213 #pragma clang attribute push([[nodiscard]], apply_to = any(record, namespace)) 4214 4215 #pragma clang attribute pop 4216 4217Multiple match rules can be specified using the ``any`` match rule, as shown 4218in the example above. The ``any`` rule applies attributes to all declarations 4219that are matched by at least one of the rules in the ``any``. It doesn't nest 4220and can't be used inside the other match rules. Redundant match rules or rules 4221that conflict with one another should not be used inside of ``any``. Failing to 4222specify a rule within the ``any`` rule results in an error. 4223 4224Clang supports the following match rules: 4225 4226- ``function``: Can be used to apply attributes to functions. This includes C++ 4227 member functions, static functions, operators, and constructors/destructors. 4228 4229- ``function(is_member)``: Can be used to apply attributes to C++ member 4230 functions. This includes members like static functions, operators, and 4231 constructors/destructors. 4232 4233- ``hasType(functionType)``: Can be used to apply attributes to functions, C++ 4234 member functions, and variables/fields whose type is a function pointer. It 4235 does not apply attributes to Objective-C methods or blocks. 4236 4237- ``type_alias``: Can be used to apply attributes to ``typedef`` declarations 4238 and C++11 type aliases. 4239 4240- ``record``: Can be used to apply attributes to ``struct``, ``class``, and 4241 ``union`` declarations. 4242 4243- ``record(unless(is_union))``: Can be used to apply attributes only to 4244 ``struct`` and ``class`` declarations. 4245 4246- ``enum``: Can be be used to apply attributes to enumeration declarations. 4247 4248- ``enum_constant``: Can be used to apply attributes to enumerators. 4249 4250- ``variable``: Can be used to apply attributes to variables, including 4251 local variables, parameters, global variables, and static member variables. 4252 It does not apply attributes to instance member variables or Objective-C 4253 ivars. 4254 4255- ``variable(is_thread_local)``: Can be used to apply attributes to thread-local 4256 variables only. 4257 4258- ``variable(is_global)``: Can be used to apply attributes to global variables 4259 only. 4260 4261- ``variable(is_local)``: Can be used to apply attributes to local variables 4262 only. 4263 4264- ``variable(is_parameter)``: Can be used to apply attributes to parameters 4265 only. 4266 4267- ``variable(unless(is_parameter))``: Can be used to apply attributes to all 4268 the variables that are not parameters. 4269 4270- ``field``: Can be used to apply attributes to non-static member variables 4271 in a record. This includes Objective-C ivars. 4272 4273- ``namespace``: Can be used to apply attributes to ``namespace`` declarations. 4274 4275- ``objc_interface``: Can be used to apply attributes to ``@interface`` 4276 declarations. 4277 4278- ``objc_protocol``: Can be used to apply attributes to ``@protocol`` 4279 declarations. 4280 4281- ``objc_category``: Can be used to apply attributes to category declarations, 4282 including class extensions. 4283 4284- ``objc_method``: Can be used to apply attributes to Objective-C methods, 4285 including instance and class methods. Implicit methods like implicit property 4286 getters and setters do not receive the attribute. 4287 4288- ``objc_method(is_instance)``: Can be used to apply attributes to Objective-C 4289 instance methods. 4290 4291- ``objc_property``: Can be used to apply attributes to ``@property`` 4292 declarations. 4293 4294- ``block``: Can be used to apply attributes to block declarations. This does 4295 not include variables/fields of block pointer type. 4296 4297The use of ``unless`` in match rules is currently restricted to a strict set of 4298sub-rules that are used by the supported attributes. That means that even though 4299``variable(unless(is_parameter))`` is a valid match rule, 4300``variable(unless(is_thread_local))`` is not. 4301 4302Supported Attributes 4303-------------------- 4304 4305Not all attributes can be used with the ``#pragma clang attribute`` directive. 4306Notably, statement attributes like ``[[fallthrough]]`` or type attributes 4307like ``address_space`` aren't supported by this directive. You can determine 4308whether or not an attribute is supported by the pragma by referring to the 4309:doc:`individual documentation for that attribute <AttributeReference>`. 4310 4311The attributes are applied to all matching declarations individually, even when 4312the attribute is semantically incorrect. The attributes that aren't applied to 4313any declaration are not verified semantically. 4314 4315Specifying section names for global objects (#pragma clang section) 4316=================================================================== 4317 4318The ``#pragma clang section`` directive provides a means to assign section-names 4319to global variables, functions and static variables. 4320 4321The section names can be specified as: 4322 4323.. code-block:: c++ 4324 4325 #pragma clang section bss="myBSS" data="myData" rodata="myRodata" relro="myRelro" text="myText" 4326 4327The section names can be reverted back to default name by supplying an empty 4328string to the section kind, for example: 4329 4330.. code-block:: c++ 4331 4332 #pragma clang section bss="" data="" text="" rodata="" relro="" 4333 4334The ``#pragma clang section`` directive obeys the following rules: 4335 4336* The pragma applies to all global variable, statics and function declarations 4337 from the pragma to the end of the translation unit. 4338 4339* The pragma clang section is enabled automatically, without need of any flags. 4340 4341* This feature is only defined to work sensibly for ELF targets. 4342 4343* If section name is specified through _attribute_((section("myname"))), then 4344 the attribute name gains precedence. 4345 4346* Global variables that are initialized to zero will be placed in the named 4347 bss section, if one is present. 4348 4349* The ``#pragma clang section`` directive does not does try to infer section-kind 4350 from the name. For example, naming a section "``.bss.mySec``" does NOT mean 4351 it will be a bss section name. 4352 4353* The decision about which section-kind applies to each global is taken in the back-end. 4354 Once the section-kind is known, appropriate section name, as specified by the user using 4355 ``#pragma clang section`` directive, is applied to that global. 4356 4357Specifying Linker Options on ELF Targets 4358======================================== 4359 4360The ``#pragma comment(lib, ...)`` directive is supported on all ELF targets. 4361The second parameter is the library name (without the traditional Unix prefix of 4362``lib``). This allows you to provide an implicit link of dependent libraries. 4363 4364Evaluating Object Size Dynamically 4365================================== 4366 4367Clang supports the builtin ``__builtin_dynamic_object_size``, the semantics are 4368the same as GCC's ``__builtin_object_size`` (which Clang also supports), but 4369``__builtin_dynamic_object_size`` can evaluate the object's size at runtime. 4370``__builtin_dynamic_object_size`` is meant to be used as a drop-in replacement 4371for ``__builtin_object_size`` in libraries that support it. 4372 4373For instance, here is a program that ``__builtin_dynamic_object_size`` will make 4374safer: 4375 4376.. code-block:: c 4377 4378 void copy_into_buffer(size_t size) { 4379 char* buffer = malloc(size); 4380 strlcpy(buffer, "some string", strlen("some string")); 4381 // Previous line preprocesses to: 4382 // __builtin___strlcpy_chk(buffer, "some string", strlen("some string"), __builtin_object_size(buffer, 0)) 4383 } 4384 4385Since the size of ``buffer`` can't be known at compile time, Clang will fold 4386``__builtin_object_size(buffer, 0)`` into ``-1``. However, if this was written 4387as ``__builtin_dynamic_object_size(buffer, 0)``, Clang will fold it into 4388``size``, providing some extra runtime safety. 4389 4390Deprecating Macros 4391================== 4392 4393Clang supports the pragma ``#pragma clang deprecated``, which can be used to 4394provide deprecation warnings for macro uses. For example: 4395 4396.. code-block:: c 4397 4398 #define MIN(x, y) x < y ? x : y 4399 #pragma clang deprecated(MIN, "use std::min instead") 4400 4401 void min(int a, int b) { 4402 return MIN(a, b); // warning: MIN is deprecated: use std::min instead 4403 } 4404 4405``#pragma clang deprecated`` should be preferred for this purpose over 4406``#pragma GCC warning`` because the warning can be controlled with 4407``-Wdeprecated``. 4408 4409Restricted Expansion Macros 4410=========================== 4411 4412Clang supports the pragma ``#pragma clang restrict_expansion``, which can be 4413used restrict macro expansion in headers. This can be valuable when providing 4414headers with ABI stability requirements. Any expansion of the annotated macro 4415processed by the preprocessor after the ``#pragma`` annotation will log a 4416warning. Redefining the macro or undefining the macro will not be diagnosed, nor 4417will expansion of the macro within the main source file. For example: 4418 4419.. code-block:: c 4420 4421 #define TARGET_ARM 1 4422 #pragma clang restrict_expansion(TARGET_ARM, "<reason>") 4423 4424 /// Foo.h 4425 struct Foo { 4426 #if TARGET_ARM // warning: TARGET_ARM is marked unsafe in headers: <reason> 4427 uint32_t X; 4428 #else 4429 uint64_t X; 4430 #endif 4431 }; 4432 4433 /// main.c 4434 #include "foo.h" 4435 #if TARGET_ARM // No warning in main source file 4436 X_TYPE uint32_t 4437 #else 4438 X_TYPE uint64_t 4439 #endif 4440 4441This warning is controlled by ``-Wpedantic-macros``. 4442 4443Final Macros 4444============ 4445 4446Clang supports the pragma ``#pragma clang final``, which can be used to 4447mark macros as final, meaning they cannot be undef'd or re-defined. For example: 4448 4449.. code-block:: c 4450 4451 #define FINAL_MACRO 1 4452 #pragma clang final(FINAL_MACRO) 4453 4454 #define FINAL_MACRO // warning: FINAL_MACRO is marked final and should not be redefined 4455 #undef FINAL_MACRO // warning: FINAL_MACRO is marked final and should not be undefined 4456 4457This is useful for enforcing system-provided macros that should not be altered 4458in user headers or code. This is controlled by ``-Wpedantic-macros``. Final 4459macros will always warn on redefinition, including situations with identical 4460bodies and in system headers. 4461 4462Line Control 4463============ 4464 4465Clang supports an extension for source line control, which takes the 4466form of a preprocessor directive starting with an unsigned integral 4467constant. In addition to the standard ``#line`` directive, this form 4468allows control of an include stack and header file type, which is used 4469in issuing diagnostics. These lines are emitted in preprocessed 4470output. 4471 4472.. code-block:: c 4473 4474 # <line:number> <filename:string> <header-type:numbers> 4475 4476The filename is optional, and if unspecified indicates no change in 4477source filename. The header-type is an optional, whitespace-delimited, 4478sequence of magic numbers as follows. 4479 4480* ``1:`` Push the current source file name onto the include stack and 4481 enter a new file. 4482 4483* ``2``: Pop the include stack and return to the specified file. If 4484 the filename is ``""``, the name popped from the include stack is 4485 used. Otherwise there is no requirement that the specified filename 4486 matches the current source when originally pushed. 4487 4488* ``3``: Enter a system-header region. System headers often contain 4489 implementation-specific source that would normally emit a diagnostic. 4490 4491* ``4``: Enter an implicit ``extern "C"`` region. This is not required on 4492 modern systems where system headers are C++-aware. 4493 4494At most a single ``1`` or ``2`` can be present, and values must be in 4495ascending order. 4496 4497Examples are: 4498 4499.. code-block:: c 4500 4501 # 57 // Advance (or return) to line 57 of the current source file 4502 # 57 "frob" // Set to line 57 of "frob" 4503 # 1 "foo.h" 1 // Enter "foo.h" at line 1 4504 # 59 "main.c" 2 // Leave current include and return to "main.c" 4505 # 1 "/usr/include/stdio.h" 1 3 // Enter a system header 4506 # 60 "" 2 // return to "main.c" 4507 # 1 "/usr/ancient/header.h" 1 4 // Enter an implicit extern "C" header 4508 4509Extended Integer Types 4510====================== 4511 4512Clang supports the C23 ``_BitInt(N)`` feature as an extension in older C modes 4513and in C++. This type was previously implemented in Clang with the same 4514semantics, but spelled ``_ExtInt(N)``. This spelling has been deprecated in 4515favor of the standard type. 4516 4517Note: the ABI for ``_BitInt(N)`` is still in the process of being stabilized, 4518so this type should not yet be used in interfaces that require ABI stability. 4519 4520Intrinsics Support within Constant Expressions 4521============================================== 4522 4523The following builtin intrinsics can be used in constant expressions: 4524 4525* ``__builtin_bitreverse8`` 4526* ``__builtin_bitreverse16`` 4527* ``__builtin_bitreverse32`` 4528* ``__builtin_bitreverse64`` 4529* ``__builtin_bswap16`` 4530* ``__builtin_bswap32`` 4531* ``__builtin_bswap64`` 4532* ``__builtin_clrsb`` 4533* ``__builtin_clrsbl`` 4534* ``__builtin_clrsbll`` 4535* ``__builtin_clz`` 4536* ``__builtin_clzl`` 4537* ``__builtin_clzll`` 4538* ``__builtin_clzs`` 4539* ``__builtin_ctz`` 4540* ``__builtin_ctzl`` 4541* ``__builtin_ctzll`` 4542* ``__builtin_ctzs`` 4543* ``__builtin_ffs`` 4544* ``__builtin_ffsl`` 4545* ``__builtin_ffsll`` 4546* ``__builtin_fpclassify`` 4547* ``__builtin_inf`` 4548* ``__builtin_isinf`` 4549* ``__builtin_isinf_sign`` 4550* ``__builtin_isfinite`` 4551* ``__builtin_isnan`` 4552* ``__builtin_isnormal`` 4553* ``__builtin_nan`` 4554* ``__builtin_nans`` 4555* ``__builtin_parity`` 4556* ``__builtin_parityl`` 4557* ``__builtin_parityll`` 4558* ``__builtin_popcount`` 4559* ``__builtin_popcountl`` 4560* ``__builtin_popcountll`` 4561* ``__builtin_rotateleft8`` 4562* ``__builtin_rotateleft16`` 4563* ``__builtin_rotateleft32`` 4564* ``__builtin_rotateleft64`` 4565* ``__builtin_rotateright8`` 4566* ``__builtin_rotateright16`` 4567* ``__builtin_rotateright32`` 4568* ``__builtin_rotateright64`` 4569 4570The following x86-specific intrinsics can be used in constant expressions: 4571 4572* ``_bit_scan_forward`` 4573* ``_bit_scan_reverse`` 4574* ``__bsfd`` 4575* ``__bsfq`` 4576* ``__bsrd`` 4577* ``__bsrq`` 4578* ``__bswap`` 4579* ``__bswapd`` 4580* ``__bswap64`` 4581* ``__bswapq`` 4582* ``_castf32_u32`` 4583* ``_castf64_u64`` 4584* ``_castu32_f32`` 4585* ``_castu64_f64`` 4586* ``_mm_popcnt_u32`` 4587* ``_mm_popcnt_u64`` 4588* ``_popcnt32`` 4589* ``_popcnt64`` 4590* ``__popcntd`` 4591* ``__popcntq`` 4592* ``__rolb`` 4593* ``__rolw`` 4594* ``__rold`` 4595* ``__rolq`` 4596* ``__rorb`` 4597* ``__rorw`` 4598* ``__rord`` 4599* ``__rorq`` 4600* ``_rotl`` 4601* ``_rotr`` 4602* ``_rotwl`` 4603* ``_rotwr`` 4604* ``_lrotl`` 4605* ``_lrotr`` 4606