[cfe-dev] Could clang produce a warning for definite mis-use of __attribute__((const))

Roman Lebedev via cfe-dev cfe-dev at lists.llvm.org
Tue Aug 27 14:17:31 PDT 2019


On Wed, Aug 28, 2019 at 12:11 AM Michael Worcester via cfe-dev
<cfe-dev at lists.llvm.org> wrote:
>
> Hi,
>
> Could clang detect a C++ methods that has been annotated with __attribute__((const)) that accesses the "this" pointer and produce an error?
>
> https://godbolt.org/z/QUivmv
>
> The docs do make it clear that the functions must not access any memory even if that memory is accessed through its arguments, but it's quite easy to forget the implicit "this" argument for member functions, and finding the error is, while fun, a bit embarrassing.
>
> Note that a function that has pointer arguments and examines the data pointed to must not be declared const if the pointed-to data might change between successive invocations of the function. In general, since a function cannot distinguish data that might change from data that cannot, const functions should never take pointer or, in C++, reference arguments. Likewise, a function that calls a non-const function usually must not be const itself.
>

> "if the pointed-to data might change between successive invocations of the function"
*If*
I think this should *not* be a clang warning, but clang-tidy check.

>
> --
> Michael
Roman

> _______________________________________________
> cfe-dev mailing list
> cfe-dev at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev



More information about the cfe-dev mailing list