[clang] 8858ddd - [Clang][Docs] Documented sentinel attribute (#196088)
via cfe-commits
cfe-commits at lists.llvm.org
Thu Jun 4 07:49:45 PDT 2026
Author: Tony Guillot
Date: 2026-06-04T16:49:40+02:00
New Revision: 8858ddd8a4735ae120855beb23b3e97dae1887ac
URL: https://github.com/llvm/llvm-project/commit/8858ddd8a4735ae120855beb23b3e97dae1887ac
DIFF: https://github.com/llvm/llvm-project/commit/8858ddd8a4735ae120855beb23b3e97dae1887ac.diff
LOG: [Clang][Docs] Documented sentinel attribute (#196088)
The documentation of the sentinel attribute was missing, this PR
documents the behavior of the sentinel attribute.
Added:
Modified:
clang/include/clang/Basic/Attr.td
clang/include/clang/Basic/AttrDocs.td
Removed:
################################################################################
diff --git a/clang/include/clang/Basic/Attr.td b/clang/include/clang/Basic/Attr.td
index e53d6dd20f824..7af72333d651c 100644
--- a/clang/include/clang/Basic/Attr.td
+++ b/clang/include/clang/Basic/Attr.td
@@ -3415,7 +3415,7 @@ def Sentinel : InheritableAttr {
let Args = [DefaultIntArgument<"Sentinel", 0>,
DefaultIntArgument<"NullPos", 0>];
// let Subjects = SubjectList<[Function, ObjCMethod, Block, Var]>;
- let Documentation = [Undocumented];
+ let Documentation = [SentinelDocs];
}
def StdCall : DeclOrTypeAttr {
diff --git a/clang/include/clang/Basic/AttrDocs.td b/clang/include/clang/Basic/AttrDocs.td
index 6eae86b7f7f16..f54f8e8f90596 100644
--- a/clang/include/clang/Basic/AttrDocs.td
+++ b/clang/include/clang/Basic/AttrDocs.td
@@ -9314,8 +9314,8 @@ def HLSLMatrixLayoutDocs : Documentation {
let Category = DocCatVariable;
let Heading = "row_major, column_major";
let Content = [{
-The ``row_major`` and ``column_major`` keywords specify the memory layout
-of an HLSL matrix type.
+The ``row_major`` and ``column_major`` keywords specify the memory layout
+of an HLSL matrix type.
* ``row_major``: Matrices are stored in memory row-by-row.
* ``column_major``: Matrices are stored in memory column-by-column (default).
@@ -10055,3 +10055,65 @@
diff erent languages to coexist on the same call stack while each interpreting
exceptions according to their own rules.
}];
}
+
+def SentinelDocs : Documentation {
+ let Category = DocCatFunction;
+ let Content = [{
+The ``sentinel`` attribute can be applied to variadic functions and pointers to
+variadic functions, to diagnose each function call that does not pass a
+sentinel value (a null pointer constant) as the last argument to the function
+call. The attribute accepts two optional arguments: the first argument is the
+position of the expected sentinel value, starting from the last parameter. The
+second argument describes whether the last fixed parameter is treated as a
+valid sentinel value when set to '1'.
+All arguments described above defaults to '0' when elided.
+The attribute is also supported with blocks and in Objective-C.
+
+.. code-block:: c
+
+ void foo(const char*, ...) __attribute__((sentinel));
+ void bar(int, ...) __attribute__((sentinel(1)));
+ void baz(const char*, const char*, ...) __attribute__((sentinel(0, 1)));
+
+ void example() {
+ foo("Example", (void*)0);
+ foo("Another", "example", NULL);
+ foo("Missing", "sentinel"); // Not OK
+
+ bar(1, 2, NULL, 3); // OK: sentinel value at the 2nd to last positon
+ bar(1, 2, 3, nullptr, 4); // OK: `nullptr` is valid in C23
+ bar(1, 2, 3, 4, NULL); // Not OK
+
+ baz("Test", "with", "multiple", "args", NULL);
+ baz("One", NULL); // OK: last fixed parameter is a valid sentinel
+
+ void (*ptr) (int arg, ...) __attribute__ ((__sentinel__));
+ ptr(1, 2, 3, NULL);
+ }
+
+.. code-block:: c++
+
+ struct Ty {
+ int value;
+
+ template<typename T>
+ auto&& foo(T&& val, ...) __attribute__((sentinel(1))) {
+ return std::forward<T>(val);
+ }
+
+ template<class Self>
+ auto&& bar(this Self&& self, ...) __attribute__((sentinel(1))) {
+ return std::forward<Self>(self).value;
+ }
+ };
+
+ void example2() {
+ auto sty = Ty{};
+ sty.foo(1, nullptr, 3);
+ sty.bar(1, nullptr, 3);
+
+ auto lmbd = [](int a, ...) __attribute__((sentinel)) {};
+ lmbd(1, 2, nullptr);
+ }
+ }];
+}
More information about the cfe-commits
mailing list