[PATCH] D47225: Add nonnull; use it for atomics
JF Bastien via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue May 22 13:39:12 PDT 2018
jfb created this revision.
jfb added reviewers: arphaman, EricWF.
Herald added subscribers: cfe-commits, christof, aheejin.
The atomic non-member functions accept pointers to std::atomic / std::atomic_flag as well as to the non-atomic value. These are all dereferenced unconditionally when lowered, and therefore will fault if null. It's a tiny gotcha for new users, especially when they pass in NULL as expected value (instead of passing a pointer to a NULL value). We can therefore use the nonnull attribute to denote that:
- A warning should be generated if the argument is null
- It is undefined behavior if the argument is null (because a dereference will segfault)
This patch adds support for this attribute for clang and GCC, and sticks to the subset of the syntax both supports. In particular, work around this GCC oddity:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60625
The attributes are documented:
- https://gcc.gnu.org/onlinedocs/gcc-4.0.0/gcc/Function-Attributes.html
- https://clang.llvm.org/docs/AttributeReference.html#nullability-attributes
I'm authoring a companion clang patch for the __c11_* and __atomic_* builtins, which currently only warn on a subset of the pointer parameters.
In all cases the check needs to be explicit and not use the empty nonnull list, because some of the overloads are for atomic<T*> and the values themselves are allowed to be null.
rdar://problem/18473124
Repository:
rCXX libc++
https://reviews.llvm.org/D47225
Files:
include/__config
include/atomic
test/libcxx/atomics/diagnose_nonnull.fail.cpp
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D47225.148094.patch
Type: text/x-patch
Size: 32557 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180522/5a2c764c/attachment-0001.bin>
More information about the cfe-commits
mailing list