[TargetVersion] Only enable on RISC-V and AArch64 (#115991)
[llvm-project.git] / clang-tools-extra / clang-tidy / performance / MoveConstructorInitCheck.cpp
blob0f47b40280b2b98467cb7fb944320138749ad2c3
1 //===--- MoveConstructorInitCheck.cpp - clang-tidy-------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "MoveConstructorInitCheck.h"
10 #include "../utils/Matchers.h"
11 #include "clang/AST/ASTContext.h"
12 #include "clang/ASTMatchers/ASTMatchFinder.h"
14 using namespace clang::ast_matchers;
16 namespace clang::tidy::performance {
18 MoveConstructorInitCheck::MoveConstructorInitCheck(StringRef Name,
19 ClangTidyContext *Context)
20 : ClangTidyCheck(Name, Context) {}
22 void MoveConstructorInitCheck::registerMatchers(MatchFinder *Finder) {
23 Finder->addMatcher(
24 traverse(TK_AsIs,
25 cxxConstructorDecl(
26 unless(isImplicit()), isMoveConstructor(),
27 hasAnyConstructorInitializer(
28 cxxCtorInitializer(
29 withInitializer(cxxConstructExpr(hasDeclaration(
30 cxxConstructorDecl(isCopyConstructor())
31 .bind("ctor")))))
32 .bind("move-init")))),
33 this);
36 void MoveConstructorInitCheck::check(const MatchFinder::MatchResult &Result) {
37 const auto *CopyCtor = Result.Nodes.getNodeAs<CXXConstructorDecl>("ctor");
38 const auto *Initializer =
39 Result.Nodes.getNodeAs<CXXCtorInitializer>("move-init");
41 // Do not diagnose if the expression used to perform the initialization is a
42 // trivially-copyable type.
43 QualType QT = Initializer->getInit()->getType();
44 if (QT.isTriviallyCopyableType(*Result.Context))
45 return;
47 if (QT.isConstQualified())
48 return;
50 const auto *RD = QT->getAsCXXRecordDecl();
51 if (RD && RD->isTriviallyCopyable())
52 return;
54 // Diagnose when the class type has a move constructor available, but the
55 // ctor-initializer uses the copy constructor instead.
56 const CXXConstructorDecl *Candidate = nullptr;
57 for (const auto *Ctor : CopyCtor->getParent()->ctors()) {
58 if (Ctor->isMoveConstructor() && Ctor->getAccess() <= AS_protected &&
59 !Ctor->isDeleted()) {
60 // The type has a move constructor that is at least accessible to the
61 // initializer.
63 // FIXME: Determine whether the move constructor is a viable candidate
64 // for the ctor-initializer, perhaps provide a fix-it that suggests
65 // using std::move().
66 Candidate = Ctor;
67 break;
71 if (Candidate) {
72 // There's a move constructor candidate that the caller probably intended
73 // to call instead.
74 diag(Initializer->getSourceLocation(),
75 "move constructor initializes %select{class member|base class}0 by "
76 "calling a copy constructor")
77 << Initializer->isBaseInitializer();
78 diag(CopyCtor->getLocation(), "copy constructor being called",
79 DiagnosticIDs::Note);
80 diag(Candidate->getLocation(), "candidate move constructor here",
81 DiagnosticIDs::Note);
85 } // namespace clang::tidy::performance