[PATCH] D120205: Restore documentation for __builtin_assume
serge via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 22 08:20:27 PST 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG79c9072dc009: Restore documentation for __builtin_assume (authored by serge-sans-paille).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D120205/new/
https://reviews.llvm.org/D120205
Files:
clang/docs/LanguageExtensions.rst
Index: clang/docs/LanguageExtensions.rst
===================================================================
--- clang/docs/LanguageExtensions.rst
+++ clang/docs/LanguageExtensions.rst
@@ -2205,6 +2205,39 @@
.. _langext-__builtin_assume:
+``__builtin_assume``
+--------------------
+
+``__builtin_assume`` is used to provide the optimizer with a boolean
+invariant that is defined to be true.
+
+**Syntax**:
+
+.. code-block:: c++
+
+ __builtin_assume(bool)
+
+**Example of Use**:
+
+.. code-block:: c++
+
+ int foo(int x) {
+ __builtin_assume(x != 0);
+ // The optimizer may short-circuit this check using the invariant.
+ if (x == 0)
+ return do_something();
+ return do_something_else();
+ }
+
+**Description**:
+
+The boolean argument to this function is defined to be true. The optimizer may
+analyze the form of the expression provided as the argument and deduce from
+that information used to optimize the program. If the condition is violated
+during execution, the behavior is undefined. The argument itself is
+
+Query for this feature with ``__has_builtin(__builtin_assume)``.
+
``__builtin_call_with_static_chain``
------------------------------------
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D120205.410542.patch
Type: text/x-patch
Size: 1210 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220222/33e3ca5c/attachment.bin>
More information about the cfe-commits
mailing list