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.. _langext-vectors: 387 388Vectors and Extended Vectors 389============================ 390 391Supports the GCC, OpenCL, AltiVec and NEON vector extensions. 392 393OpenCL vector types are created using the ``ext_vector_type`` attribute. It 394supports the ``V.xyzw`` syntax and other tidbits as seen in OpenCL. An example 395is: 396 397.. code-block:: c++ 398 399 typedef float float4 __attribute__((ext_vector_type(4))); 400 typedef float float2 __attribute__((ext_vector_type(2))); 401 402 float4 foo(float2 a, float2 b) { 403 float4 c; 404 c.xz = a; 405 c.yw = b; 406 return c; 407 } 408 409Query for this feature with ``__has_attribute(ext_vector_type)``. 410 411Giving ``-maltivec`` option to clang enables support for AltiVec vector syntax 412and functions. For example: 413 414.. code-block:: c++ 415 416 vector float foo(vector int a) { 417 vector int b; 418 b = vec_add(a, a) + a; 419 return (vector float)b; 420 } 421 422NEON vector types are created using ``neon_vector_type`` and 423``neon_polyvector_type`` attributes. For example: 424 425.. code-block:: c++ 426 427 typedef __attribute__((neon_vector_type(8))) int8_t int8x8_t; 428 typedef __attribute__((neon_polyvector_type(16))) poly8_t poly8x16_t; 429 430 int8x8_t foo(int8x8_t a) { 431 int8x8_t v; 432 v = a; 433 return v; 434 } 435 436Vector Literals 437--------------- 438 439Vector literals can be used to create vectors from a set of scalars, or 440vectors. Either parentheses or braces form can be used. In the parentheses 441form the number of literal values specified must be one, i.e. referring to a 442scalar value, or must match the size of the vector type being created. If a 443single scalar literal value is specified, the scalar literal value will be 444replicated to all the components of the vector type. In the brackets form any 445number of literals can be specified. For example: 446 447.. code-block:: c++ 448 449 typedef int v4si __attribute__((__vector_size__(16))); 450 typedef float float4 __attribute__((ext_vector_type(4))); 451 typedef float float2 __attribute__((ext_vector_type(2))); 452 453 v4si vsi = (v4si){1, 2, 3, 4}; 454 float4 vf = (float4)(1.0f, 2.0f, 3.0f, 4.0f); 455 vector int vi1 = (vector int)(1); // vi1 will be (1, 1, 1, 1). 456 vector int vi2 = (vector int){1}; // vi2 will be (1, 0, 0, 0). 457 vector int vi3 = (vector int)(1, 2); // error 458 vector int vi4 = (vector int){1, 2}; // vi4 will be (1, 2, 0, 0). 459 vector int vi5 = (vector int)(1, 2, 3, 4); 460 float4 vf = (float4)((float2)(1.0f, 2.0f), (float2)(3.0f, 4.0f)); 461 462Vector Operations 463----------------- 464 465The table below shows the support for each operation by vector extension. A 466dash indicates that an operation is not accepted according to a corresponding 467specification. 468 469============================== ======= ======= ============= ======= 470 Operator OpenCL AltiVec GCC NEON 471============================== ======= ======= ============= ======= 472[] yes yes yes -- 473unary operators +, -- yes yes yes -- 474++, -- -- yes yes yes -- 475+,--,*,/,% yes yes yes -- 476bitwise operators &,|,^,~ yes yes yes -- 477>>,<< yes yes yes -- 478!, &&, || yes -- yes -- 479==, !=, >, <, >=, <= yes yes yes -- 480= yes yes yes yes 481?: [#]_ yes -- yes -- 482sizeof yes yes yes yes 483C-style cast yes yes yes no 484reinterpret_cast yes no yes no 485static_cast yes no yes no 486const_cast no no no no 487============================== ======= ======= ============= ======= 488 489See also :ref:`langext-__builtin_shufflevector`, :ref:`langext-__builtin_convertvector`. 490 491.. [#] ternary operator(?:) has different behaviors depending on condition 492 operand's vector type. If the condition is a GNU vector (i.e. __vector_size__), 493 it's only available in C++ and uses normal bool conversions (that is, != 0). 494 If it's an extension (OpenCL) vector, it's only available in C and OpenCL C. 495 And it selects base on signedness of the condition operands (OpenCL v1.1 s6.3.9). 496 497Matrix Types 498============ 499 500Clang provides an extension for matrix types, which is currently being 501implemented. See :ref:`the draft specification <matrixtypes>` for more details. 502 503For example, the code below uses the matrix types extension to multiply two 4x4 504float matrices and add the result to a third 4x4 matrix. 505 506.. code-block:: c++ 507 508 typedef float m4x4_t __attribute__((matrix_type(4, 4))); 509 510 m4x4_t f(m4x4_t a, m4x4_t b, m4x4_t c) { 511 return a + b * c; 512 } 513 514 515Half-Precision Floating Point 516============================= 517 518Clang supports three half-precision (16-bit) floating point types: ``__fp16``, 519``_Float16`` and ``__bf16``. These types are supported in all language modes. 520 521``__fp16`` is supported on every target, as it is purely a storage format; see below. 522``_Float16`` is currently only supported on the following targets, with further 523targets pending ABI standardization: 524 525* 32-bit ARM 526* 64-bit ARM (AArch64) 527* AMDGPU 528* SPIR 529 530``_Float16`` will be supported on more targets as they define ABIs for it. 531 532``__bf16`` is purely a storage format; it is currently only supported on the following targets: 533* 32-bit ARM 534* 64-bit ARM (AArch64) 535 536The ``__bf16`` type is only available when supported in hardware. 537 538``__fp16`` is a storage and interchange format only. This means that values of 539``__fp16`` are immediately promoted to (at least) ``float`` when used in arithmetic 540operations, so that e.g. the result of adding two ``__fp16`` values has type ``float``. 541The 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>`_). 542Clang uses the ``binary16`` format from IEEE 754-2008 for ``__fp16``, not the ARM 543alternative format. 544 545``_Float16`` is an interchange floating-point type. This means that, just like arithmetic on 546``float`` or ``double``, arithmetic on ``_Float16`` operands is formally performed in the 547``_Float16`` type, so that e.g. the result of adding two ``_Float16`` values has type 548``_Float16``. The behavior of ``_Float16`` is specified by ISO/IEC TS 18661-3:2015 549("Floating-point extensions for C"). As with ``__fp16``, Clang uses the ``binary16`` 550format from IEEE 754-2008 for ``_Float16``. 551 552``_Float16`` arithmetic will be performed using native half-precision support 553when available on the target (e.g. on ARMv8.2a); otherwise it will be performed 554at a higher precision (currently always ``float``) and then truncated down to 555``_Float16``. Note that C and C++ allow intermediate floating-point operands 556of an expression to be computed with greater precision than is expressible in 557their type, so Clang may avoid intermediate truncations in certain cases; this may 558lead to results that are inconsistent with native arithmetic. 559 560It is recommended that portable code use ``_Float16`` instead of ``__fp16``, 561as it has been defined by the C standards committee and has behavior that is 562more familiar to most programmers. 563 564Because ``__fp16`` operands are always immediately promoted to ``float``, the 565common real type of ``__fp16`` and ``_Float16`` for the purposes of the usual 566arithmetic conversions is ``float``. 567 568A literal can be given ``_Float16`` type using the suffix ``f16``. For example, 569``3.14f16``. 570 571Because default argument promotion only applies to the standard floating-point 572types, ``_Float16`` values are not promoted to ``double`` when passed as variadic 573or untyped arguments. As a consequence, some caution must be taken when using 574certain library facilities with ``_Float16``; for example, there is no ``printf`` format 575specifier for ``_Float16``, and (unlike ``float``) it will not be implicitly promoted to 576``double`` when passed to ``printf``, so the programmer must explicitly cast it to 577``double`` before using it with an ``%f`` or similar specifier. 578 579Messages on ``deprecated`` and ``unavailable`` Attributes 580========================================================= 581 582An optional string message can be added to the ``deprecated`` and 583``unavailable`` attributes. For example: 584 585.. code-block:: c++ 586 587 void explode(void) __attribute__((deprecated("extremely unsafe, use 'combust' instead!!!"))); 588 589If the deprecated or unavailable declaration is used, the message will be 590incorporated into the appropriate diagnostic: 591 592.. code-block:: none 593 594 harmless.c:4:3: warning: 'explode' is deprecated: extremely unsafe, use 'combust' instead!!! 595 [-Wdeprecated-declarations] 596 explode(); 597 ^ 598 599Query for this feature with 600``__has_extension(attribute_deprecated_with_message)`` and 601``__has_extension(attribute_unavailable_with_message)``. 602 603Attributes on Enumerators 604========================= 605 606Clang allows attributes to be written on individual enumerators. This allows 607enumerators to be deprecated, made unavailable, etc. The attribute must appear 608after the enumerator name and before any initializer, like so: 609 610.. code-block:: c++ 611 612 enum OperationMode { 613 OM_Invalid, 614 OM_Normal, 615 OM_Terrified __attribute__((deprecated)), 616 OM_AbortOnError __attribute__((deprecated)) = 4 617 }; 618 619Attributes on the ``enum`` declaration do not apply to individual enumerators. 620 621Query for this feature with ``__has_extension(enumerator_attributes)``. 622 623'User-Specified' System Frameworks 624================================== 625 626Clang provides a mechanism by which frameworks can be built in such a way that 627they will always be treated as being "system frameworks", even if they are not 628present in a system framework directory. This can be useful to system 629framework developers who want to be able to test building other applications 630with development builds of their framework, including the manner in which the 631compiler changes warning behavior for system headers. 632 633Framework developers can opt-in to this mechanism by creating a 634"``.system_framework``" file at the top-level of their framework. That is, the 635framework should have contents like: 636 637.. code-block:: none 638 639 .../TestFramework.framework 640 .../TestFramework.framework/.system_framework 641 .../TestFramework.framework/Headers 642 .../TestFramework.framework/Headers/TestFramework.h 643 ... 644 645Clang will treat the presence of this file as an indicator that the framework 646should be treated as a system framework, regardless of how it was found in the 647framework search path. For consistency, we recommend that such files never be 648included in installed versions of the framework. 649 650Checks for Standard Language Features 651===================================== 652 653The ``__has_feature`` macro can be used to query if certain standard language 654features are enabled. The ``__has_extension`` macro can be used to query if 655language features are available as an extension when compiling for a standard 656which does not provide them. The features which can be tested are listed here. 657 658Since Clang 3.4, the C++ SD-6 feature test macros are also supported. 659These are macros with names of the form ``__cpp_<feature_name>``, and are 660intended to be a portable way to query the supported features of the compiler. 661See `the C++ status page <https://clang.llvm.org/cxx_status.html#ts>`_ for 662information on the version of SD-6 supported by each Clang release, and the 663macros provided by that revision of the recommendations. 664 665C++98 666----- 667 668The features listed below are part of the C++98 standard. These features are 669enabled by default when compiling C++ code. 670 671C++ exceptions 672^^^^^^^^^^^^^^ 673 674Use ``__has_feature(cxx_exceptions)`` to determine if C++ exceptions have been 675enabled. For example, compiling code with ``-fno-exceptions`` disables C++ 676exceptions. 677 678C++ RTTI 679^^^^^^^^ 680 681Use ``__has_feature(cxx_rtti)`` to determine if C++ RTTI has been enabled. For 682example, compiling code with ``-fno-rtti`` disables the use of RTTI. 683 684C++11 685----- 686 687The features listed below are part of the C++11 standard. As a result, all 688these features are enabled with the ``-std=c++11`` or ``-std=gnu++11`` option 689when compiling C++ code. 690 691C++11 SFINAE includes access control 692^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 693 694Use ``__has_feature(cxx_access_control_sfinae)`` or 695``__has_extension(cxx_access_control_sfinae)`` to determine whether 696access-control errors (e.g., calling a private constructor) are considered to 697be template argument deduction errors (aka SFINAE errors), per `C++ DR1170 698<http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1170>`_. 699 700C++11 alias templates 701^^^^^^^^^^^^^^^^^^^^^ 702 703Use ``__has_feature(cxx_alias_templates)`` or 704``__has_extension(cxx_alias_templates)`` to determine if support for C++11's 705alias declarations and alias templates is enabled. 706 707C++11 alignment specifiers 708^^^^^^^^^^^^^^^^^^^^^^^^^^ 709 710Use ``__has_feature(cxx_alignas)`` or ``__has_extension(cxx_alignas)`` to 711determine if support for alignment specifiers using ``alignas`` is enabled. 712 713Use ``__has_feature(cxx_alignof)`` or ``__has_extension(cxx_alignof)`` to 714determine if support for the ``alignof`` keyword is enabled. 715 716C++11 attributes 717^^^^^^^^^^^^^^^^ 718 719Use ``__has_feature(cxx_attributes)`` or ``__has_extension(cxx_attributes)`` to 720determine if support for attribute parsing with C++11's square bracket notation 721is enabled. 722 723C++11 generalized constant expressions 724^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 725 726Use ``__has_feature(cxx_constexpr)`` to determine if support for generalized 727constant expressions (e.g., ``constexpr``) is enabled. 728 729C++11 ``decltype()`` 730^^^^^^^^^^^^^^^^^^^^ 731 732Use ``__has_feature(cxx_decltype)`` or ``__has_extension(cxx_decltype)`` to 733determine if support for the ``decltype()`` specifier is enabled. C++11's 734``decltype`` does not require type-completeness of a function call expression. 735Use ``__has_feature(cxx_decltype_incomplete_return_types)`` or 736``__has_extension(cxx_decltype_incomplete_return_types)`` to determine if 737support for this feature is enabled. 738 739C++11 default template arguments in function templates 740^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 741 742Use ``__has_feature(cxx_default_function_template_args)`` or 743``__has_extension(cxx_default_function_template_args)`` to determine if support 744for default template arguments in function templates is enabled. 745 746C++11 ``default``\ ed functions 747^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 748 749Use ``__has_feature(cxx_defaulted_functions)`` or 750``__has_extension(cxx_defaulted_functions)`` to determine if support for 751defaulted function definitions (with ``= default``) is enabled. 752 753C++11 delegating constructors 754^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 755 756Use ``__has_feature(cxx_delegating_constructors)`` to determine if support for 757delegating constructors is enabled. 758 759C++11 ``deleted`` functions 760^^^^^^^^^^^^^^^^^^^^^^^^^^^ 761 762Use ``__has_feature(cxx_deleted_functions)`` or 763``__has_extension(cxx_deleted_functions)`` to determine if support for deleted 764function definitions (with ``= delete``) is enabled. 765 766C++11 explicit conversion functions 767^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 768 769Use ``__has_feature(cxx_explicit_conversions)`` to determine if support for 770``explicit`` conversion functions is enabled. 771 772C++11 generalized initializers 773^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 774 775Use ``__has_feature(cxx_generalized_initializers)`` to determine if support for 776generalized initializers (using braced lists and ``std::initializer_list``) is 777enabled. 778 779C++11 implicit move constructors/assignment operators 780^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 781 782Use ``__has_feature(cxx_implicit_moves)`` to determine if Clang will implicitly 783generate move constructors and move assignment operators where needed. 784 785C++11 inheriting constructors 786^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 787 788Use ``__has_feature(cxx_inheriting_constructors)`` to determine if support for 789inheriting constructors is enabled. 790 791C++11 inline namespaces 792^^^^^^^^^^^^^^^^^^^^^^^ 793 794Use ``__has_feature(cxx_inline_namespaces)`` or 795``__has_extension(cxx_inline_namespaces)`` to determine if support for inline 796namespaces is enabled. 797 798C++11 lambdas 799^^^^^^^^^^^^^ 800 801Use ``__has_feature(cxx_lambdas)`` or ``__has_extension(cxx_lambdas)`` to 802determine if support for lambdas is enabled. 803 804C++11 local and unnamed types as template arguments 805^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 806 807Use ``__has_feature(cxx_local_type_template_args)`` or 808``__has_extension(cxx_local_type_template_args)`` to determine if support for 809local and unnamed types as template arguments is enabled. 810 811C++11 noexcept 812^^^^^^^^^^^^^^ 813 814Use ``__has_feature(cxx_noexcept)`` or ``__has_extension(cxx_noexcept)`` to 815determine if support for noexcept exception specifications is enabled. 816 817C++11 in-class non-static data member initialization 818^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 819 820Use ``__has_feature(cxx_nonstatic_member_init)`` to determine whether in-class 821initialization of non-static data members is enabled. 822 823C++11 ``nullptr`` 824^^^^^^^^^^^^^^^^^ 825 826Use ``__has_feature(cxx_nullptr)`` or ``__has_extension(cxx_nullptr)`` to 827determine if support for ``nullptr`` is enabled. 828 829C++11 ``override control`` 830^^^^^^^^^^^^^^^^^^^^^^^^^^ 831 832Use ``__has_feature(cxx_override_control)`` or 833``__has_extension(cxx_override_control)`` to determine if support for the 834override control keywords is enabled. 835 836C++11 reference-qualified functions 837^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 838 839Use ``__has_feature(cxx_reference_qualified_functions)`` or 840``__has_extension(cxx_reference_qualified_functions)`` to determine if support 841for reference-qualified functions (e.g., member functions with ``&`` or ``&&`` 842applied to ``*this``) is enabled. 843 844C++11 range-based ``for`` loop 845^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 846 847Use ``__has_feature(cxx_range_for)`` or ``__has_extension(cxx_range_for)`` to 848determine if support for the range-based for loop is enabled. 849 850C++11 raw string literals 851^^^^^^^^^^^^^^^^^^^^^^^^^ 852 853Use ``__has_feature(cxx_raw_string_literals)`` to determine if support for raw 854string literals (e.g., ``R"x(foo\bar)x"``) is enabled. 855 856C++11 rvalue references 857^^^^^^^^^^^^^^^^^^^^^^^ 858 859Use ``__has_feature(cxx_rvalue_references)`` or 860``__has_extension(cxx_rvalue_references)`` to determine if support for rvalue 861references is enabled. 862 863C++11 ``static_assert()`` 864^^^^^^^^^^^^^^^^^^^^^^^^^ 865 866Use ``__has_feature(cxx_static_assert)`` or 867``__has_extension(cxx_static_assert)`` to determine if support for compile-time 868assertions using ``static_assert`` is enabled. 869 870C++11 ``thread_local`` 871^^^^^^^^^^^^^^^^^^^^^^ 872 873Use ``__has_feature(cxx_thread_local)`` to determine if support for 874``thread_local`` variables is enabled. 875 876C++11 type inference 877^^^^^^^^^^^^^^^^^^^^ 878 879Use ``__has_feature(cxx_auto_type)`` or ``__has_extension(cxx_auto_type)`` to 880determine C++11 type inference is supported using the ``auto`` specifier. If 881this is disabled, ``auto`` will instead be a storage class specifier, as in C 882or C++98. 883 884C++11 strongly typed enumerations 885^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 886 887Use ``__has_feature(cxx_strong_enums)`` or 888``__has_extension(cxx_strong_enums)`` to determine if support for strongly 889typed, scoped enumerations is enabled. 890 891C++11 trailing return type 892^^^^^^^^^^^^^^^^^^^^^^^^^^ 893 894Use ``__has_feature(cxx_trailing_return)`` or 895``__has_extension(cxx_trailing_return)`` to determine if support for the 896alternate function declaration syntax with trailing return type is enabled. 897 898C++11 Unicode string literals 899^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 900 901Use ``__has_feature(cxx_unicode_literals)`` to determine if support for Unicode 902string literals is enabled. 903 904C++11 unrestricted unions 905^^^^^^^^^^^^^^^^^^^^^^^^^ 906 907Use ``__has_feature(cxx_unrestricted_unions)`` to determine if support for 908unrestricted unions is enabled. 909 910C++11 user-defined literals 911^^^^^^^^^^^^^^^^^^^^^^^^^^^ 912 913Use ``__has_feature(cxx_user_literals)`` to determine if support for 914user-defined literals is enabled. 915 916C++11 variadic templates 917^^^^^^^^^^^^^^^^^^^^^^^^ 918 919Use ``__has_feature(cxx_variadic_templates)`` or 920``__has_extension(cxx_variadic_templates)`` to determine if support for 921variadic templates is enabled. 922 923C++14 924----- 925 926The features listed below are part of the C++14 standard. As a result, all 927these features are enabled with the ``-std=C++14`` or ``-std=gnu++14`` option 928when compiling C++ code. 929 930C++14 binary literals 931^^^^^^^^^^^^^^^^^^^^^ 932 933Use ``__has_feature(cxx_binary_literals)`` or 934``__has_extension(cxx_binary_literals)`` to determine whether 935binary literals (for instance, ``0b10010``) are recognized. Clang supports this 936feature as an extension in all language modes. 937 938C++14 contextual conversions 939^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 940 941Use ``__has_feature(cxx_contextual_conversions)`` or 942``__has_extension(cxx_contextual_conversions)`` to determine if the C++14 rules 943are used when performing an implicit conversion for an array bound in a 944*new-expression*, the operand of a *delete-expression*, an integral constant 945expression, or a condition in a ``switch`` statement. 946 947C++14 decltype(auto) 948^^^^^^^^^^^^^^^^^^^^ 949 950Use ``__has_feature(cxx_decltype_auto)`` or 951``__has_extension(cxx_decltype_auto)`` to determine if support 952for the ``decltype(auto)`` placeholder type is enabled. 953 954C++14 default initializers for aggregates 955^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 956 957Use ``__has_feature(cxx_aggregate_nsdmi)`` or 958``__has_extension(cxx_aggregate_nsdmi)`` to determine if support 959for default initializers in aggregate members is enabled. 960 961C++14 digit separators 962^^^^^^^^^^^^^^^^^^^^^^ 963 964Use ``__cpp_digit_separators`` to determine if support for digit separators 965using single quotes (for instance, ``10'000``) is enabled. At this time, there 966is no corresponding ``__has_feature`` name 967 968C++14 generalized lambda capture 969^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 970 971Use ``__has_feature(cxx_init_captures)`` or 972``__has_extension(cxx_init_captures)`` to determine if support for 973lambda captures with explicit initializers is enabled 974(for instance, ``[n(0)] { return ++n; }``). 975 976C++14 generic lambdas 977^^^^^^^^^^^^^^^^^^^^^ 978 979Use ``__has_feature(cxx_generic_lambdas)`` or 980``__has_extension(cxx_generic_lambdas)`` to determine if support for generic 981(polymorphic) lambdas is enabled 982(for instance, ``[] (auto x) { return x + 1; }``). 983 984C++14 relaxed constexpr 985^^^^^^^^^^^^^^^^^^^^^^^ 986 987Use ``__has_feature(cxx_relaxed_constexpr)`` or 988``__has_extension(cxx_relaxed_constexpr)`` to determine if variable 989declarations, local variable modification, and control flow constructs 990are permitted in ``constexpr`` functions. 991 992C++14 return type deduction 993^^^^^^^^^^^^^^^^^^^^^^^^^^^ 994 995Use ``__has_feature(cxx_return_type_deduction)`` or 996``__has_extension(cxx_return_type_deduction)`` to determine if support 997for return type deduction for functions (using ``auto`` as a return type) 998is enabled. 999 1000C++14 runtime-sized arrays 1001^^^^^^^^^^^^^^^^^^^^^^^^^^ 1002 1003Use ``__has_feature(cxx_runtime_array)`` or 1004``__has_extension(cxx_runtime_array)`` to determine if support 1005for arrays of runtime bound (a restricted form of variable-length arrays) 1006is enabled. 1007Clang's implementation of this feature is incomplete. 1008 1009C++14 variable templates 1010^^^^^^^^^^^^^^^^^^^^^^^^ 1011 1012Use ``__has_feature(cxx_variable_templates)`` or 1013``__has_extension(cxx_variable_templates)`` to determine if support for 1014templated variable declarations is enabled. 1015 1016C11 1017--- 1018 1019The features listed below are part of the C11 standard. As a result, all these 1020features are enabled with the ``-std=c11`` or ``-std=gnu11`` option when 1021compiling C code. Additionally, because these features are all 1022backward-compatible, they are available as extensions in all language modes. 1023 1024C11 alignment specifiers 1025^^^^^^^^^^^^^^^^^^^^^^^^ 1026 1027Use ``__has_feature(c_alignas)`` or ``__has_extension(c_alignas)`` to determine 1028if support for alignment specifiers using ``_Alignas`` is enabled. 1029 1030Use ``__has_feature(c_alignof)`` or ``__has_extension(c_alignof)`` to determine 1031if support for the ``_Alignof`` keyword is enabled. 1032 1033C11 atomic operations 1034^^^^^^^^^^^^^^^^^^^^^ 1035 1036Use ``__has_feature(c_atomic)`` or ``__has_extension(c_atomic)`` to determine 1037if support for atomic types using ``_Atomic`` is enabled. Clang also provides 1038:ref:`a set of builtins <langext-__c11_atomic>` which can be used to implement 1039the ``<stdatomic.h>`` operations on ``_Atomic`` types. Use 1040``__has_include(<stdatomic.h>)`` to determine if C11's ``<stdatomic.h>`` header 1041is available. 1042 1043Clang will use the system's ``<stdatomic.h>`` header when one is available, and 1044will otherwise use its own. When using its own, implementations of the atomic 1045operations are provided as macros. In the cases where C11 also requires a real 1046function, this header provides only the declaration of that function (along 1047with a shadowing macro implementation), and you must link to a library which 1048provides a definition of the function if you use it instead of the macro. 1049 1050C11 generic selections 1051^^^^^^^^^^^^^^^^^^^^^^ 1052 1053Use ``__has_feature(c_generic_selections)`` or 1054``__has_extension(c_generic_selections)`` to determine if support for generic 1055selections is enabled. 1056 1057As an extension, the C11 generic selection expression is available in all 1058languages supported by Clang. The syntax is the same as that given in the C11 1059standard. 1060 1061In C, type compatibility is decided according to the rules given in the 1062appropriate standard, but in C++, which lacks the type compatibility rules used 1063in C, types are considered compatible only if they are equivalent. 1064 1065C11 ``_Static_assert()`` 1066^^^^^^^^^^^^^^^^^^^^^^^^ 1067 1068Use ``__has_feature(c_static_assert)`` or ``__has_extension(c_static_assert)`` 1069to determine if support for compile-time assertions using ``_Static_assert`` is 1070enabled. 1071 1072C11 ``_Thread_local`` 1073^^^^^^^^^^^^^^^^^^^^^ 1074 1075Use ``__has_feature(c_thread_local)`` or ``__has_extension(c_thread_local)`` 1076to determine if support for ``_Thread_local`` variables is enabled. 1077 1078Modules 1079------- 1080 1081Use ``__has_feature(modules)`` to determine if Modules have been enabled. 1082For example, compiling code with ``-fmodules`` enables the use of Modules. 1083 1084More information could be found `here <https://clang.llvm.org/docs/Modules.html>`_. 1085 1086Type Trait Primitives 1087===================== 1088 1089Type trait primitives are special builtin constant expressions that can be used 1090by the standard C++ library to facilitate or simplify the implementation of 1091user-facing type traits in the <type_traits> header. 1092 1093They are not intended to be used directly by user code because they are 1094implementation-defined and subject to change -- as such they're tied closely to 1095the supported set of system headers, currently: 1096 1097* LLVM's own libc++ 1098* GNU libstdc++ 1099* The Microsoft standard C++ library 1100 1101Clang supports the `GNU C++ type traits 1102<https://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html>`_ and a subset of the 1103`Microsoft Visual C++ type traits 1104<https://msdn.microsoft.com/en-us/library/ms177194(v=VS.100).aspx>`_, 1105as well as nearly all of the 1106`Embarcadero C++ type traits 1107<http://docwiki.embarcadero.com/RADStudio/Rio/en/Type_Trait_Functions_(C%2B%2B11)_Index>`_. 1108 1109The following type trait primitives are supported by Clang. Those traits marked 1110(C++) provide implementations for type traits specified by the C++ standard; 1111``__X(...)`` has the same semantics and constraints as the corresponding 1112``std::X_t<...>`` or ``std::X_v<...>`` type trait. 1113 1114* ``__array_rank(type)`` (Embarcadero): 1115 Returns the number of levels of array in the type ``type``: 1116 ``0`` if ``type`` is not an array type, and 1117 ``__array_rank(element) + 1`` if ``type`` is an array of ``element``. 1118* ``__array_extent(type, dim)`` (Embarcadero): 1119 The ``dim``'th array bound in the type ``type``, or ``0`` if 1120 ``dim >= __array_rank(type)``. 1121* ``__has_nothrow_assign`` (GNU, Microsoft, Embarcadero): 1122 Deprecated, use ``__is_nothrow_assignable`` instead. 1123* ``__has_nothrow_move_assign`` (GNU, Microsoft): 1124 Deprecated, use ``__is_nothrow_assignable`` instead. 1125* ``__has_nothrow_copy`` (GNU, Microsoft): 1126 Deprecated, use ``__is_nothrow_constructible`` instead. 1127* ``__has_nothrow_constructor`` (GNU, Microsoft): 1128 Deprecated, use ``__is_nothrow_constructible`` instead. 1129* ``__has_trivial_assign`` (GNU, Microsoft, Embarcadero): 1130 Deprecated, use ``__is_trivially_assignable`` instead. 1131* ``__has_trivial_move_assign`` (GNU, Microsoft): 1132 Deprecated, use ``__is_trivially_assignable`` instead. 1133* ``__has_trivial_copy`` (GNU, Microsoft): 1134 Deprecated, use ``__is_trivially_constructible`` instead. 1135* ``__has_trivial_constructor`` (GNU, Microsoft): 1136 Deprecated, use ``__is_trivially_constructible`` instead. 1137* ``__has_trivial_move_constructor`` (GNU, Microsoft): 1138 Deprecated, use ``__is_trivially_constructible`` instead. 1139* ``__has_trivial_destructor`` (GNU, Microsoft, Embarcadero): 1140 Deprecated, use ``__is_trivially_destructible`` instead. 1141* ``__has_unique_object_representations`` (C++, GNU) 1142* ``__has_virtual_destructor`` (C++, GNU, Microsoft, Embarcadero) 1143* ``__is_abstract`` (C++, GNU, Microsoft, Embarcadero) 1144* ``__is_aggregate`` (C++, GNU, Microsoft) 1145* ``__is_arithmetic`` (C++, Embarcadero) 1146* ``__is_array`` (C++, Embarcadero) 1147* ``__is_assignable`` (C++, MSVC 2015) 1148* ``__is_base_of`` (C++, GNU, Microsoft, Embarcadero) 1149* ``__is_class`` (C++, GNU, Microsoft, Embarcadero) 1150* ``__is_complete_type(type)`` (Embarcadero): 1151 Return ``true`` if ``type`` is a complete type. 1152 Warning: this trait is dangerous because it can return different values at 1153 different points in the same program. 1154* ``__is_compound`` (C++, Embarcadero) 1155* ``__is_const`` (C++, Embarcadero) 1156* ``__is_constructible`` (C++, MSVC 2013) 1157* ``__is_convertible`` (C++, Embarcadero) 1158* ``__is_convertible_to`` (Microsoft): 1159 Synonym for ``__is_convertible``. 1160* ``__is_destructible`` (C++, MSVC 2013): 1161 Only available in ``-fms-extensions`` mode. 1162* ``__is_empty`` (C++, GNU, Microsoft, Embarcadero) 1163* ``__is_enum`` (C++, GNU, Microsoft, Embarcadero) 1164* ``__is_final`` (C++, GNU, Microsoft) 1165* ``__is_floating_point`` (C++, Embarcadero) 1166* ``__is_function`` (C++, Embarcadero) 1167* ``__is_fundamental`` (C++, Embarcadero) 1168* ``__is_integral`` (C++, Embarcadero) 1169* ``__is_interface_class`` (Microsoft): 1170 Returns ``false``, even for types defined with ``__interface``. 1171* ``__is_literal`` (Clang): 1172 Synonym for ``__is_literal_type``. 1173* ``__is_literal_type`` (C++, GNU, Microsoft): 1174 Note, the corresponding standard trait was deprecated in C++17 1175 and removed in C++20. 1176* ``__is_lvalue_reference`` (C++, Embarcadero) 1177* ``__is_member_object_pointer`` (C++, Embarcadero) 1178* ``__is_member_function_pointer`` (C++, Embarcadero) 1179* ``__is_member_pointer`` (C++, Embarcadero) 1180* ``__is_nothrow_assignable`` (C++, MSVC 2013) 1181* ``__is_nothrow_constructible`` (C++, MSVC 2013) 1182* ``__is_nothrow_destructible`` (C++, MSVC 2013) 1183 Only available in ``-fms-extensions`` mode. 1184* ``__is_object`` (C++, Embarcadero) 1185* ``__is_pod`` (C++, GNU, Microsoft, Embarcadero): 1186 Note, the corresponding standard trait was deprecated in C++20. 1187* ``__is_pointer`` (C++, Embarcadero) 1188* ``__is_polymorphic`` (C++, GNU, Microsoft, Embarcadero) 1189* ``__is_reference`` (C++, Embarcadero) 1190* ``__is_rvalue_reference`` (C++, Embarcadero) 1191* ``__is_same`` (C++, Embarcadero) 1192* ``__is_same_as`` (GCC): Synonym for ``__is_same``. 1193* ``__is_scalar`` (C++, Embarcadero) 1194* ``__is_sealed`` (Microsoft): 1195 Synonym for ``__is_final``. 1196* ``__is_signed`` (C++, Embarcadero): 1197 Returns false for enumeration types, and returns true for floating-point 1198 types. Note, before Clang 10, returned true for enumeration types if the 1199 underlying type was signed, and returned false for floating-point types. 1200* ``__is_standard_layout`` (C++, GNU, Microsoft, Embarcadero) 1201* ``__is_trivial`` (C++, GNU, Microsoft, Embarcadero) 1202* ``__is_trivially_assignable`` (C++, GNU, Microsoft) 1203* ``__is_trivially_constructible`` (C++, GNU, Microsoft) 1204* ``__is_trivially_copyable`` (C++, GNU, Microsoft) 1205* ``__is_trivially_destructible`` (C++, MSVC 2013) 1206* ``__is_union`` (C++, GNU, Microsoft, Embarcadero) 1207* ``__is_unsigned`` (C++, Embarcadero): 1208 Returns false for enumeration types. Note, before Clang 13, returned true for 1209 enumeration types if the underlying type was unsigned. 1210* ``__is_void`` (C++, Embarcadero) 1211* ``__is_volatile`` (C++, Embarcadero) 1212* ``__reference_binds_to_temporary(T, U)`` (Clang): Determines whether a 1213 reference of type ``T`` bound to an expression of type ``U`` would bind to a 1214 materialized temporary object. If ``T`` is not a reference type the result 1215 is false. Note this trait will also return false when the initialization of 1216 ``T`` from ``U`` is ill-formed. 1217* ``__underlying_type`` (C++, GNU, Microsoft) 1218 1219In addition, the following expression traits are supported: 1220 1221* ``__is_lvalue_expr(e)`` (Embarcadero): 1222 Returns true if ``e`` is an lvalue expression. 1223 Deprecated, use ``__is_lvalue_reference(decltype((e)))`` instead. 1224* ``__is_rvalue_expr(e)`` (Embarcadero): 1225 Returns true if ``e`` is a prvalue expression. 1226 Deprecated, use ``!__is_reference(decltype((e)))`` instead. 1227 1228There are multiple ways to detect support for a type trait ``__X`` in the 1229compiler, depending on the oldest version of Clang you wish to support. 1230 1231* From Clang 10 onwards, ``__has_builtin(__X)`` can be used. 1232* From Clang 6 onwards, ``!__is_identifier(__X)`` can be used. 1233* From Clang 3 onwards, ``__has_feature(X)`` can be used, but only supports 1234 the following traits: 1235 1236 * ``__has_nothrow_assign`` 1237 * ``__has_nothrow_copy`` 1238 * ``__has_nothrow_constructor`` 1239 * ``__has_trivial_assign`` 1240 * ``__has_trivial_copy`` 1241 * ``__has_trivial_constructor`` 1242 * ``__has_trivial_destructor`` 1243 * ``__has_virtual_destructor`` 1244 * ``__is_abstract`` 1245 * ``__is_base_of`` 1246 * ``__is_class`` 1247 * ``__is_constructible`` 1248 * ``__is_convertible_to`` 1249 * ``__is_empty`` 1250 * ``__is_enum`` 1251 * ``__is_final`` 1252 * ``__is_literal`` 1253 * ``__is_standard_layout`` 1254 * ``__is_pod`` 1255 * ``__is_polymorphic`` 1256 * ``__is_sealed`` 1257 * ``__is_trivial`` 1258 * ``__is_trivially_assignable`` 1259 * ``__is_trivially_constructible`` 1260 * ``__is_trivially_copyable`` 1261 * ``__is_union`` 1262 * ``__underlying_type`` 1263 1264A simplistic usage example as might be seen in standard C++ headers follows: 1265 1266.. code-block:: c++ 1267 1268 #if __has_builtin(__is_convertible_to) 1269 template<typename From, typename To> 1270 struct is_convertible_to { 1271 static const bool value = __is_convertible_to(From, To); 1272 }; 1273 #else 1274 // Emulate type trait for compatibility with other compilers. 1275 #endif 1276 1277Blocks 1278====== 1279 1280The syntax and high level language feature description is in 1281:doc:`BlockLanguageSpec<BlockLanguageSpec>`. Implementation and ABI details for 1282the clang implementation are in :doc:`Block-ABI-Apple<Block-ABI-Apple>`. 1283 1284Query for this feature with ``__has_extension(blocks)``. 1285 1286ASM Goto with Output Constraints 1287================================ 1288 1289In addition to the functionality provided by `GCC's extended 1290assembly <https://gcc.gnu.org/onlinedocs/gcc/Extended-Asm.html>`_, clang 1291supports output constraints with the `goto` form. 1292 1293The goto form of GCC's extended assembly allows the programmer to branch to a C 1294label from within an inline assembly block. Clang extends this behavior by 1295allowing the programmer to use output constraints: 1296 1297.. code-block:: c++ 1298 1299 int foo(int x) { 1300 int y; 1301 asm goto("# %0 %1 %l2" : "=r"(y) : "r"(x) : : err); 1302 return y; 1303 err: 1304 return -1; 1305 } 1306 1307It's important to note that outputs are valid only on the "fallthrough" branch. 1308Using outputs on an indirect branch may result in undefined behavior. For 1309example, in the function above, use of the value assigned to `y` in the `err` 1310block is undefined behavior. 1311 1312Query for this feature with ``__has_extension(gnu_asm_goto_with_outputs)``. 1313 1314Objective-C Features 1315==================== 1316 1317Related result types 1318-------------------- 1319 1320According to Cocoa conventions, Objective-C methods with certain names 1321("``init``", "``alloc``", etc.) always return objects that are an instance of 1322the receiving class's type. Such methods are said to have a "related result 1323type", meaning that a message send to one of these methods will have the same 1324static type as an instance of the receiver class. For example, given the 1325following classes: 1326 1327.. code-block:: objc 1328 1329 @interface NSObject 1330 + (id)alloc; 1331 - (id)init; 1332 @end 1333 1334 @interface NSArray : NSObject 1335 @end 1336 1337and this common initialization pattern 1338 1339.. code-block:: objc 1340 1341 NSArray *array = [[NSArray alloc] init]; 1342 1343the type of the expression ``[NSArray alloc]`` is ``NSArray*`` because 1344``alloc`` implicitly has a related result type. Similarly, the type of the 1345expression ``[[NSArray alloc] init]`` is ``NSArray*``, since ``init`` has a 1346related result type and its receiver is known to have the type ``NSArray *``. 1347If neither ``alloc`` nor ``init`` had a related result type, the expressions 1348would have had type ``id``, as declared in the method signature. 1349 1350A method with a related result type can be declared by using the type 1351``instancetype`` as its result type. ``instancetype`` is a contextual keyword 1352that is only permitted in the result type of an Objective-C method, e.g. 1353 1354.. code-block:: objc 1355 1356 @interface A 1357 + (instancetype)constructAnA; 1358 @end 1359 1360The related result type can also be inferred for some methods. To determine 1361whether a method has an inferred related result type, the first word in the 1362camel-case selector (e.g., "``init``" in "``initWithObjects``") is considered, 1363and the method will have a related result type if its return type is compatible 1364with the type of its class and if: 1365 1366* the first word is "``alloc``" or "``new``", and the method is a class method, 1367 or 1368 1369* the first word is "``autorelease``", "``init``", "``retain``", or "``self``", 1370 and the method is an instance method. 1371 1372If a method with a related result type is overridden by a subclass method, the 1373subclass method must also return a type that is compatible with the subclass 1374type. For example: 1375 1376.. code-block:: objc 1377 1378 @interface NSString : NSObject 1379 - (NSUnrelated *)init; // incorrect usage: NSUnrelated is not NSString or a superclass of NSString 1380 @end 1381 1382Related result types only affect the type of a message send or property access 1383via the given method. In all other respects, a method with a related result 1384type is treated the same way as method that returns ``id``. 1385 1386Use ``__has_feature(objc_instancetype)`` to determine whether the 1387``instancetype`` contextual keyword is available. 1388 1389Automatic reference counting 1390---------------------------- 1391 1392Clang provides support for :doc:`automated reference counting 1393<AutomaticReferenceCounting>` in Objective-C, which eliminates the need 1394for manual ``retain``/``release``/``autorelease`` message sends. There are three 1395feature macros associated with automatic reference counting: 1396``__has_feature(objc_arc)`` indicates the availability of automated reference 1397counting in general, while ``__has_feature(objc_arc_weak)`` indicates that 1398automated reference counting also includes support for ``__weak`` pointers to 1399Objective-C objects. ``__has_feature(objc_arc_fields)`` indicates that C structs 1400are allowed to have fields that are pointers to Objective-C objects managed by 1401automatic reference counting. 1402 1403.. _objc-weak: 1404 1405Weak references 1406--------------- 1407 1408Clang supports ARC-style weak and unsafe references in Objective-C even 1409outside of ARC mode. Weak references must be explicitly enabled with 1410the ``-fobjc-weak`` option; use ``__has_feature((objc_arc_weak))`` 1411to test whether they are enabled. Unsafe references are enabled 1412unconditionally. ARC-style weak and unsafe references cannot be used 1413when Objective-C garbage collection is enabled. 1414 1415Except as noted below, the language rules for the ``__weak`` and 1416``__unsafe_unretained`` qualifiers (and the ``weak`` and 1417``unsafe_unretained`` property attributes) are just as laid out 1418in the :doc:`ARC specification <AutomaticReferenceCounting>`. 1419In particular, note that some classes do not support forming weak 1420references to their instances, and note that special care must be 1421taken when storing weak references in memory where initialization 1422and deinitialization are outside the responsibility of the compiler 1423(such as in ``malloc``-ed memory). 1424 1425Loading from a ``__weak`` variable always implicitly retains the 1426loaded value. In non-ARC modes, this retain is normally balanced 1427by an implicit autorelease. This autorelease can be suppressed 1428by performing the load in the receiver position of a ``-retain`` 1429message send (e.g. ``[weakReference retain]``); note that this performs 1430only a single retain (the retain done when primitively loading from 1431the weak reference). 1432 1433For the most part, ``__unsafe_unretained`` in non-ARC modes is just the 1434default behavior of variables and therefore is not needed. However, 1435it does have an effect on the semantics of block captures: normally, 1436copying a block which captures an Objective-C object or block pointer 1437causes the captured pointer to be retained or copied, respectively, 1438but that behavior is suppressed when the captured variable is qualified 1439with ``__unsafe_unretained``. 1440 1441Note that the ``__weak`` qualifier formerly meant the GC qualifier in 1442all non-ARC modes and was silently ignored outside of GC modes. It now 1443means the ARC-style qualifier in all non-GC modes and is no longer 1444allowed if not enabled by either ``-fobjc-arc`` or ``-fobjc-weak``. 1445It is expected that ``-fobjc-weak`` will eventually be enabled by default 1446in all non-GC Objective-C modes. 1447 1448.. _objc-fixed-enum: 1449 1450Enumerations with a fixed underlying type 1451----------------------------------------- 1452 1453Clang provides support for C++11 enumerations with a fixed underlying type 1454within Objective-C. For example, one can write an enumeration type as: 1455 1456.. code-block:: c++ 1457 1458 typedef enum : unsigned char { Red, Green, Blue } Color; 1459 1460This specifies that the underlying type, which is used to store the enumeration 1461value, is ``unsigned char``. 1462 1463Use ``__has_feature(objc_fixed_enum)`` to determine whether support for fixed 1464underlying types is available in Objective-C. 1465 1466Interoperability with C++11 lambdas 1467----------------------------------- 1468 1469Clang provides interoperability between C++11 lambdas and blocks-based APIs, by 1470permitting a lambda to be implicitly converted to a block pointer with the 1471corresponding signature. For example, consider an API such as ``NSArray``'s 1472array-sorting method: 1473 1474.. code-block:: objc 1475 1476 - (NSArray *)sortedArrayUsingComparator:(NSComparator)cmptr; 1477 1478``NSComparator`` is simply a typedef for the block pointer ``NSComparisonResult 1479(^)(id, id)``, and parameters of this type are generally provided with block 1480literals as arguments. However, one can also use a C++11 lambda so long as it 1481provides the same signature (in this case, accepting two parameters of type 1482``id`` and returning an ``NSComparisonResult``): 1483 1484.. code-block:: objc 1485 1486 NSArray *array = @[@"string 1", @"string 21", @"string 12", @"String 11", 1487 @"String 02"]; 1488 const NSStringCompareOptions comparisonOptions 1489 = NSCaseInsensitiveSearch | NSNumericSearch | 1490 NSWidthInsensitiveSearch | NSForcedOrderingSearch; 1491 NSLocale *currentLocale = [NSLocale currentLocale]; 1492 NSArray *sorted 1493 = [array sortedArrayUsingComparator:[=](id s1, id s2) -> NSComparisonResult { 1494 NSRange string1Range = NSMakeRange(0, [s1 length]); 1495 return [s1 compare:s2 options:comparisonOptions 1496 range:string1Range locale:currentLocale]; 1497 }]; 1498 NSLog(@"sorted: %@", sorted); 1499 1500This code relies on an implicit conversion from the type of the lambda 1501expression (an unnamed, local class type called the *closure type*) to the 1502corresponding block pointer type. The conversion itself is expressed by a 1503conversion operator in that closure type that produces a block pointer with the 1504same signature as the lambda itself, e.g., 1505 1506.. code-block:: objc 1507 1508 operator NSComparisonResult (^)(id, id)() const; 1509 1510This conversion function returns a new block that simply forwards the two 1511parameters to the lambda object (which it captures by copy), then returns the 1512result. The returned block is first copied (with ``Block_copy``) and then 1513autoreleased. As an optimization, if a lambda expression is immediately 1514converted to a block pointer (as in the first example, above), then the block 1515is not copied and autoreleased: rather, it is given the same lifetime as a 1516block literal written at that point in the program, which avoids the overhead 1517of copying a block to the heap in the common case. 1518 1519The conversion from a lambda to a block pointer is only available in 1520Objective-C++, and not in C++ with blocks, due to its use of Objective-C memory 1521management (autorelease). 1522 1523Object Literals and Subscripting 1524-------------------------------- 1525 1526Clang provides support for :doc:`Object Literals and Subscripting 1527<ObjectiveCLiterals>` in Objective-C, which simplifies common Objective-C 1528programming patterns, makes programs more concise, and improves the safety of 1529container creation. There are several feature macros associated with object 1530literals and subscripting: ``__has_feature(objc_array_literals)`` tests the 1531availability of array literals; ``__has_feature(objc_dictionary_literals)`` 1532tests the availability of dictionary literals; 1533``__has_feature(objc_subscripting)`` tests the availability of object 1534subscripting. 1535 1536Objective-C Autosynthesis of Properties 1537--------------------------------------- 1538 1539Clang provides support for autosynthesis of declared properties. Using this 1540feature, clang provides default synthesis of those properties not declared 1541@dynamic and not having user provided backing getter and setter methods. 1542``__has_feature(objc_default_synthesize_properties)`` checks for availability 1543of this feature in version of clang being used. 1544 1545.. _langext-objc-retain-release: 1546 1547Objective-C retaining behavior attributes 1548----------------------------------------- 1549 1550In Objective-C, functions and methods are generally assumed to follow the 1551`Cocoa Memory Management 1552<https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmRules.html>`_ 1553conventions for ownership of object arguments and 1554return values. However, there are exceptions, and so Clang provides attributes 1555to allow these exceptions to be documented. This are used by ARC and the 1556`static analyzer <https://clang-analyzer.llvm.org>`_ Some exceptions may be 1557better described using the ``objc_method_family`` attribute instead. 1558 1559**Usage**: The ``ns_returns_retained``, ``ns_returns_not_retained``, 1560``ns_returns_autoreleased``, ``cf_returns_retained``, and 1561``cf_returns_not_retained`` attributes can be placed on methods and functions 1562that return Objective-C or CoreFoundation objects. They are commonly placed at 1563the end of a function prototype or method declaration: 1564 1565.. code-block:: objc 1566 1567 id foo() __attribute__((ns_returns_retained)); 1568 1569 - (NSString *)bar:(int)x __attribute__((ns_returns_retained)); 1570 1571The ``*_returns_retained`` attributes specify that the returned object has a +1 1572retain count. The ``*_returns_not_retained`` attributes specify that the return 1573object has a +0 retain count, even if the normal convention for its selector 1574would be +1. ``ns_returns_autoreleased`` specifies that the returned object is 1575+0, but is guaranteed to live at least as long as the next flush of an 1576autorelease pool. 1577 1578**Usage**: The ``ns_consumed`` and ``cf_consumed`` attributes can be placed on 1579an parameter declaration; they specify that the argument is expected to have a 1580+1 retain count, which will be balanced in some way by the function or method. 1581The ``ns_consumes_self`` attribute can only be placed on an Objective-C 1582method; it specifies that the method expects its ``self`` parameter to have a 1583+1 retain count, which it will balance in some way. 1584 1585.. code-block:: objc 1586 1587 void foo(__attribute__((ns_consumed)) NSString *string); 1588 1589 - (void) bar __attribute__((ns_consumes_self)); 1590 - (void) baz:(id) __attribute__((ns_consumed)) x; 1591 1592Further examples of these attributes are available in the static analyzer's `list of annotations for analysis 1593<https://clang-analyzer.llvm.org/annotations.html#cocoa_mem>`_. 1594 1595Query for these features with ``__has_attribute(ns_consumed)``, 1596``__has_attribute(ns_returns_retained)``, etc. 1597 1598Objective-C @available 1599---------------------- 1600 1601It is possible to use the newest SDK but still build a program that can run on 1602older versions of macOS and iOS by passing ``-mmacosx-version-min=`` / 1603``-miphoneos-version-min=``. 1604 1605Before LLVM 5.0, when calling a function that exists only in the OS that's 1606newer than the target OS (as determined by the minimum deployment version), 1607programmers had to carefully check if the function exists at runtime, using 1608null checks for weakly-linked C functions, ``+class`` for Objective-C classes, 1609and ``-respondsToSelector:`` or ``+instancesRespondToSelector:`` for 1610Objective-C methods. If such a check was missed, the program would compile 1611fine, run fine on newer systems, but crash on older systems. 1612 1613As of LLVM 5.0, ``-Wunguarded-availability`` uses the `availability attributes 1614<https://clang.llvm.org/docs/AttributeReference.html#availability>`_ together 1615with the new ``@available()`` keyword to assist with this issue. 1616When a method that's introduced in the OS newer than the target OS is called, a 1617-Wunguarded-availability warning is emitted if that call is not guarded: 1618 1619.. code-block:: objc 1620 1621 void my_fun(NSSomeClass* var) { 1622 // If fancyNewMethod was added in e.g. macOS 10.12, but the code is 1623 // built with -mmacosx-version-min=10.11, then this unconditional call 1624 // will emit a -Wunguarded-availability warning: 1625 [var fancyNewMethod]; 1626 } 1627 1628To fix the warning and to avoid the crash on macOS 10.11, wrap it in 1629``if(@available())``: 1630 1631.. code-block:: objc 1632 1633 void my_fun(NSSomeClass* var) { 1634 if (@available(macOS 10.12, *)) { 1635 [var fancyNewMethod]; 1636 } else { 1637 // Put fallback behavior for old macOS versions (and for non-mac 1638 // platforms) here. 1639 } 1640 } 1641 1642The ``*`` is required and means that platforms not explicitly listed will take 1643the true branch, and the compiler will emit ``-Wunguarded-availability`` 1644warnings for unlisted platforms based on those platform's deployment target. 1645More than one platform can be listed in ``@available()``: 1646 1647.. code-block:: objc 1648 1649 void my_fun(NSSomeClass* var) { 1650 if (@available(macOS 10.12, iOS 10, *)) { 1651 [var fancyNewMethod]; 1652 } 1653 } 1654 1655If the caller of ``my_fun()`` already checks that ``my_fun()`` is only called 1656on 10.12, then add an `availability attribute 1657<https://clang.llvm.org/docs/AttributeReference.html#availability>`_ to it, 1658which will also suppress the warning and require that calls to my_fun() are 1659checked: 1660 1661.. code-block:: objc 1662 1663 API_AVAILABLE(macos(10.12)) void my_fun(NSSomeClass* var) { 1664 [var fancyNewMethod]; // Now ok. 1665 } 1666 1667``@available()`` is only available in Objective-C code. To use the feature 1668in C and C++ code, use the ``__builtin_available()`` spelling instead. 1669 1670If existing code uses null checks or ``-respondsToSelector:``, it should 1671be changed to use ``@available()`` (or ``__builtin_available``) instead. 1672 1673``-Wunguarded-availability`` is disabled by default, but 1674``-Wunguarded-availability-new``, which only emits this warning for APIs 1675that have been introduced in macOS >= 10.13, iOS >= 11, watchOS >= 4 and 1676tvOS >= 11, is enabled by default. 1677 1678.. _langext-overloading: 1679 1680Objective-C++ ABI: protocol-qualifier mangling of parameters 1681------------------------------------------------------------ 1682 1683Starting with LLVM 3.4, Clang produces a new mangling for parameters whose 1684type is a qualified-``id`` (e.g., ``id<Foo>``). This mangling allows such 1685parameters to be differentiated from those with the regular unqualified ``id`` 1686type. 1687 1688This was a non-backward compatible mangling change to the ABI. This change 1689allows proper overloading, and also prevents mangling conflicts with template 1690parameters of protocol-qualified type. 1691 1692Query the presence of this new mangling with 1693``__has_feature(objc_protocol_qualifier_mangling)``. 1694 1695Initializer lists for complex numbers in C 1696========================================== 1697 1698clang supports an extension which allows the following in C: 1699 1700.. code-block:: c++ 1701 1702 #include <math.h> 1703 #include <complex.h> 1704 complex float x = { 1.0f, INFINITY }; // Init to (1, Inf) 1705 1706This construct is useful because there is no way to separately initialize the 1707real and imaginary parts of a complex variable in standard C, given that clang 1708does not support ``_Imaginary``. (Clang also supports the ``__real__`` and 1709``__imag__`` extensions from gcc, which help in some cases, but are not usable 1710in static initializers.) 1711 1712Note that this extension does not allow eliding the braces; the meaning of the 1713following two lines is different: 1714 1715.. code-block:: c++ 1716 1717 complex float x[] = { { 1.0f, 1.0f } }; // [0] = (1, 1) 1718 complex float x[] = { 1.0f, 1.0f }; // [0] = (1, 0), [1] = (1, 0) 1719 1720This extension also works in C++ mode, as far as that goes, but does not apply 1721to the C++ ``std::complex``. (In C++11, list initialization allows the same 1722syntax to be used with ``std::complex`` with the same meaning.) 1723 1724For GCC compatibility, ``__builtin_complex(re, im)`` can also be used to 1725construct a complex number from the given real and imaginary components. 1726 1727OpenCL Features 1728=============== 1729 1730Clang supports internal OpenCL extensions documented below. 1731 1732``__cl_clang_function_pointers`` 1733-------------------------------- 1734 1735With this extension it is possible to enable various language features that 1736are relying on function pointers using regular OpenCL extension pragma 1737mechanism detailed in `the OpenCL Extension Specification, 1738section 1.2 1739<https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_Ext.html#extensions-overview>`_. 1740 1741In C++ for OpenCL this also enables: 1742 1743- Use of member function pointers; 1744 1745- Unrestricted use of references to functions; 1746 1747- Virtual member functions. 1748 1749Such functionality is not conformant and does not guarantee to compile 1750correctly in any circumstances. It can be used if: 1751 1752- the kernel source does not contain call expressions to (member-) function 1753 pointers, or virtual functions. For example this extension can be used in 1754 metaprogramming algorithms to be able to specify/detect types generically. 1755 1756- the generated kernel binary does not contain indirect calls because they 1757 are eliminated using compiler optimizations e.g. devirtualization. 1758 1759- the selected target supports the function pointer like functionality e.g. 1760 most CPU targets. 1761 1762**Example of Use**: 1763 1764.. code-block:: c++ 1765 1766 #pragma OPENCL EXTENSION __cl_clang_function_pointers : enable 1767 void foo() 1768 { 1769 void (*fp)(); // compiled - no diagnostic generated 1770 } 1771 1772 #pragma OPENCL EXTENSION __cl_clang_function_pointers : disable 1773 void bar() 1774 { 1775 void (*fp)(); // error - pointers to function are not allowed 1776 } 1777 1778``__cl_clang_variadic_functions`` 1779--------------------------------- 1780 1781With this extension it is possible to enable variadic arguments in functions 1782using regular OpenCL extension pragma mechanism detailed in `the OpenCL 1783Extension Specification, section 1.2 1784<https://www.khronos.org/registry/OpenCL/specs/3.0-unified/html/OpenCL_Ext.html#extensions-overview>`_. 1785 1786This is not conformant behavior and it can only be used portably when the 1787functions with variadic prototypes do not get generated in binary e.g. the 1788variadic prototype is used to specify a function type with any number of 1789arguments in metaprogramming algorithms in C++ for OpenCL. 1790 1791This extensions can also be used when the kernel code is intended for targets 1792supporting the variadic arguments e.g. majority of CPU targets. 1793 1794**Example of Use**: 1795 1796.. code-block:: c++ 1797 1798 #pragma OPENCL EXTENSION __cl_clang_variadic_functions : enable 1799 void foo(int a, ...); // compiled - no diagnostic generated 1800 1801 #pragma OPENCL EXTENSION __cl_clang_variadic_functions : disable 1802 void bar(int a, ...); // error - variadic prototype is not allowed 1803 1804Builtin Functions 1805================= 1806 1807Clang supports a number of builtin library functions with the same syntax as 1808GCC, including things like ``__builtin_nan``, ``__builtin_constant_p``, 1809``__builtin_choose_expr``, ``__builtin_types_compatible_p``, 1810``__builtin_assume_aligned``, ``__sync_fetch_and_add``, etc. In addition to 1811the GCC builtins, Clang supports a number of builtins that GCC does not, which 1812are listed here. 1813 1814Please note that Clang does not and will not support all of the GCC builtins 1815for vector operations. Instead of using builtins, you should use the functions 1816defined in target-specific header files like ``<xmmintrin.h>``, which define 1817portable wrappers for these. Many of the Clang versions of these functions are 1818implemented directly in terms of :ref:`extended vector support 1819<langext-vectors>` instead of builtins, in order to reduce the number of 1820builtins that we need to implement. 1821 1822.. _langext-__builtin_assume: 1823 1824``__builtin_assume`` 1825------------------------------ 1826 1827``__builtin_assume`` is used to provide the optimizer with a boolean 1828invariant that is defined to be true. 1829 1830**Syntax**: 1831 1832.. code-block:: c++ 1833 1834 __builtin_assume(bool) 1835 1836**Example of Use**: 1837 1838.. code-block:: c++ 1839 1840 int foo(int x) { 1841 __builtin_assume(x != 0); 1842 1843 // The optimizer may short-circuit this check using the invariant. 1844 if (x == 0) 1845 return do_something(); 1846 1847 return do_something_else(); 1848 } 1849 1850**Description**: 1851 1852The boolean argument to this function is defined to be true. The optimizer may 1853analyze the form of the expression provided as the argument and deduce from 1854that information used to optimize the program. If the condition is violated 1855during execution, the behavior is undefined. The argument itself is never 1856evaluated, so any side effects of the expression will be discarded. 1857 1858Query for this feature with ``__has_builtin(__builtin_assume)``. 1859 1860``__builtin_readcyclecounter`` 1861------------------------------ 1862 1863``__builtin_readcyclecounter`` is used to access the cycle counter register (or 1864a similar low-latency, high-accuracy clock) on those targets that support it. 1865 1866**Syntax**: 1867 1868.. code-block:: c++ 1869 1870 __builtin_readcyclecounter() 1871 1872**Example of Use**: 1873 1874.. code-block:: c++ 1875 1876 unsigned long long t0 = __builtin_readcyclecounter(); 1877 do_something(); 1878 unsigned long long t1 = __builtin_readcyclecounter(); 1879 unsigned long long cycles_to_do_something = t1 - t0; // assuming no overflow 1880 1881**Description**: 1882 1883The ``__builtin_readcyclecounter()`` builtin returns the cycle counter value, 1884which may be either global or process/thread-specific depending on the target. 1885As the backing counters often overflow quickly (on the order of seconds) this 1886should only be used for timing small intervals. When not supported by the 1887target, the return value is always zero. This builtin takes no arguments and 1888produces an unsigned long long result. 1889 1890Query for this feature with ``__has_builtin(__builtin_readcyclecounter)``. Note 1891that even if present, its use may depend on run-time privilege or other OS 1892controlled state. 1893 1894``__builtin_dump_struct`` 1895------------------------- 1896 1897**Syntax**: 1898 1899.. code-block:: c++ 1900 1901 __builtin_dump_struct(&some_struct, &some_printf_func); 1902 1903**Examples**: 1904 1905.. code-block:: c++ 1906 1907 struct S { 1908 int x, y; 1909 float f; 1910 struct T { 1911 int i; 1912 } t; 1913 }; 1914 1915 void func(struct S *s) { 1916 __builtin_dump_struct(s, &printf); 1917 } 1918 1919Example output: 1920 1921.. code-block:: none 1922 1923 struct S { 1924 int i : 100 1925 int j : 42 1926 float f : 3.14159 1927 struct T t : struct T { 1928 int i : 1997 1929 } 1930 } 1931 1932**Description**: 1933 1934The '``__builtin_dump_struct``' function is used to print the fields of a simple 1935structure and their values for debugging purposes. The builtin accepts a pointer 1936to a structure to dump the fields of, and a pointer to a formatted output 1937function whose signature must be: ``int (*)(const char *, ...)`` and must 1938support the format specifiers used by ``printf()``. 1939 1940.. _langext-__builtin_shufflevector: 1941 1942``__builtin_shufflevector`` 1943--------------------------- 1944 1945``__builtin_shufflevector`` is used to express generic vector 1946permutation/shuffle/swizzle operations. This builtin is also very important 1947for the implementation of various target-specific header files like 1948``<xmmintrin.h>``. 1949 1950**Syntax**: 1951 1952.. code-block:: c++ 1953 1954 __builtin_shufflevector(vec1, vec2, index1, index2, ...) 1955 1956**Examples**: 1957 1958.. code-block:: c++ 1959 1960 // identity operation - return 4-element vector v1. 1961 __builtin_shufflevector(v1, v1, 0, 1, 2, 3) 1962 1963 // "Splat" element 0 of V1 into a 4-element result. 1964 __builtin_shufflevector(V1, V1, 0, 0, 0, 0) 1965 1966 // Reverse 4-element vector V1. 1967 __builtin_shufflevector(V1, V1, 3, 2, 1, 0) 1968 1969 // Concatenate every other element of 4-element vectors V1 and V2. 1970 __builtin_shufflevector(V1, V2, 0, 2, 4, 6) 1971 1972 // Concatenate every other element of 8-element vectors V1 and V2. 1973 __builtin_shufflevector(V1, V2, 0, 2, 4, 6, 8, 10, 12, 14) 1974 1975 // Shuffle v1 with some elements being undefined 1976 __builtin_shufflevector(v1, v1, 3, -1, 1, -1) 1977 1978**Description**: 1979 1980The first two arguments to ``__builtin_shufflevector`` are vectors that have 1981the same element type. The remaining arguments are a list of integers that 1982specify the elements indices of the first two vectors that should be extracted 1983and returned in a new vector. These element indices are numbered sequentially 1984starting with the first vector, continuing into the second vector. Thus, if 1985``vec1`` is a 4-element vector, index 5 would refer to the second element of 1986``vec2``. An index of -1 can be used to indicate that the corresponding element 1987in the returned vector is a don't care and can be optimized by the backend. 1988 1989The result of ``__builtin_shufflevector`` is a vector with the same element 1990type as ``vec1``/``vec2`` but that has an element count equal to the number of 1991indices specified. 1992 1993Query for this feature with ``__has_builtin(__builtin_shufflevector)``. 1994 1995.. _langext-__builtin_convertvector: 1996 1997``__builtin_convertvector`` 1998--------------------------- 1999 2000``__builtin_convertvector`` is used to express generic vector 2001type-conversion operations. The input vector and the output vector 2002type must have the same number of elements. 2003 2004**Syntax**: 2005 2006.. code-block:: c++ 2007 2008 __builtin_convertvector(src_vec, dst_vec_type) 2009 2010**Examples**: 2011 2012.. code-block:: c++ 2013 2014 typedef double vector4double __attribute__((__vector_size__(32))); 2015 typedef float vector4float __attribute__((__vector_size__(16))); 2016 typedef short vector4short __attribute__((__vector_size__(8))); 2017 vector4float vf; vector4short vs; 2018 2019 // convert from a vector of 4 floats to a vector of 4 doubles. 2020 __builtin_convertvector(vf, vector4double) 2021 // equivalent to: 2022 (vector4double) { (double) vf[0], (double) vf[1], (double) vf[2], (double) vf[3] } 2023 2024 // convert from a vector of 4 shorts to a vector of 4 floats. 2025 __builtin_convertvector(vs, vector4float) 2026 // equivalent to: 2027 (vector4float) { (float) vs[0], (float) vs[1], (float) vs[2], (float) vs[3] } 2028 2029**Description**: 2030 2031The first argument to ``__builtin_convertvector`` is a vector, and the second 2032argument is a vector type with the same number of elements as the first 2033argument. 2034 2035The result of ``__builtin_convertvector`` is a vector with the same element 2036type as the second argument, with a value defined in terms of the action of a 2037C-style cast applied to each element of the first argument. 2038 2039Query for this feature with ``__has_builtin(__builtin_convertvector)``. 2040 2041``__builtin_bitreverse`` 2042------------------------ 2043 2044* ``__builtin_bitreverse8`` 2045* ``__builtin_bitreverse16`` 2046* ``__builtin_bitreverse32`` 2047* ``__builtin_bitreverse64`` 2048 2049**Syntax**: 2050 2051.. code-block:: c++ 2052 2053 __builtin_bitreverse32(x) 2054 2055**Examples**: 2056 2057.. code-block:: c++ 2058 2059 uint8_t rev_x = __builtin_bitreverse8(x); 2060 uint16_t rev_x = __builtin_bitreverse16(x); 2061 uint32_t rev_y = __builtin_bitreverse32(y); 2062 uint64_t rev_z = __builtin_bitreverse64(z); 2063 2064**Description**: 2065 2066The '``__builtin_bitreverse``' family of builtins is used to reverse 2067the bitpattern of an integer value; for example ``0b10110110`` becomes 2068``0b01101101``. These builtins can be used within constant expressions. 2069 2070``__builtin_rotateleft`` 2071------------------------ 2072 2073* ``__builtin_rotateleft8`` 2074* ``__builtin_rotateleft16`` 2075* ``__builtin_rotateleft32`` 2076* ``__builtin_rotateleft64`` 2077 2078**Syntax**: 2079 2080.. code-block:: c++ 2081 2082 __builtin_rotateleft32(x, y) 2083 2084**Examples**: 2085 2086.. code-block:: c++ 2087 2088 uint8_t rot_x = __builtin_rotateleft8(x, y); 2089 uint16_t rot_x = __builtin_rotateleft16(x, y); 2090 uint32_t rot_x = __builtin_rotateleft32(x, y); 2091 uint64_t rot_x = __builtin_rotateleft64(x, y); 2092 2093**Description**: 2094 2095The '``__builtin_rotateleft``' family of builtins is used to rotate 2096the bits in the first argument by the amount in the second argument. 2097For example, ``0b10000110`` rotated left by 11 becomes ``0b00110100``. 2098The shift value is treated as an unsigned amount modulo the size of 2099the arguments. Both arguments and the result have the bitwidth specified 2100by the name of the builtin. These builtins can be used within constant 2101expressions. 2102 2103``__builtin_rotateright`` 2104------------------------- 2105 2106* ``__builtin_rotateright8`` 2107* ``__builtin_rotateright16`` 2108* ``__builtin_rotateright32`` 2109* ``__builtin_rotateright64`` 2110 2111**Syntax**: 2112 2113.. code-block:: c++ 2114 2115 __builtin_rotateright32(x, y) 2116 2117**Examples**: 2118 2119.. code-block:: c++ 2120 2121 uint8_t rot_x = __builtin_rotateright8(x, y); 2122 uint16_t rot_x = __builtin_rotateright16(x, y); 2123 uint32_t rot_x = __builtin_rotateright32(x, y); 2124 uint64_t rot_x = __builtin_rotateright64(x, y); 2125 2126**Description**: 2127 2128The '``__builtin_rotateright``' family of builtins is used to rotate 2129the bits in the first argument by the amount in the second argument. 2130For example, ``0b10000110`` rotated right by 3 becomes ``0b11010000``. 2131The shift value is treated as an unsigned amount modulo the size of 2132the arguments. Both arguments and the result have the bitwidth specified 2133by the name of the builtin. These builtins can be used within constant 2134expressions. 2135 2136``__builtin_unreachable`` 2137------------------------- 2138 2139``__builtin_unreachable`` is used to indicate that a specific point in the 2140program cannot be reached, even if the compiler might otherwise think it can. 2141This is useful to improve optimization and eliminates certain warnings. For 2142example, without the ``__builtin_unreachable`` in the example below, the 2143compiler assumes that the inline asm can fall through and prints a "function 2144declared '``noreturn``' should not return" warning. 2145 2146**Syntax**: 2147 2148.. code-block:: c++ 2149 2150 __builtin_unreachable() 2151 2152**Example of use**: 2153 2154.. code-block:: c++ 2155 2156 void myabort(void) __attribute__((noreturn)); 2157 void myabort(void) { 2158 asm("int3"); 2159 __builtin_unreachable(); 2160 } 2161 2162**Description**: 2163 2164The ``__builtin_unreachable()`` builtin has completely undefined behavior. 2165Since it has undefined behavior, it is a statement that it is never reached and 2166the optimizer can take advantage of this to produce better code. This builtin 2167takes no arguments and produces a void result. 2168 2169Query for this feature with ``__has_builtin(__builtin_unreachable)``. 2170 2171``__builtin_unpredictable`` 2172--------------------------- 2173 2174``__builtin_unpredictable`` is used to indicate that a branch condition is 2175unpredictable by hardware mechanisms such as branch prediction logic. 2176 2177**Syntax**: 2178 2179.. code-block:: c++ 2180 2181 __builtin_unpredictable(long long) 2182 2183**Example of use**: 2184 2185.. code-block:: c++ 2186 2187 if (__builtin_unpredictable(x > 0)) { 2188 foo(); 2189 } 2190 2191**Description**: 2192 2193The ``__builtin_unpredictable()`` builtin is expected to be used with control 2194flow conditions such as in ``if`` and ``switch`` statements. 2195 2196Query for this feature with ``__has_builtin(__builtin_unpredictable)``. 2197 2198``__sync_swap`` 2199--------------- 2200 2201``__sync_swap`` is used to atomically swap integers or pointers in memory. 2202 2203**Syntax**: 2204 2205.. code-block:: c++ 2206 2207 type __sync_swap(type *ptr, type value, ...) 2208 2209**Example of Use**: 2210 2211.. code-block:: c++ 2212 2213 int old_value = __sync_swap(&value, new_value); 2214 2215**Description**: 2216 2217The ``__sync_swap()`` builtin extends the existing ``__sync_*()`` family of 2218atomic intrinsics to allow code to atomically swap the current value with the 2219new value. More importantly, it helps developers write more efficient and 2220correct code by avoiding expensive loops around 2221``__sync_bool_compare_and_swap()`` or relying on the platform specific 2222implementation details of ``__sync_lock_test_and_set()``. The 2223``__sync_swap()`` builtin is a full barrier. 2224 2225``__builtin_addressof`` 2226----------------------- 2227 2228``__builtin_addressof`` performs the functionality of the built-in ``&`` 2229operator, ignoring any ``operator&`` overload. This is useful in constant 2230expressions in C++11, where there is no other way to take the address of an 2231object that overloads ``operator&``. 2232 2233**Example of use**: 2234 2235.. code-block:: c++ 2236 2237 template<typename T> constexpr T *addressof(T &value) { 2238 return __builtin_addressof(value); 2239 } 2240 2241``__builtin_operator_new`` and ``__builtin_operator_delete`` 2242------------------------------------------------------------ 2243 2244A call to ``__builtin_operator_new(args)`` is exactly the same as a call to 2245``::operator new(args)``, except that it allows certain optimizations 2246that the C++ standard does not permit for a direct function call to 2247``::operator new`` (in particular, removing ``new`` / ``delete`` pairs and 2248merging allocations), and that the call is required to resolve to a 2249`replaceable global allocation function 2250<https://en.cppreference.com/w/cpp/memory/new/operator_new>`_. 2251 2252Likewise, ``__builtin_operator_delete`` is exactly the same as a call to 2253``::operator delete(args)``, except that it permits optimizations 2254and that the call is required to resolve to a 2255`replaceable global deallocation function 2256<https://en.cppreference.com/w/cpp/memory/new/operator_delete>`_. 2257 2258These builtins are intended for use in the implementation of ``std::allocator`` 2259and other similar allocation libraries, and are only available in C++. 2260 2261Query for this feature with ``__has_builtin(__builtin_operator_new)`` or 2262``__has_builtin(__builtin_operator_delete)``: 2263 2264 * If the value is at least ``201802L``, the builtins behave as described above. 2265 2266 * If the value is non-zero, the builtins may not support calling arbitrary 2267 replaceable global (de)allocation functions, but do support calling at least 2268 ``::operator new(size_t)`` and ``::operator delete(void*)``. 2269 2270``__builtin_preserve_access_index`` 2271----------------------------------- 2272 2273``__builtin_preserve_access_index`` specifies a code section where 2274array subscript access and structure/union member access are relocatable 2275under bpf compile-once run-everywhere framework. Debuginfo (typically 2276with ``-g``) is needed, otherwise, the compiler will exit with an error. 2277The return type for the intrinsic is the same as the type of the 2278argument. 2279 2280**Syntax**: 2281 2282.. code-block:: c 2283 2284 type __builtin_preserve_access_index(type arg) 2285 2286**Example of Use**: 2287 2288.. code-block:: c 2289 2290 struct t { 2291 int i; 2292 int j; 2293 union { 2294 int a; 2295 int b; 2296 } c[4]; 2297 }; 2298 struct t *v = ...; 2299 int *pb =__builtin_preserve_access_index(&v->c[3].b); 2300 __builtin_preserve_access_index(v->j); 2301 2302Multiprecision Arithmetic Builtins 2303---------------------------------- 2304 2305Clang provides a set of builtins which expose multiprecision arithmetic in a 2306manner amenable to C. They all have the following form: 2307 2308.. code-block:: c 2309 2310 unsigned x = ..., y = ..., carryin = ..., carryout; 2311 unsigned sum = __builtin_addc(x, y, carryin, &carryout); 2312 2313Thus one can form a multiprecision addition chain in the following manner: 2314 2315.. code-block:: c 2316 2317 unsigned *x, *y, *z, carryin=0, carryout; 2318 z[0] = __builtin_addc(x[0], y[0], carryin, &carryout); 2319 carryin = carryout; 2320 z[1] = __builtin_addc(x[1], y[1], carryin, &carryout); 2321 carryin = carryout; 2322 z[2] = __builtin_addc(x[2], y[2], carryin, &carryout); 2323 carryin = carryout; 2324 z[3] = __builtin_addc(x[3], y[3], carryin, &carryout); 2325 2326The complete list of builtins are: 2327 2328.. code-block:: c 2329 2330 unsigned char __builtin_addcb (unsigned char x, unsigned char y, unsigned char carryin, unsigned char *carryout); 2331 unsigned short __builtin_addcs (unsigned short x, unsigned short y, unsigned short carryin, unsigned short *carryout); 2332 unsigned __builtin_addc (unsigned x, unsigned y, unsigned carryin, unsigned *carryout); 2333 unsigned long __builtin_addcl (unsigned long x, unsigned long y, unsigned long carryin, unsigned long *carryout); 2334 unsigned long long __builtin_addcll(unsigned long long x, unsigned long long y, unsigned long long carryin, unsigned long long *carryout); 2335 unsigned char __builtin_subcb (unsigned char x, unsigned char y, unsigned char carryin, unsigned char *carryout); 2336 unsigned short __builtin_subcs (unsigned short x, unsigned short y, unsigned short carryin, unsigned short *carryout); 2337 unsigned __builtin_subc (unsigned x, unsigned y, unsigned carryin, unsigned *carryout); 2338 unsigned long __builtin_subcl (unsigned long x, unsigned long y, unsigned long carryin, unsigned long *carryout); 2339 unsigned long long __builtin_subcll(unsigned long long x, unsigned long long y, unsigned long long carryin, unsigned long long *carryout); 2340 2341Checked Arithmetic Builtins 2342--------------------------- 2343 2344Clang provides a set of builtins that implement checked arithmetic for security 2345critical applications in a manner that is fast and easily expressible in C. As 2346an example of their usage: 2347 2348.. code-block:: c 2349 2350 errorcode_t security_critical_application(...) { 2351 unsigned x, y, result; 2352 ... 2353 if (__builtin_mul_overflow(x, y, &result)) 2354 return kErrorCodeHackers; 2355 ... 2356 use_multiply(result); 2357 ... 2358 } 2359 2360Clang provides the following checked arithmetic builtins: 2361 2362.. code-block:: c 2363 2364 bool __builtin_add_overflow (type1 x, type2 y, type3 *sum); 2365 bool __builtin_sub_overflow (type1 x, type2 y, type3 *diff); 2366 bool __builtin_mul_overflow (type1 x, type2 y, type3 *prod); 2367 bool __builtin_uadd_overflow (unsigned x, unsigned y, unsigned *sum); 2368 bool __builtin_uaddl_overflow (unsigned long x, unsigned long y, unsigned long *sum); 2369 bool __builtin_uaddll_overflow(unsigned long long x, unsigned long long y, unsigned long long *sum); 2370 bool __builtin_usub_overflow (unsigned x, unsigned y, unsigned *diff); 2371 bool __builtin_usubl_overflow (unsigned long x, unsigned long y, unsigned long *diff); 2372 bool __builtin_usubll_overflow(unsigned long long x, unsigned long long y, unsigned long long *diff); 2373 bool __builtin_umul_overflow (unsigned x, unsigned y, unsigned *prod); 2374 bool __builtin_umull_overflow (unsigned long x, unsigned long y, unsigned long *prod); 2375 bool __builtin_umulll_overflow(unsigned long long x, unsigned long long y, unsigned long long *prod); 2376 bool __builtin_sadd_overflow (int x, int y, int *sum); 2377 bool __builtin_saddl_overflow (long x, long y, long *sum); 2378 bool __builtin_saddll_overflow(long long x, long long y, long long *sum); 2379 bool __builtin_ssub_overflow (int x, int y, int *diff); 2380 bool __builtin_ssubl_overflow (long x, long y, long *diff); 2381 bool __builtin_ssubll_overflow(long long x, long long y, long long *diff); 2382 bool __builtin_smul_overflow (int x, int y, int *prod); 2383 bool __builtin_smull_overflow (long x, long y, long *prod); 2384 bool __builtin_smulll_overflow(long long x, long long y, long long *prod); 2385 2386Each builtin performs the specified mathematical operation on the 2387first two arguments and stores the result in the third argument. If 2388possible, the result will be equal to mathematically-correct result 2389and the builtin will return 0. Otherwise, the builtin will return 23901 and the result will be equal to the unique value that is equivalent 2391to the mathematically-correct result modulo two raised to the *k* 2392power, where *k* is the number of bits in the result type. The 2393behavior of these builtins is well-defined for all argument values. 2394 2395The first three builtins work generically for operands of any integer type, 2396including boolean types. The operands need not have the same type as each 2397other, or as the result. The other builtins may implicitly promote or 2398convert their operands before performing the operation. 2399 2400Query for this feature with ``__has_builtin(__builtin_add_overflow)``, etc. 2401 2402Floating point builtins 2403--------------------------------------- 2404 2405``__builtin_canonicalize`` 2406-------------------------- 2407 2408.. code-block:: c 2409 2410 double __builtin_canonicalize(double); 2411 float __builtin_canonicalizef(float); 2412 long double__builtin_canonicalizel(long double); 2413 2414Returns the platform specific canonical encoding of a floating point 2415number. This canonicalization is useful for implementing certain 2416numeric primitives such as frexp. See `LLVM canonicalize intrinsic 2417<https://llvm.org/docs/LangRef.html#llvm-canonicalize-intrinsic>`_ for 2418more information on the semantics. 2419 2420String builtins 2421--------------- 2422 2423Clang provides constant expression evaluation support for builtins forms of 2424the following functions from the C standard library headers 2425``<string.h>`` and ``<wchar.h>``: 2426 2427* ``memchr`` 2428* ``memcmp`` (and its deprecated BSD / POSIX alias ``bcmp``) 2429* ``strchr`` 2430* ``strcmp`` 2431* ``strlen`` 2432* ``strncmp`` 2433* ``wcschr`` 2434* ``wcscmp`` 2435* ``wcslen`` 2436* ``wcsncmp`` 2437* ``wmemchr`` 2438* ``wmemcmp`` 2439 2440In each case, the builtin form has the name of the C library function prefixed 2441by ``__builtin_``. Example: 2442 2443.. code-block:: c 2444 2445 void *p = __builtin_memchr("foobar", 'b', 5); 2446 2447In addition to the above, one further builtin is provided: 2448 2449.. code-block:: c 2450 2451 char *__builtin_char_memchr(const char *haystack, int needle, size_t size); 2452 2453``__builtin_char_memchr(a, b, c)`` is identical to 2454``(char*)__builtin_memchr(a, b, c)`` except that its use is permitted within 2455constant expressions in C++11 onwards (where a cast from ``void*`` to ``char*`` 2456is disallowed in general). 2457 2458Constant evaluation support for the ``__builtin_mem*`` functions is provided 2459only for arrays of ``char``, ``signed char``, ``unsigned char``, or ``char8_t``, 2460despite these functions accepting an argument of type ``const void*``. 2461 2462Support for constant expression evaluation for the above builtins can be detected 2463with ``__has_feature(cxx_constexpr_string_builtins)``. 2464 2465Memory builtins 2466--------------- 2467 2468Clang provides constant expression evaluation support for builtin forms of the 2469following functions from the C standard library headers 2470``<string.h>`` and ``<wchar.h>``: 2471 2472* ``memcpy`` 2473* ``memmove`` 2474* ``wmemcpy`` 2475* ``wmemmove`` 2476 2477In each case, the builtin form has the name of the C library function prefixed 2478by ``__builtin_``. 2479 2480Constant evaluation support is only provided when the source and destination 2481are pointers to arrays with the same trivially copyable element type, and the 2482given size is an exact multiple of the element size that is no greater than 2483the number of elements accessible through the source and destination operands. 2484 2485Guaranteed inlined copy 2486^^^^^^^^^^^^^^^^^^^^^^^ 2487 2488.. code-block:: c 2489 2490 void __builtin_memcpy_inline(void *dst, const void *src, size_t size); 2491 2492 2493``__builtin_memcpy_inline`` has been designed as a building block for efficient 2494``memcpy`` implementations. It is identical to ``__builtin_memcpy`` but also 2495guarantees not to call any external functions. See LLVM IR `llvm.memcpy.inline 2496<https://llvm.org/docs/LangRef.html#llvm-memcpy-inline-intrinsic>`_ intrinsic 2497for more information. 2498 2499This is useful to implement a custom version of ``memcpy``, implement a 2500``libc`` memcpy or work around the absence of a ``libc``. 2501 2502Note that the `size` argument must be a compile time constant. 2503 2504Note that this intrinsic cannot yet be called in a ``constexpr`` context. 2505 2506 2507Atomic Min/Max builtins with memory ordering 2508-------------------------------------------- 2509 2510There are two atomic builtins with min/max in-memory comparison and swap. 2511The syntax and semantics are similar to GCC-compatible __atomic_* builtins. 2512 2513* ``__atomic_fetch_min`` 2514* ``__atomic_fetch_max`` 2515 2516The builtins work with signed and unsigned integers and require to specify memory ordering. 2517The return value is the original value that was stored in memory before comparison. 2518 2519Example: 2520 2521.. code-block:: c 2522 2523 unsigned int val = __atomic_fetch_min(unsigned int *pi, unsigned int ui, __ATOMIC_RELAXED); 2524 2525The third argument is one of the memory ordering specifiers ``__ATOMIC_RELAXED``, 2526``__ATOMIC_CONSUME``, ``__ATOMIC_ACQUIRE``, ``__ATOMIC_RELEASE``, 2527``__ATOMIC_ACQ_REL``, or ``__ATOMIC_SEQ_CST`` following C++11 memory model semantics. 2528 2529In terms or aquire-release ordering barriers these two operations are always 2530considered as operations with *load-store* semantics, even when the original value 2531is not actually modified after comparison. 2532 2533.. _langext-__c11_atomic: 2534 2535__c11_atomic builtins 2536--------------------- 2537 2538Clang provides a set of builtins which are intended to be used to implement 2539C11's ``<stdatomic.h>`` header. These builtins provide the semantics of the 2540``_explicit`` form of the corresponding C11 operation, and are named with a 2541``__c11_`` prefix. The supported operations, and the differences from 2542the corresponding C11 operations, are: 2543 2544* ``__c11_atomic_init`` 2545* ``__c11_atomic_thread_fence`` 2546* ``__c11_atomic_signal_fence`` 2547* ``__c11_atomic_is_lock_free`` (The argument is the size of the 2548 ``_Atomic(...)`` object, instead of its address) 2549* ``__c11_atomic_store`` 2550* ``__c11_atomic_load`` 2551* ``__c11_atomic_exchange`` 2552* ``__c11_atomic_compare_exchange_strong`` 2553* ``__c11_atomic_compare_exchange_weak`` 2554* ``__c11_atomic_fetch_add`` 2555* ``__c11_atomic_fetch_sub`` 2556* ``__c11_atomic_fetch_and`` 2557* ``__c11_atomic_fetch_or`` 2558* ``__c11_atomic_fetch_xor`` 2559* ``__c11_atomic_fetch_max`` 2560* ``__c11_atomic_fetch_min`` 2561 2562The macros ``__ATOMIC_RELAXED``, ``__ATOMIC_CONSUME``, ``__ATOMIC_ACQUIRE``, 2563``__ATOMIC_RELEASE``, ``__ATOMIC_ACQ_REL``, and ``__ATOMIC_SEQ_CST`` are 2564provided, with values corresponding to the enumerators of C11's 2565``memory_order`` enumeration. 2566 2567(Note that Clang additionally provides GCC-compatible ``__atomic_*`` 2568builtins and OpenCL 2.0 ``__opencl_atomic_*`` builtins. The OpenCL 2.0 2569atomic builtins are an explicit form of the corresponding OpenCL 2.0 2570builtin function, and are named with a ``__opencl_`` prefix. The macros 2571``__OPENCL_MEMORY_SCOPE_WORK_ITEM``, ``__OPENCL_MEMORY_SCOPE_WORK_GROUP``, 2572``__OPENCL_MEMORY_SCOPE_DEVICE``, ``__OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES``, 2573and ``__OPENCL_MEMORY_SCOPE_SUB_GROUP`` are provided, with values 2574corresponding to the enumerators of OpenCL's ``memory_scope`` enumeration.) 2575 2576Low-level ARM exclusive memory builtins 2577--------------------------------------- 2578 2579Clang provides overloaded builtins giving direct access to the three key ARM 2580instructions for implementing atomic operations. 2581 2582.. code-block:: c 2583 2584 T __builtin_arm_ldrex(const volatile T *addr); 2585 T __builtin_arm_ldaex(const volatile T *addr); 2586 int __builtin_arm_strex(T val, volatile T *addr); 2587 int __builtin_arm_stlex(T val, volatile T *addr); 2588 void __builtin_arm_clrex(void); 2589 2590The types ``T`` currently supported are: 2591 2592* Integer types with width at most 64 bits (or 128 bits on AArch64). 2593* Floating-point types 2594* Pointer types. 2595 2596Note that the compiler does not guarantee it will not insert stores which clear 2597the exclusive monitor in between an ``ldrex`` type operation and its paired 2598``strex``. In practice this is only usually a risk when the extra store is on 2599the same cache line as the variable being modified and Clang will only insert 2600stack stores on its own, so it is best not to use these operations on variables 2601with automatic storage duration. 2602 2603Also, loads and stores may be implicit in code written between the ``ldrex`` and 2604``strex``. Clang will not necessarily mitigate the effects of these either, so 2605care should be exercised. 2606 2607For these reasons the higher level atomic primitives should be preferred where 2608possible. 2609 2610Non-temporal load/store builtins 2611-------------------------------- 2612 2613Clang provides overloaded builtins allowing generation of non-temporal memory 2614accesses. 2615 2616.. code-block:: c 2617 2618 T __builtin_nontemporal_load(T *addr); 2619 void __builtin_nontemporal_store(T value, T *addr); 2620 2621The types ``T`` currently supported are: 2622 2623* Integer types. 2624* Floating-point types. 2625* Vector types. 2626 2627Note that the compiler does not guarantee that non-temporal loads or stores 2628will be used. 2629 2630C++ Coroutines support builtins 2631-------------------------------- 2632 2633.. warning:: 2634 This is a work in progress. Compatibility across Clang/LLVM releases is not 2635 guaranteed. 2636 2637Clang provides experimental builtins to support C++ Coroutines as defined by 2638https://wg21.link/P0057. The following four are intended to be used by the 2639standard library to implement `std::experimental::coroutine_handle` type. 2640 2641**Syntax**: 2642 2643.. code-block:: c 2644 2645 void __builtin_coro_resume(void *addr); 2646 void __builtin_coro_destroy(void *addr); 2647 bool __builtin_coro_done(void *addr); 2648 void *__builtin_coro_promise(void *addr, int alignment, bool from_promise) 2649 2650**Example of use**: 2651 2652.. code-block:: c++ 2653 2654 template <> struct coroutine_handle<void> { 2655 void resume() const { __builtin_coro_resume(ptr); } 2656 void destroy() const { __builtin_coro_destroy(ptr); } 2657 bool done() const { return __builtin_coro_done(ptr); } 2658 // ... 2659 protected: 2660 void *ptr; 2661 }; 2662 2663 template <typename Promise> struct coroutine_handle : coroutine_handle<> { 2664 // ... 2665 Promise &promise() const { 2666 return *reinterpret_cast<Promise *>( 2667 __builtin_coro_promise(ptr, alignof(Promise), /*from-promise=*/false)); 2668 } 2669 static coroutine_handle from_promise(Promise &promise) { 2670 coroutine_handle p; 2671 p.ptr = __builtin_coro_promise(&promise, alignof(Promise), 2672 /*from-promise=*/true); 2673 return p; 2674 } 2675 }; 2676 2677 2678Other coroutine builtins are either for internal clang use or for use during 2679development of the coroutine feature. See `Coroutines in LLVM 2680<https://llvm.org/docs/Coroutines.html#intrinsics>`_ for 2681more information on their semantics. Note that builtins matching the intrinsics 2682that take token as the first parameter (llvm.coro.begin, llvm.coro.alloc, 2683llvm.coro.free and llvm.coro.suspend) omit the token parameter and fill it to 2684an appropriate value during the emission. 2685 2686**Syntax**: 2687 2688.. code-block:: c 2689 2690 size_t __builtin_coro_size() 2691 void *__builtin_coro_frame() 2692 void *__builtin_coro_free(void *coro_frame) 2693 2694 void *__builtin_coro_id(int align, void *promise, void *fnaddr, void *parts) 2695 bool __builtin_coro_alloc() 2696 void *__builtin_coro_begin(void *memory) 2697 void __builtin_coro_end(void *coro_frame, bool unwind) 2698 char __builtin_coro_suspend(bool final) 2699 bool __builtin_coro_param(void *original, void *copy) 2700 2701Note that there is no builtin matching the `llvm.coro.save` intrinsic. LLVM 2702automatically will insert one if the first argument to `llvm.coro.suspend` is 2703token `none`. If a user calls `__builin_suspend`, clang will insert `token none` 2704as the first argument to the intrinsic. 2705 2706Source location builtins 2707------------------------ 2708 2709Clang provides experimental builtins to support C++ standard library implementation 2710of ``std::experimental::source_location`` as specified in http://wg21.link/N4600. 2711With the exception of ``__builtin_COLUMN``, these builtins are also implemented by 2712GCC. 2713 2714**Syntax**: 2715 2716.. code-block:: c 2717 2718 const char *__builtin_FILE(); 2719 const char *__builtin_FUNCTION(); 2720 unsigned __builtin_LINE(); 2721 unsigned __builtin_COLUMN(); // Clang only 2722 2723**Example of use**: 2724 2725.. code-block:: c++ 2726 2727 void my_assert(bool pred, int line = __builtin_LINE(), // Captures line of caller 2728 const char* file = __builtin_FILE(), 2729 const char* function = __builtin_FUNCTION()) { 2730 if (pred) return; 2731 printf("%s:%d assertion failed in function %s\n", file, line, function); 2732 std::abort(); 2733 } 2734 2735 struct MyAggregateType { 2736 int x; 2737 int line = __builtin_LINE(); // captures line where aggregate initialization occurs 2738 }; 2739 static_assert(MyAggregateType{42}.line == __LINE__); 2740 2741 struct MyClassType { 2742 int line = __builtin_LINE(); // captures line of the constructor used during initialization 2743 constexpr MyClassType(int) { assert(line == __LINE__); } 2744 }; 2745 2746**Description**: 2747 2748The builtins ``__builtin_LINE``, ``__builtin_FUNCTION``, and ``__builtin_FILE`` return 2749the values, at the "invocation point", for ``__LINE__``, ``__FUNCTION__``, and 2750``__FILE__`` respectively. These builtins are constant expressions. 2751 2752When the builtins appear as part of a default function argument the invocation 2753point is the location of the caller. When the builtins appear as part of a 2754default member initializer, the invocation point is the location of the 2755constructor or aggregate initialization used to create the object. Otherwise 2756the invocation point is the same as the location of the builtin. 2757 2758When the invocation point of ``__builtin_FUNCTION`` is not a function scope the 2759empty string is returned. 2760 2761Alignment builtins 2762------------------ 2763Clang provides builtins to support checking and adjusting alignment of 2764pointers and integers. 2765These builtins can be used to avoid relying on implementation-defined behavior 2766of arithmetic on integers derived from pointers. 2767Additionally, these builtins retain type information and, unlike bitwise 2768arithmetic, they can perform semantic checking on the alignment value. 2769 2770**Syntax**: 2771 2772.. code-block:: c 2773 2774 Type __builtin_align_up(Type value, size_t alignment); 2775 Type __builtin_align_down(Type value, size_t alignment); 2776 bool __builtin_is_aligned(Type value, size_t alignment); 2777 2778 2779**Example of use**: 2780 2781.. code-block:: c++ 2782 2783 char* global_alloc_buffer; 2784 void* my_aligned_allocator(size_t alloc_size, size_t alignment) { 2785 char* result = __builtin_align_up(global_alloc_buffer, alignment); 2786 // result now contains the value of global_alloc_buffer rounded up to the 2787 // next multiple of alignment. 2788 global_alloc_buffer = result + alloc_size; 2789 return result; 2790 } 2791 2792 void* get_start_of_page(void* ptr) { 2793 return __builtin_align_down(ptr, PAGE_SIZE); 2794 } 2795 2796 void example(char* buffer) { 2797 if (__builtin_is_aligned(buffer, 64)) { 2798 do_fast_aligned_copy(buffer); 2799 } else { 2800 do_unaligned_copy(buffer); 2801 } 2802 } 2803 2804 // In addition to pointers, the builtins can also be used on integer types 2805 // and are evaluatable inside constant expressions. 2806 static_assert(__builtin_align_up(123, 64) == 128, ""); 2807 static_assert(__builtin_align_down(123u, 64) == 64u, ""); 2808 static_assert(!__builtin_is_aligned(123, 64), ""); 2809 2810 2811**Description**: 2812 2813The builtins ``__builtin_align_up``, ``__builtin_align_down``, return their 2814first argument aligned up/down to the next multiple of the second argument. 2815If the value is already sufficiently aligned, it is returned unchanged. 2816The builtin ``__builtin_is_aligned`` returns whether the first argument is 2817aligned to a multiple of the second argument. 2818All of these builtins expect the alignment to be expressed as a number of bytes. 2819 2820These builtins can be used for all integer types as well as (non-function) 2821pointer types. For pointer types, these builtins operate in terms of the integer 2822address of the pointer and return a new pointer of the same type (including 2823qualifiers such as ``const``) with an adjusted address. 2824When aligning pointers up or down, the resulting value must be within the same 2825underlying allocation or one past the end (see C17 6.5.6p8, C++ [expr.add]). 2826This means that arbitrary integer values stored in pointer-type variables must 2827not be passed to these builtins. For those use cases, the builtins can still be 2828used, but the operation must be performed on the pointer cast to ``uintptr_t``. 2829 2830If Clang can determine that the alignment is not a power of two at compile time, 2831it will result in a compilation failure. If the alignment argument is not a 2832power of two at run time, the behavior of these builtins is undefined. 2833 2834Non-standard C++11 Attributes 2835============================= 2836 2837Clang's non-standard C++11 attributes live in the ``clang`` attribute 2838namespace. 2839 2840Clang supports GCC's ``gnu`` attribute namespace. All GCC attributes which 2841are accepted with the ``__attribute__((foo))`` syntax are also accepted as 2842``[[gnu::foo]]``. This only extends to attributes which are specified by GCC 2843(see the list of `GCC function attributes 2844<https://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html>`_, `GCC variable 2845attributes <https://gcc.gnu.org/onlinedocs/gcc/Variable-Attributes.html>`_, and 2846`GCC type attributes 2847<https://gcc.gnu.org/onlinedocs/gcc/Type-Attributes.html>`_). As with the GCC 2848implementation, these attributes must appertain to the *declarator-id* in a 2849declaration, which means they must go either at the start of the declaration or 2850immediately after the name being declared. 2851 2852For example, this applies the GNU ``unused`` attribute to ``a`` and ``f``, and 2853also applies the GNU ``noreturn`` attribute to ``f``. 2854 2855.. code-block:: c++ 2856 2857 [[gnu::unused]] int a, f [[gnu::noreturn]] (); 2858 2859Target-Specific Extensions 2860========================== 2861 2862Clang supports some language features conditionally on some targets. 2863 2864ARM/AArch64 Language Extensions 2865------------------------------- 2866 2867Memory Barrier Intrinsics 2868^^^^^^^^^^^^^^^^^^^^^^^^^ 2869Clang implements the ``__dmb``, ``__dsb`` and ``__isb`` intrinsics as defined 2870in the `ARM C Language Extensions Release 2.0 2871<http://infocenter.arm.com/help/topic/com.arm.doc.ihi0053c/IHI0053C_acle_2_0.pdf>`_. 2872Note that these intrinsics are implemented as motion barriers that block 2873reordering of memory accesses and side effect instructions. Other instructions 2874like simple arithmetic may be reordered around the intrinsic. If you expect to 2875have no reordering at all, use inline assembly instead. 2876 2877X86/X86-64 Language Extensions 2878------------------------------ 2879 2880The X86 backend has these language extensions: 2881 2882Memory references to specified segments 2883^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2884 2885Annotating a pointer with address space #256 causes it to be code generated 2886relative to the X86 GS segment register, address space #257 causes it to be 2887relative to the X86 FS segment, and address space #258 causes it to be 2888relative to the X86 SS segment. Note that this is a very very low-level 2889feature that should only be used if you know what you're doing (for example in 2890an OS kernel). 2891 2892Here is an example: 2893 2894.. code-block:: c++ 2895 2896 #define GS_RELATIVE __attribute__((address_space(256))) 2897 int foo(int GS_RELATIVE *P) { 2898 return *P; 2899 } 2900 2901Which compiles to (on X86-32): 2902 2903.. code-block:: gas 2904 2905 _foo: 2906 movl 4(%esp), %eax 2907 movl %gs:(%eax), %eax 2908 ret 2909 2910You can also use the GCC compatibility macros ``__seg_fs`` and ``__seg_gs`` for 2911the same purpose. The preprocessor symbols ``__SEG_FS`` and ``__SEG_GS`` 2912indicate their support. 2913 2914PowerPC Language Extensions 2915------------------------------ 2916 2917Set the Floating Point Rounding Mode 2918^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2919PowerPC64/PowerPC64le supports the builtin function ``__builtin_setrnd`` to set 2920the floating point rounding mode. This function will use the least significant 2921two bits of integer argument to set the floating point rounding mode. 2922 2923.. code-block:: c++ 2924 2925 double __builtin_setrnd(int mode); 2926 2927The effective values for mode are: 2928 2929 - 0 - round to nearest 2930 - 1 - round to zero 2931 - 2 - round to +infinity 2932 - 3 - round to -infinity 2933 2934Note that the mode argument will modulo 4, so if the integer argument is greater 2935than 3, it will only use the least significant two bits of the mode. 2936Namely, ``__builtin_setrnd(102))`` is equal to ``__builtin_setrnd(2)``. 2937 2938PowerPC cache builtins 2939^^^^^^^^^^^^^^^^^^^^^^ 2940 2941The PowerPC architecture specifies instructions implementing cache operations. 2942Clang provides builtins that give direct programmer access to these cache 2943instructions. 2944 2945Currently the following builtins are implemented in clang: 2946 2947``__builtin_dcbf`` copies the contents of a modified block from the data cache 2948to main memory and flushes the copy from the data cache. 2949 2950**Syntax**: 2951 2952.. code-block:: c 2953 2954 void __dcbf(const void* addr); /* Data Cache Block Flush */ 2955 2956**Example of Use**: 2957 2958.. code-block:: c 2959 2960 int a = 1; 2961 __builtin_dcbf (&a); 2962 2963Extensions for Static Analysis 2964============================== 2965 2966Clang supports additional attributes that are useful for documenting program 2967invariants and rules for static analysis tools, such as the `Clang Static 2968Analyzer <https://clang-analyzer.llvm.org/>`_. These attributes are documented 2969in the analyzer's `list of source-level annotations 2970<https://clang-analyzer.llvm.org/annotations.html>`_. 2971 2972 2973Extensions for Dynamic Analysis 2974=============================== 2975 2976Use ``__has_feature(address_sanitizer)`` to check if the code is being built 2977with :doc:`AddressSanitizer`. 2978 2979Use ``__has_feature(thread_sanitizer)`` to check if the code is being built 2980with :doc:`ThreadSanitizer`. 2981 2982Use ``__has_feature(memory_sanitizer)`` to check if the code is being built 2983with :doc:`MemorySanitizer`. 2984 2985Use ``__has_feature(safe_stack)`` to check if the code is being built 2986with :doc:`SafeStack`. 2987 2988 2989Extensions for selectively disabling optimization 2990================================================= 2991 2992Clang provides a mechanism for selectively disabling optimizations in functions 2993and methods. 2994 2995To disable optimizations in a single function definition, the GNU-style or C++11 2996non-standard attribute ``optnone`` can be used. 2997 2998.. code-block:: c++ 2999 3000 // The following functions will not be optimized. 3001 // GNU-style attribute 3002 __attribute__((optnone)) int foo() { 3003 // ... code 3004 } 3005 // C++11 attribute 3006 [[clang::optnone]] int bar() { 3007 // ... code 3008 } 3009 3010To facilitate disabling optimization for a range of function definitions, a 3011range-based pragma is provided. Its syntax is ``#pragma clang optimize`` 3012followed by ``off`` or ``on``. 3013 3014All function definitions in the region between an ``off`` and the following 3015``on`` will be decorated with the ``optnone`` attribute unless doing so would 3016conflict with explicit attributes already present on the function (e.g. the 3017ones that control inlining). 3018 3019.. code-block:: c++ 3020 3021 #pragma clang optimize off 3022 // This function will be decorated with optnone. 3023 int foo() { 3024 // ... code 3025 } 3026 3027 // optnone conflicts with always_inline, so bar() will not be decorated. 3028 __attribute__((always_inline)) int bar() { 3029 // ... code 3030 } 3031 #pragma clang optimize on 3032 3033If no ``on`` is found to close an ``off`` region, the end of the region is the 3034end of the compilation unit. 3035 3036Note that a stray ``#pragma clang optimize on`` does not selectively enable 3037additional optimizations when compiling at low optimization levels. This feature 3038can only be used to selectively disable optimizations. 3039 3040The pragma has an effect on functions only at the point of their definition; for 3041function templates, this means that the state of the pragma at the point of an 3042instantiation is not necessarily relevant. Consider the following example: 3043 3044.. code-block:: c++ 3045 3046 template<typename T> T twice(T t) { 3047 return 2 * t; 3048 } 3049 3050 #pragma clang optimize off 3051 template<typename T> T thrice(T t) { 3052 return 3 * t; 3053 } 3054 3055 int container(int a, int b) { 3056 return twice(a) + thrice(b); 3057 } 3058 #pragma clang optimize on 3059 3060In this example, the definition of the template function ``twice`` is outside 3061the pragma region, whereas the definition of ``thrice`` is inside the region. 3062The ``container`` function is also in the region and will not be optimized, but 3063it causes the instantiation of ``twice`` and ``thrice`` with an ``int`` type; of 3064these two instantiations, ``twice`` will be optimized (because its definition 3065was outside the region) and ``thrice`` will not be optimized. 3066 3067Extensions for loop hint optimizations 3068====================================== 3069 3070The ``#pragma clang loop`` directive is used to specify hints for optimizing the 3071subsequent for, while, do-while, or c++11 range-based for loop. The directive 3072provides options for vectorization, interleaving, predication, unrolling and 3073distribution. Loop hints can be specified before any loop and will be ignored if 3074the optimization is not safe to apply. 3075 3076There are loop hints that control transformations (e.g. vectorization, loop 3077unrolling) and there are loop hints that set transformation options (e.g. 3078``vectorize_width``, ``unroll_count``). Pragmas setting transformation options 3079imply the transformation is enabled, as if it was enabled via the corresponding 3080transformation pragma (e.g. ``vectorize(enable)``). If the transformation is 3081disabled (e.g. ``vectorize(disable)``), that takes precedence over 3082transformations option pragmas implying that transformation. 3083 3084Vectorization, Interleaving, and Predication 3085-------------------------------------------- 3086 3087A vectorized loop performs multiple iterations of the original loop 3088in parallel using vector instructions. The instruction set of the target 3089processor determines which vector instructions are available and their vector 3090widths. This restricts the types of loops that can be vectorized. The vectorizer 3091automatically determines if the loop is safe and profitable to vectorize. A 3092vector instruction cost model is used to select the vector width. 3093 3094Interleaving multiple loop iterations allows modern processors to further 3095improve instruction-level parallelism (ILP) using advanced hardware features, 3096such as multiple execution units and out-of-order execution. The vectorizer uses 3097a cost model that depends on the register pressure and generated code size to 3098select the interleaving count. 3099 3100Vectorization is enabled by ``vectorize(enable)`` and interleaving is enabled 3101by ``interleave(enable)``. This is useful when compiling with ``-Os`` to 3102manually enable vectorization or interleaving. 3103 3104.. code-block:: c++ 3105 3106 #pragma clang loop vectorize(enable) 3107 #pragma clang loop interleave(enable) 3108 for(...) { 3109 ... 3110 } 3111 3112The vector width is specified by 3113``vectorize_width(_value_[, fixed|scalable])``, where _value_ is a positive 3114integer and the type of vectorization can be specified with an optional 3115second parameter. The default for the second parameter is 'fixed' and 3116refers to fixed width vectorization, whereas 'scalable' indicates the 3117compiler should use scalable vectors instead. Another use of vectorize_width 3118is ``vectorize_width(fixed|scalable)`` where the user can hint at the type 3119of vectorization to use without specifying the exact width. In both variants 3120of the pragma the vectorizer may decide to fall back on fixed width 3121vectorization if the target does not support scalable vectors. 3122 3123The interleave count is specified by ``interleave_count(_value_)``, where 3124_value_ is a positive integer. This is useful for specifying the optimal 3125width/count of the set of target architectures supported by your application. 3126 3127.. code-block:: c++ 3128 3129 #pragma clang loop vectorize_width(2) 3130 #pragma clang loop interleave_count(2) 3131 for(...) { 3132 ... 3133 } 3134 3135Specifying a width/count of 1 disables the optimization, and is equivalent to 3136``vectorize(disable)`` or ``interleave(disable)``. 3137 3138Vector predication is enabled by ``vectorize_predicate(enable)``, for example: 3139 3140.. code-block:: c++ 3141 3142 #pragma clang loop vectorize(enable) 3143 #pragma clang loop vectorize_predicate(enable) 3144 for(...) { 3145 ... 3146 } 3147 3148This predicates (masks) all instructions in the loop, which allows the scalar 3149remainder loop (the tail) to be folded into the main vectorized loop. This 3150might be more efficient when vector predication is efficiently supported by the 3151target platform. 3152 3153Loop Unrolling 3154-------------- 3155 3156Unrolling a loop reduces the loop control overhead and exposes more 3157opportunities for ILP. Loops can be fully or partially unrolled. Full unrolling 3158eliminates the loop and replaces it with an enumerated sequence of loop 3159iterations. Full unrolling is only possible if the loop trip count is known at 3160compile time. Partial unrolling replicates the loop body within the loop and 3161reduces the trip count. 3162 3163If ``unroll(enable)`` is specified the unroller will attempt to fully unroll the 3164loop if the trip count is known at compile time. If the fully unrolled code size 3165is greater than an internal limit the loop will be partially unrolled up to this 3166limit. If the trip count is not known at compile time the loop will be partially 3167unrolled with a heuristically chosen unroll factor. 3168 3169.. code-block:: c++ 3170 3171 #pragma clang loop unroll(enable) 3172 for(...) { 3173 ... 3174 } 3175 3176If ``unroll(full)`` is specified the unroller will attempt to fully unroll the 3177loop if the trip count is known at compile time identically to 3178``unroll(enable)``. However, with ``unroll(full)`` the loop will not be unrolled 3179if the loop count is not known at compile time. 3180 3181.. code-block:: c++ 3182 3183 #pragma clang loop unroll(full) 3184 for(...) { 3185 ... 3186 } 3187 3188The unroll count can be specified explicitly with ``unroll_count(_value_)`` where 3189_value_ is a positive integer. If this value is greater than the trip count the 3190loop will be fully unrolled. Otherwise the loop is partially unrolled subject 3191to the same code size limit as with ``unroll(enable)``. 3192 3193.. code-block:: c++ 3194 3195 #pragma clang loop unroll_count(8) 3196 for(...) { 3197 ... 3198 } 3199 3200Unrolling of a loop can be prevented by specifying ``unroll(disable)``. 3201 3202Loop Distribution 3203----------------- 3204 3205Loop Distribution allows splitting a loop into multiple loops. This is 3206beneficial for example when the entire loop cannot be vectorized but some of the 3207resulting loops can. 3208 3209If ``distribute(enable))`` is specified and the loop has memory dependencies 3210that inhibit vectorization, the compiler will attempt to isolate the offending 3211operations into a new loop. This optimization is not enabled by default, only 3212loops marked with the pragma are considered. 3213 3214.. code-block:: c++ 3215 3216 #pragma clang loop distribute(enable) 3217 for (i = 0; i < N; ++i) { 3218 S1: A[i + 1] = A[i] + B[i]; 3219 S2: C[i] = D[i] * E[i]; 3220 } 3221 3222This loop will be split into two loops between statements S1 and S2. The 3223second loop containing S2 will be vectorized. 3224 3225Loop Distribution is currently not enabled by default in the optimizer because 3226it can hurt performance in some cases. For example, instruction-level 3227parallelism could be reduced by sequentializing the execution of the 3228statements S1 and S2 above. 3229 3230If Loop Distribution is turned on globally with 3231``-mllvm -enable-loop-distribution``, specifying ``distribute(disable)`` can 3232be used the disable it on a per-loop basis. 3233 3234Additional Information 3235---------------------- 3236 3237For convenience multiple loop hints can be specified on a single line. 3238 3239.. code-block:: c++ 3240 3241 #pragma clang loop vectorize_width(4) interleave_count(8) 3242 for(...) { 3243 ... 3244 } 3245 3246If an optimization cannot be applied any hints that apply to it will be ignored. 3247For example, the hint ``vectorize_width(4)`` is ignored if the loop is not 3248proven safe to vectorize. To identify and diagnose optimization issues use 3249`-Rpass`, `-Rpass-missed`, and `-Rpass-analysis` command line options. See the 3250user guide for details. 3251 3252Extensions to specify floating-point flags 3253==================================================== 3254 3255The ``#pragma clang fp`` pragma allows floating-point options to be specified 3256for a section of the source code. This pragma can only appear at file scope or 3257at the start of a compound statement (excluding comments). When using within a 3258compound statement, the pragma is active within the scope of the compound 3259statement. 3260 3261Currently, the following settings can be controlled with this pragma: 3262 3263``#pragma clang fp reassociate`` allows control over the reassociation 3264of floating point expressions. When enabled, this pragma allows the expression 3265``x + (y + z)`` to be reassociated as ``(x + y) + z``. 3266Reassociation can also occur across multiple statements. 3267This pragma can be used to disable reassociation when it is otherwise 3268enabled for the translation unit with the ``-fassociative-math`` flag. 3269The pragma can take two values: ``on`` and ``off``. 3270 3271.. code-block:: c++ 3272 3273 float f(float x, float y, float z) 3274 { 3275 // Enable floating point reassociation across statements 3276 #pragma clang fp reassociate(on) 3277 float t = x + y; 3278 float v = t + z; 3279 } 3280 3281 3282``#pragma clang fp contract`` specifies whether the compiler should 3283contract a multiply and an addition (or subtraction) into a fused FMA 3284operation when supported by the target. 3285 3286The pragma can take three values: ``on``, ``fast`` and ``off``. The ``on`` 3287option is identical to using ``#pragma STDC FP_CONTRACT(ON)`` and it allows 3288fusion as specified the language standard. The ``fast`` option allows fusion 3289in cases when the language standard does not make this possible (e.g. across 3290statements in C). 3291 3292.. code-block:: c++ 3293 3294 for(...) { 3295 #pragma clang fp contract(fast) 3296 a = b[i] * c[i]; 3297 d[i] += a; 3298 } 3299 3300 3301The pragma can also be used with ``off`` which turns FP contraction off for a 3302section of the code. This can be useful when fast contraction is otherwise 3303enabled for the translation unit with the ``-ffp-contract=fast-honor-pragmas`` flag. 3304Note that ``-ffp-contract=fast`` will override pragmas to fuse multiply and 3305addition across statements regardless of any controlling pragmas. 3306 3307``#pragma clang fp exceptions`` specifies floating point exception behavior. It 3308may take one the the values: ``ignore``, ``maytrap`` or ``strict``. Meaning of 3309these values is same as for `constrained floating point intrinsics <http://llvm.org/docs/LangRef.html#constrained-floating-point-intrinsics>`_. 3310 3311.. code-block:: c++ 3312 3313 { 3314 // Preserve floating point exceptions 3315 #pragma clang fp exceptions(strict) 3316 z = x + y; 3317 if (fetestexcept(FE_OVERFLOW)) 3318 ... 3319 } 3320 3321A ``#pragma clang fp`` pragma may contain any number of options: 3322 3323.. code-block:: c++ 3324 3325 void func(float *dest, float a, float b) { 3326 #pragma clang fp exceptions(maytrap) contract(fast) reassociate(on) 3327 ... 3328 } 3329 3330 3331The ``#pragma float_control`` pragma allows precise floating-point 3332semantics and floating-point exception behavior to be specified 3333for a section of the source code. This pragma can only appear at file scope or 3334at the start of a compound statement (excluding comments). When using within a 3335compound statement, the pragma is active within the scope of the compound 3336statement. This pragma is modeled after a Microsoft pragma with the 3337same spelling and syntax. For pragmas specified at file scope, a stack 3338is supported so that the ``pragma float_control`` settings can be pushed or popped. 3339 3340When ``pragma float_control(precise, on)`` is enabled, the section of code 3341governed by the pragma uses precise floating point semantics, effectively 3342``-ffast-math`` is disabled and ``-ffp-contract=on`` 3343(fused multiply add) is enabled. 3344 3345When ``pragma float_control(except, on)`` is enabled, the section of code governed 3346by the pragma behaves as though the command-line option 3347``-ffp-exception-behavior=strict`` is enabled, 3348when ``pragma float_control(precise, off)`` is enabled, the section of code 3349governed by the pragma behaves as though the command-line option 3350``-ffp-exception-behavior=ignore`` is enabled. 3351 3352The full syntax this pragma supports is 3353``float_control(except|precise, on|off [, push])`` and 3354``float_control(push|pop)``. 3355The ``push`` and ``pop`` forms, including using ``push`` as the optional 3356third argument, can only occur at file scope. 3357 3358.. code-block:: c++ 3359 3360 for(...) { 3361 // This block will be compiled with -fno-fast-math and -ffp-contract=on 3362 #pragma float_control(precise, on) 3363 a = b[i] * c[i] + e; 3364 } 3365 3366Specifying an attribute for multiple declarations (#pragma clang attribute) 3367=========================================================================== 3368 3369The ``#pragma clang attribute`` directive can be used to apply an attribute to 3370multiple declarations. The ``#pragma clang attribute push`` variation of the 3371directive pushes a new "scope" of ``#pragma clang attribute`` that attributes 3372can be added to. The ``#pragma clang attribute (...)`` variation adds an 3373attribute to that scope, and the ``#pragma clang attribute pop`` variation pops 3374the scope. You can also use ``#pragma clang attribute push (...)``, which is a 3375shorthand for when you want to add one attribute to a new scope. Multiple push 3376directives can be nested inside each other. 3377 3378The attributes that are used in the ``#pragma clang attribute`` directives 3379can be written using the GNU-style syntax: 3380 3381.. code-block:: c++ 3382 3383 #pragma clang attribute push (__attribute__((annotate("custom"))), apply_to = function) 3384 3385 void function(); // The function now has the annotate("custom") attribute 3386 3387 #pragma clang attribute pop 3388 3389The attributes can also be written using the C++11 style syntax: 3390 3391.. code-block:: c++ 3392 3393 #pragma clang attribute push ([[noreturn]], apply_to = function) 3394 3395 void function(); // The function now has the [[noreturn]] attribute 3396 3397 #pragma clang attribute pop 3398 3399The ``__declspec`` style syntax is also supported: 3400 3401.. code-block:: c++ 3402 3403 #pragma clang attribute push (__declspec(dllexport), apply_to = function) 3404 3405 void function(); // The function now has the __declspec(dllexport) attribute 3406 3407 #pragma clang attribute pop 3408 3409A single push directive accepts only one attribute regardless of the syntax 3410used. 3411 3412Because multiple push directives can be nested, if you're writing a macro that 3413expands to ``_Pragma("clang attribute")`` it's good hygiene (though not 3414required) to add a namespace to your push/pop directives. A pop directive with a 3415namespace will pop the innermost push that has that same namespace. This will 3416ensure that another macro's ``pop`` won't inadvertently pop your attribute. Note 3417that an ``pop`` without a namespace will pop the innermost ``push`` without a 3418namespace. ``push``es with a namespace can only be popped by ``pop`` with the 3419same namespace. For instance: 3420 3421.. code-block:: c++ 3422 3423 #define ASSUME_NORETURN_BEGIN _Pragma("clang attribute AssumeNoreturn.push ([[noreturn]], apply_to = function)") 3424 #define ASSUME_NORETURN_END _Pragma("clang attribute AssumeNoreturn.pop") 3425 3426 #define ASSUME_UNAVAILABLE_BEGIN _Pragma("clang attribute Unavailable.push (__attribute__((unavailable)), apply_to=function)") 3427 #define ASSUME_UNAVAILABLE_END _Pragma("clang attribute Unavailable.pop") 3428 3429 3430 ASSUME_NORETURN_BEGIN 3431 ASSUME_UNAVAILABLE_BEGIN 3432 void function(); // function has [[noreturn]] and __attribute__((unavailable)) 3433 ASSUME_NORETURN_END 3434 void other_function(); // function has __attribute__((unavailable)) 3435 ASSUME_UNAVAILABLE_END 3436 3437Without the namespaces on the macros, ``other_function`` will be annotated with 3438``[[noreturn]]`` instead of ``__attribute__((unavailable))``. This may seem like 3439a contrived example, but its very possible for this kind of situation to appear 3440in real code if the pragmas are spread out across a large file. You can test if 3441your version of clang supports namespaces on ``#pragma clang attribute`` with 3442``__has_extension(pragma_clang_attribute_namespaces)``. 3443 3444Subject Match Rules 3445------------------- 3446 3447The set of declarations that receive a single attribute from the attribute stack 3448depends on the subject match rules that were specified in the pragma. Subject 3449match rules are specified after the attribute. The compiler expects an 3450identifier that corresponds to the subject set specifier. The ``apply_to`` 3451specifier is currently the only supported subject set specifier. It allows you 3452to specify match rules that form a subset of the attribute's allowed subject 3453set, i.e. the compiler doesn't require all of the attribute's subjects. For 3454example, an attribute like ``[[nodiscard]]`` whose subject set includes 3455``enum``, ``record`` and ``hasType(functionType)``, requires the presence of at 3456least one of these rules after ``apply_to``: 3457 3458.. code-block:: c++ 3459 3460 #pragma clang attribute push([[nodiscard]], apply_to = enum) 3461 3462 enum Enum1 { A1, B1 }; // The enum will receive [[nodiscard]] 3463 3464 struct Record1 { }; // The struct will *not* receive [[nodiscard]] 3465 3466 #pragma clang attribute pop 3467 3468 #pragma clang attribute push([[nodiscard]], apply_to = any(record, enum)) 3469 3470 enum Enum2 { A2, B2 }; // The enum will receive [[nodiscard]] 3471 3472 struct Record2 { }; // The struct *will* receive [[nodiscard]] 3473 3474 #pragma clang attribute pop 3475 3476 // This is an error, since [[nodiscard]] can't be applied to namespaces: 3477 #pragma clang attribute push([[nodiscard]], apply_to = any(record, namespace)) 3478 3479 #pragma clang attribute pop 3480 3481Multiple match rules can be specified using the ``any`` match rule, as shown 3482in the example above. The ``any`` rule applies attributes to all declarations 3483that are matched by at least one of the rules in the ``any``. It doesn't nest 3484and can't be used inside the other match rules. Redundant match rules or rules 3485that conflict with one another should not be used inside of ``any``. 3486 3487Clang supports the following match rules: 3488 3489- ``function``: Can be used to apply attributes to functions. This includes C++ 3490 member functions, static functions, operators, and constructors/destructors. 3491 3492- ``function(is_member)``: Can be used to apply attributes to C++ member 3493 functions. This includes members like static functions, operators, and 3494 constructors/destructors. 3495 3496- ``hasType(functionType)``: Can be used to apply attributes to functions, C++ 3497 member functions, and variables/fields whose type is a function pointer. It 3498 does not apply attributes to Objective-C methods or blocks. 3499 3500- ``type_alias``: Can be used to apply attributes to ``typedef`` declarations 3501 and C++11 type aliases. 3502 3503- ``record``: Can be used to apply attributes to ``struct``, ``class``, and 3504 ``union`` declarations. 3505 3506- ``record(unless(is_union))``: Can be used to apply attributes only to 3507 ``struct`` and ``class`` declarations. 3508 3509- ``enum``: Can be be used to apply attributes to enumeration declarations. 3510 3511- ``enum_constant``: Can be used to apply attributes to enumerators. 3512 3513- ``variable``: Can be used to apply attributes to variables, including 3514 local variables, parameters, global variables, and static member variables. 3515 It does not apply attributes to instance member variables or Objective-C 3516 ivars. 3517 3518- ``variable(is_thread_local)``: Can be used to apply attributes to thread-local 3519 variables only. 3520 3521- ``variable(is_global)``: Can be used to apply attributes to global variables 3522 only. 3523 3524- ``variable(is_local)``: Can be used to apply attributes to local variables 3525 only. 3526 3527- ``variable(is_parameter)``: Can be used to apply attributes to parameters 3528 only. 3529 3530- ``variable(unless(is_parameter))``: Can be used to apply attributes to all 3531 the variables that are not parameters. 3532 3533- ``field``: Can be used to apply attributes to non-static member variables 3534 in a record. This includes Objective-C ivars. 3535 3536- ``namespace``: Can be used to apply attributes to ``namespace`` declarations. 3537 3538- ``objc_interface``: Can be used to apply attributes to ``@interface`` 3539 declarations. 3540 3541- ``objc_protocol``: Can be used to apply attributes to ``@protocol`` 3542 declarations. 3543 3544- ``objc_category``: Can be used to apply attributes to category declarations, 3545 including class extensions. 3546 3547- ``objc_method``: Can be used to apply attributes to Objective-C methods, 3548 including instance and class methods. Implicit methods like implicit property 3549 getters and setters do not receive the attribute. 3550 3551- ``objc_method(is_instance)``: Can be used to apply attributes to Objective-C 3552 instance methods. 3553 3554- ``objc_property``: Can be used to apply attributes to ``@property`` 3555 declarations. 3556 3557- ``block``: Can be used to apply attributes to block declarations. This does 3558 not include variables/fields of block pointer type. 3559 3560The use of ``unless`` in match rules is currently restricted to a strict set of 3561sub-rules that are used by the supported attributes. That means that even though 3562``variable(unless(is_parameter))`` is a valid match rule, 3563``variable(unless(is_thread_local))`` is not. 3564 3565Supported Attributes 3566-------------------- 3567 3568Not all attributes can be used with the ``#pragma clang attribute`` directive. 3569Notably, statement attributes like ``[[fallthrough]]`` or type attributes 3570like ``address_space`` aren't supported by this directive. You can determine 3571whether or not an attribute is supported by the pragma by referring to the 3572:doc:`individual documentation for that attribute <AttributeReference>`. 3573 3574The attributes are applied to all matching declarations individually, even when 3575the attribute is semantically incorrect. The attributes that aren't applied to 3576any declaration are not verified semantically. 3577 3578Specifying section names for global objects (#pragma clang section) 3579=================================================================== 3580 3581The ``#pragma clang section`` directive provides a means to assign section-names 3582to global variables, functions and static variables. 3583 3584The section names can be specified as: 3585 3586.. code-block:: c++ 3587 3588 #pragma clang section bss="myBSS" data="myData" rodata="myRodata" relro="myRelro" text="myText" 3589 3590The section names can be reverted back to default name by supplying an empty 3591string to the section kind, for example: 3592 3593.. code-block:: c++ 3594 3595 #pragma clang section bss="" data="" text="" rodata="" relro="" 3596 3597The ``#pragma clang section`` directive obeys the following rules: 3598 3599* The pragma applies to all global variable, statics and function declarations 3600 from the pragma to the end of the translation unit. 3601 3602* The pragma clang section is enabled automatically, without need of any flags. 3603 3604* This feature is only defined to work sensibly for ELF targets. 3605 3606* If section name is specified through _attribute_((section("myname"))), then 3607 the attribute name gains precedence. 3608 3609* Global variables that are initialized to zero will be placed in the named 3610 bss section, if one is present. 3611 3612* The ``#pragma clang section`` directive does not does try to infer section-kind 3613 from the name. For example, naming a section "``.bss.mySec``" does NOT mean 3614 it will be a bss section name. 3615 3616* The decision about which section-kind applies to each global is taken in the back-end. 3617 Once the section-kind is known, appropriate section name, as specified by the user using 3618 ``#pragma clang section`` directive, is applied to that global. 3619 3620Specifying Linker Options on ELF Targets 3621======================================== 3622 3623The ``#pragma comment(lib, ...)`` directive is supported on all ELF targets. 3624The second parameter is the library name (without the traditional Unix prefix of 3625``lib``). This allows you to provide an implicit link of dependent libraries. 3626 3627Evaluating Object Size Dynamically 3628================================== 3629 3630Clang supports the builtin ``__builtin_dynamic_object_size``, the semantics are 3631the same as GCC's ``__builtin_object_size`` (which Clang also supports), but 3632``__builtin_dynamic_object_size`` can evaluate the object's size at runtime. 3633``__builtin_dynamic_object_size`` is meant to be used as a drop-in replacement 3634for ``__builtin_object_size`` in libraries that support it. 3635 3636For instance, here is a program that ``__builtin_dynamic_object_size`` will make 3637safer: 3638 3639.. code-block:: c 3640 3641 void copy_into_buffer(size_t size) { 3642 char* buffer = malloc(size); 3643 strlcpy(buffer, "some string", strlen("some string")); 3644 // Previous line preprocesses to: 3645 // __builtin___strlcpy_chk(buffer, "some string", strlen("some string"), __builtin_object_size(buffer, 0)) 3646 } 3647 3648Since the size of ``buffer`` can't be known at compile time, Clang will fold 3649``__builtin_object_size(buffer, 0)`` into ``-1``. However, if this was written 3650as ``__builtin_dynamic_object_size(buffer, 0)``, Clang will fold it into 3651``size``, providing some extra runtime safety. 3652 3653Extended Integer Types 3654====================== 3655 3656Clang supports a set of extended integer types under the syntax ``_ExtInt(N)`` 3657where ``N`` is an integer that specifies the number of bits that are used to represent 3658the type, including the sign bit. The keyword ``_ExtInt`` is a type specifier, thus 3659it can be used in any place a type can, including as a non-type-template-parameter, 3660as the type of a bitfield, and as the underlying type of an enumeration. 3661 3662An extended integer can be declared either signed, or unsigned by using the 3663``signed``/``unsigned`` keywords. If no sign specifier is used or if the ``signed`` 3664keyword is used, the extended integer type is a signed integer and can represent 3665negative values. 3666 3667The ``N`` expression is an integer constant expression, which specifies the number 3668of bits used to represent the type, following normal integer representations for 3669both signed and unsigned types. Both a signed and unsigned extended integer of the 3670same ``N`` value will have the same number of bits in its representation. Many 3671architectures don't have a way of representing non power-of-2 integers, so these 3672architectures emulate these types using larger integers. In these cases, they are 3673expected to follow the 'as-if' rule and do math 'as-if' they were done at the 3674specified number of bits. 3675 3676In order to be consistent with the C language specification, and make the extended 3677integer types useful for their intended purpose, extended integers follow the C 3678standard integer conversion ranks. An extended integer type has a greater rank than 3679any integer type with less precision. However, they have lower rank than any 3680of the built in or other integer types (such as __int128). Usual arithmetic conversions 3681also work the same, where the smaller ranked integer is converted to the larger. 3682 3683The one exception to the C rules for integers for these types is Integer Promotion. 3684Unary +, -, and ~ operators typically will promote operands to ``int``. Doing these 3685promotions would inflate the size of required hardware on some platforms, so extended 3686integer types aren't subject to the integer promotion rules in these cases. 3687 3688In languages (such as OpenCL) that define shift by-out-of-range behavior as a mask, 3689non-power-of-two versions of these types use an unsigned remainder operation to constrain 3690the value to the proper range, preventing undefined behavior. 3691 3692Extended integer types are aligned to the next greatest power-of-2 up to 64 bits. 3693The size of these types for the purposes of layout and ``sizeof`` are the number of 3694bits aligned to this calculated alignment. This permits the use of these types in 3695allocated arrays using common ``sizeof(Array)/sizeof(ElementType)`` pattern. 3696 3697Extended integer types work with the C _Atomic type modifier, however only precisions 3698that are powers-of-2 greater than 8 bit are accepted. 3699 3700Extended integer types align with existing calling conventions. They have the same size 3701and alignment as the smallest basic type that can contain them. Types that are larger 3702than 64 bits are handled in the same way as _int128 is handled; they are conceptually 3703treated as struct of register size chunks. They number of chunks are the smallest 3704number that can contain the types which does not necessarily mean a power-of-2 size. 3705 3706Intrinsics Support within Constant Expressions 3707============================================== 3708 3709The following builtin intrinsics can be used in constant expressions: 3710 3711* ``__builtin_bitreverse8`` 3712* ``__builtin_bitreverse16`` 3713* ``__builtin_bitreverse32`` 3714* ``__builtin_bitreverse64`` 3715* ``__builtin_bswap16`` 3716* ``__builtin_bswap32`` 3717* ``__builtin_bswap64`` 3718* ``__builtin_clrsb`` 3719* ``__builtin_clrsbl`` 3720* ``__builtin_clrsbll`` 3721* ``__builtin_clz`` 3722* ``__builtin_clzl`` 3723* ``__builtin_clzll`` 3724* ``__builtin_clzs`` 3725* ``__builtin_ctz`` 3726* ``__builtin_ctzl`` 3727* ``__builtin_ctzll`` 3728* ``__builtin_ctzs`` 3729* ``__builtin_ffs`` 3730* ``__builtin_ffsl`` 3731* ``__builtin_ffsll`` 3732* ``__builtin_fpclassify`` 3733* ``__builtin_inf`` 3734* ``__builtin_isinf`` 3735* ``__builtin_isinf_sign`` 3736* ``__builtin_isfinite`` 3737* ``__builtin_isnan`` 3738* ``__builtin_isnormal`` 3739* ``__builtin_nan`` 3740* ``__builtin_nans`` 3741* ``__builtin_parity`` 3742* ``__builtin_parityl`` 3743* ``__builtin_parityll`` 3744* ``__builtin_popcount`` 3745* ``__builtin_popcountl`` 3746* ``__builtin_popcountll`` 3747* ``__builtin_rotateleft8`` 3748* ``__builtin_rotateleft16`` 3749* ``__builtin_rotateleft32`` 3750* ``__builtin_rotateleft64`` 3751* ``__builtin_rotateright8`` 3752* ``__builtin_rotateright16`` 3753* ``__builtin_rotateright32`` 3754* ``__builtin_rotateright64`` 3755 3756The following x86-specific intrinsics can be used in constant expressions: 3757 3758* ``_bit_scan_forward`` 3759* ``_bit_scan_reverse`` 3760* ``__bsfd`` 3761* ``__bsfq`` 3762* ``__bsrd`` 3763* ``__bsrq`` 3764* ``__bswap`` 3765* ``__bswapd`` 3766* ``__bswap64`` 3767* ``__bswapq`` 3768* ``_castf32_u32`` 3769* ``_castf64_u64`` 3770* ``_castu32_f32`` 3771* ``_castu64_f64`` 3772* ``_mm_popcnt_u32`` 3773* ``_mm_popcnt_u64`` 3774* ``_popcnt32`` 3775* ``_popcnt64`` 3776* ``__popcntd`` 3777* ``__popcntq`` 3778* ``__rolb`` 3779* ``__rolw`` 3780* ``__rold`` 3781* ``__rolq`` 3782* ``__rorb`` 3783* ``__rorw`` 3784* ``__rord`` 3785* ``__rorq`` 3786* ``_rotl`` 3787* ``_rotr`` 3788* ``_rotwl`` 3789* ``_rotwr`` 3790* ``_lrotl`` 3791* ``_lrotr`` 3792