[llvm] r374102 - Mark several PointerIntPair methods as lvalue-only
David Blaikie via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 14 15:43:32 PDT 2019
Seems like a losing race to try to flag every API surface area that might
have this problem.
Is it worth considering a clang-tidy or full clang warning for cases like
this? (& could diagnose the usage directly)
On Tue, Oct 8, 2019 at 11:59 AM Jordan Rose via llvm-commits <
llvm-commits at lists.llvm.org> wrote:
> Author: jrose
> Date: Tue Oct 8 12:01:48 2019
> New Revision: 374102
>
> URL: http://llvm.org/viewvc/llvm-project?rev=374102&view=rev
> Log:
> Mark several PointerIntPair methods as lvalue-only
>
> No point in mutating 'this' if it's just going to be thrown away.
>
> https://reviews.llvm.org/D63945
>
> Modified:
> llvm/trunk/include/llvm/ADT/PointerIntPair.h
>
> Modified: llvm/trunk/include/llvm/ADT/PointerIntPair.h
> URL:
> http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/PointerIntPair.h?rev=374102&r1=374101&r2=374102&view=diff
>
> ==============================================================================
> --- llvm/trunk/include/llvm/ADT/PointerIntPair.h (original)
> +++ llvm/trunk/include/llvm/ADT/PointerIntPair.h Tue Oct 8 12:01:48 2019
> @@ -13,6 +13,7 @@
> #ifndef LLVM_ADT_POINTERINTPAIR_H
> #define LLVM_ADT_POINTERINTPAIR_H
>
> +#include "llvm/Support/Compiler.h"
> #include "llvm/Support/PointerLikeTypeTraits.h"
> #include "llvm/Support/type_traits.h"
> #include <cassert>
> @@ -59,19 +60,19 @@ public:
>
> IntType getInt() const { return (IntType)Info::getInt(Value); }
>
> - void setPointer(PointerTy PtrVal) {
> + void setPointer(PointerTy PtrVal) LLVM_LVALUE_FUNCTION {
> Value = Info::updatePointer(Value, PtrVal);
> }
>
> - void setInt(IntType IntVal) {
> + void setInt(IntType IntVal) LLVM_LVALUE_FUNCTION {
> Value = Info::updateInt(Value, static_cast<intptr_t>(IntVal));
> }
>
> - void initWithPointer(PointerTy PtrVal) {
> + void initWithPointer(PointerTy PtrVal) LLVM_LVALUE_FUNCTION {
> Value = Info::updatePointer(0, PtrVal);
> }
>
> - void setPointerAndInt(PointerTy PtrVal, IntType IntVal) {
> + void setPointerAndInt(PointerTy PtrVal, IntType IntVal)
> LLVM_LVALUE_FUNCTION {
> Value = Info::updateInt(Info::updatePointer(0, PtrVal),
> static_cast<intptr_t>(IntVal));
> }
> @@ -89,7 +90,7 @@ public:
>
> void *getOpaqueValue() const { return reinterpret_cast<void *>(Value); }
>
> - void setFromOpaqueValue(void *Val) {
> + void setFromOpaqueValue(void *Val) LLVM_LVALUE_FUNCTION {
> Value = reinterpret_cast<intptr_t>(Val);
> }
>
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at lists.llvm.org
> https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191014/434ef976/attachment.html>
More information about the llvm-commits
mailing list