llvm-project/clang/test/Analysis/use-after-move-invalidation.cpp
guillem-bartrina-sonarsource f9e0fa8ba4
[analyzer] MoveChecker: correct invalidation of this-regions (#169626)
By completely omitting invalidation in the case of InstanceCall, we do
not clear the moved state of the fields of the this object after an
opaque call to a member function of the object itself.
2025-12-08 11:00:54 +00:00

52 lines
1.9 KiB
C++

// RUN: %clang_analyze_cc1 -analyzer-checker=cplusplus.Move %s -std=c++11\
// RUN: -analyzer-output=text
#include "Inputs/system-header-simulator-cxx.h"
class C {
int n;
public:
void memberFun();
};
template <class... Ts> void opaqueFreeFun(Ts...);
class Foo {
std::unique_ptr<C> up;
void opaqueMemberFun();
void testOpaqueMemberFun() {
auto tmp = std::move(up);
opaqueMemberFun(); // clears region state
(void)up->memberFun(); // no-warning
}
void testOpaqueFreeFun() {
auto tmp = std::move(up); // expected-note{{Smart pointer 'up' of type 'std::unique_ptr' is reset to null when moved from}}
opaqueFreeFun(); // does not clear region state
(void)up->memberFun(); // expected-warning{{Dereference of null smart pointer 'up' of type 'std::unique_ptr'}}
// expected-note@-1{{Dereference of null smart pointer 'up' of type 'std::unique_ptr'}}
}
};
void testInstanceMemberFun(C c) {
auto tmp1 = std::move(c); // expected-note{{Object 'c' is moved}}
auto tmp2 = std::move(c); // expected-warning{{Moved-from object 'c' is moved}}
// expected-note@-1{{Moved-from object 'c' is moved}}
auto tmp3 = std::move(c);
c.memberFun(); // does not clear region state
auto tmp4 = std::move(c);
auto tmp5 = std::move(c); // no-warning
}
void testPassByRef(C c) {
auto tmp1 = std::move(c); // expected-note{{Object 'c' is moved}}
auto tmp2 = std::move(c); // expected-warning{{Moved-from object 'c' is moved}}
// expected-note@-1{{Moved-from object 'c' is moved}}
auto tmp3 = std::move(c);
opaqueFreeFun<C&>(c); // clears region state
auto tmp4 = std::move(c); // expected-note{{Object 'c' is moved}}
auto tmp5 = std::move(c); // expected-warning{{Moved-from object 'c' is moved}}
// expected-note@-1{{Moved-from object 'c' is moved}}
}