Alexander Kornienko | 1b677db | 2015-03-09 12:18:39 +0000 | [diff] [blame] | 1 | //===--- ContainerSizeEmptyCheck.cpp - clang-tidy -------------------------===// |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
Alexander Kornienko | 1b677db | 2015-03-09 12:18:39 +0000 | [diff] [blame] | 9 | #include "ContainerSizeEmptyCheck.h" |
Kirill Bobyrev | acb6b35 | 2016-09-13 08:58:11 +0000 | [diff] [blame] | 10 | #include "../utils/Matchers.h" |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 11 | #include "clang/AST/ASTContext.h" |
| 12 | #include "clang/ASTMatchers/ASTMatchers.h" |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 13 | #include "clang/Lex/Lexer.h" |
Chandler Carruth | f766278 | 2015-02-13 09:07:58 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/StringRef.h" |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 15 | |
| 16 | using namespace clang::ast_matchers; |
| 17 | |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 18 | namespace clang { |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 19 | namespace tidy { |
| 20 | namespace readability { |
| 21 | |
| 22 | ContainerSizeEmptyCheck::ContainerSizeEmptyCheck(StringRef Name, |
| 23 | ClangTidyContext *Context) |
| 24 | : ClangTidyCheck(Name, Context) {} |
| 25 | |
| 26 | void ContainerSizeEmptyCheck::registerMatchers(MatchFinder *Finder) { |
Aaron Ballman | 1f1b067 | 2015-09-02 16:05:21 +0000 | [diff] [blame] | 27 | // Only register the matchers for C++; the functionality currently does not |
| 28 | // provide any benefit to other languages, despite being benign. |
| 29 | if (!getLangOpts().CPlusPlus) |
| 30 | return; |
| 31 | |
Kirill Bobyrev | 0d0bbfd | 2016-09-13 10:19:13 +0000 | [diff] [blame] | 32 | const auto ValidContainer = cxxRecordDecl(isSameOrDerivedFrom( |
Kirill Bobyrev | acb6b35 | 2016-09-13 08:58:11 +0000 | [diff] [blame] | 33 | namedDecl( |
| 34 | has(cxxMethodDecl( |
| 35 | isConst(), parameterCountIs(0), isPublic(), hasName("size"), |
| 36 | returns(qualType(isInteger(), unless(booleanType())))) |
| 37 | .bind("size")), |
| 38 | has(cxxMethodDecl(isConst(), parameterCountIs(0), isPublic(), |
| 39 | hasName("empty"), returns(booleanType())) |
| 40 | .bind("empty"))) |
| 41 | .bind("container"))); |
Etienne Bergeron | 9d26599 | 2016-04-21 16:57:56 +0000 | [diff] [blame] | 42 | |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 43 | const auto WrongUse = anyOf( |
Gabor Horvath | 533c01d | 2016-04-19 13:29:05 +0000 | [diff] [blame] | 44 | hasParent(binaryOperator( |
Etienne Bergeron | 9d26599 | 2016-04-21 16:57:56 +0000 | [diff] [blame] | 45 | matchers::isComparisonOperator(), |
Gabor Horvath | 533c01d | 2016-04-19 13:29:05 +0000 | [diff] [blame] | 46 | hasEitherOperand(ignoringImpCasts(anyOf( |
| 47 | integerLiteral(equals(1)), integerLiteral(equals(0)))))) |
| 48 | .bind("SizeBinaryOp")), |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 49 | hasParent(implicitCastExpr( |
Gabor Horvath | a4fd3be | 2016-02-09 09:26:11 +0000 | [diff] [blame] | 50 | hasImplicitDestinationType(booleanType()), |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 51 | anyOf( |
| 52 | hasParent(unaryOperator(hasOperatorName("!")).bind("NegOnSize")), |
| 53 | anything()))), |
Gabor Horvath | a4fd3be | 2016-02-09 09:26:11 +0000 | [diff] [blame] | 54 | hasParent(explicitCastExpr(hasDestinationType(booleanType())))); |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 55 | |
| 56 | Finder->addMatcher( |
Kirill Bobyrev | 0d0bbfd | 2016-09-13 10:19:13 +0000 | [diff] [blame] | 57 | cxxMemberCallExpr(on(expr(anyOf(hasType(ValidContainer), |
| 58 | hasType(pointsTo(ValidContainer)), |
| 59 | hasType(references(ValidContainer)))) |
Kirill Bobyrev | acb6b35 | 2016-09-13 08:58:11 +0000 | [diff] [blame] | 60 | .bind("STLObject")), |
Alexander Kornienko | b5ca17f | 2016-12-21 23:44:23 +0000 | [diff] [blame^] | 61 | callee(cxxMethodDecl(hasName("size"))), WrongUse, |
| 62 | unless(hasAncestor(cxxMethodDecl( |
| 63 | ofClass(equalsBoundNode("container")))))) |
Aaron Ballman | b9ea09c | 2015-09-17 13:31:25 +0000 | [diff] [blame] | 64 | .bind("SizeCallExpr"), |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 65 | this); |
| 66 | } |
| 67 | |
| 68 | void ContainerSizeEmptyCheck::check(const MatchFinder::MatchResult &Result) { |
| 69 | const auto *MemberCall = |
| 70 | Result.Nodes.getNodeAs<CXXMemberCallExpr>("SizeCallExpr"); |
| 71 | const auto *BinaryOp = Result.Nodes.getNodeAs<BinaryOperator>("SizeBinaryOp"); |
| 72 | const auto *E = Result.Nodes.getNodeAs<Expr>("STLObject"); |
| 73 | FixItHint Hint; |
Gabor Horvath | afad84c | 2016-09-24 02:13:45 +0000 | [diff] [blame] | 74 | std::string ReplacementText = |
| 75 | Lexer::getSourceText(CharSourceRange::getTokenRange(E->getSourceRange()), |
| 76 | *Result.SourceManager, getLangOpts()); |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 77 | if (E->getType()->isPointerType()) |
| 78 | ReplacementText += "->empty()"; |
| 79 | else |
| 80 | ReplacementText += ".empty()"; |
| 81 | |
| 82 | if (BinaryOp) { // Determine the correct transformation. |
| 83 | bool Negation = false; |
Gabor Horvath | a4e35ec | 2015-12-12 11:31:25 +0000 | [diff] [blame] | 84 | const bool ContainerIsLHS = |
| 85 | !llvm::isa<IntegerLiteral>(BinaryOp->getLHS()->IgnoreImpCasts()); |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 86 | const auto OpCode = BinaryOp->getOpcode(); |
| 87 | uint64_t Value = 0; |
| 88 | if (ContainerIsLHS) { |
Gabor Horvath | a4e35ec | 2015-12-12 11:31:25 +0000 | [diff] [blame] | 89 | if (const auto *Literal = llvm::dyn_cast<IntegerLiteral>( |
| 90 | BinaryOp->getRHS()->IgnoreImpCasts())) |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 91 | Value = Literal->getValue().getLimitedValue(); |
| 92 | else |
| 93 | return; |
| 94 | } else { |
Gabor Horvath | a4e35ec | 2015-12-12 11:31:25 +0000 | [diff] [blame] | 95 | Value = |
| 96 | llvm::dyn_cast<IntegerLiteral>(BinaryOp->getLHS()->IgnoreImpCasts()) |
| 97 | ->getValue() |
| 98 | .getLimitedValue(); |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | // Constant that is not handled. |
| 102 | if (Value > 1) |
| 103 | return; |
| 104 | |
Gabor Horvath | 533c01d | 2016-04-19 13:29:05 +0000 | [diff] [blame] | 105 | if (Value == 1 && (OpCode == BinaryOperatorKind::BO_EQ || |
| 106 | OpCode == BinaryOperatorKind::BO_NE)) |
| 107 | return; |
| 108 | |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 109 | // Always true, no warnings for that. |
| 110 | if ((OpCode == BinaryOperatorKind::BO_GE && Value == 0 && ContainerIsLHS) || |
| 111 | (OpCode == BinaryOperatorKind::BO_LE && Value == 0 && !ContainerIsLHS)) |
| 112 | return; |
| 113 | |
Gabor Horvath | 1f30cf6 | 2015-12-28 17:20:33 +0000 | [diff] [blame] | 114 | // Do not warn for size > 1, 1 < size, size <= 1, 1 >= size. |
| 115 | if (Value == 1) { |
| 116 | if ((OpCode == BinaryOperatorKind::BO_GT && ContainerIsLHS) || |
| 117 | (OpCode == BinaryOperatorKind::BO_LT && !ContainerIsLHS)) |
| 118 | return; |
| 119 | if ((OpCode == BinaryOperatorKind::BO_LE && ContainerIsLHS) || |
| 120 | (OpCode == BinaryOperatorKind::BO_GE && !ContainerIsLHS)) |
| 121 | return; |
| 122 | } |
Gabor Horvath | c6ff9c3 | 2015-12-21 09:43:52 +0000 | [diff] [blame] | 123 | |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 124 | if (OpCode == BinaryOperatorKind::BO_NE && Value == 0) |
| 125 | Negation = true; |
| 126 | if ((OpCode == BinaryOperatorKind::BO_GT || |
| 127 | OpCode == BinaryOperatorKind::BO_GE) && |
| 128 | ContainerIsLHS) |
| 129 | Negation = true; |
| 130 | if ((OpCode == BinaryOperatorKind::BO_LT || |
| 131 | OpCode == BinaryOperatorKind::BO_LE) && |
| 132 | !ContainerIsLHS) |
| 133 | Negation = true; |
| 134 | |
| 135 | if (Negation) |
| 136 | ReplacementText = "!" + ReplacementText; |
| 137 | Hint = FixItHint::CreateReplacement(BinaryOp->getSourceRange(), |
| 138 | ReplacementText); |
| 139 | |
| 140 | } else { |
| 141 | // If there is a conversion above the size call to bool, it is safe to just |
| 142 | // replace size with empty. |
| 143 | if (const auto *UnaryOp = |
| 144 | Result.Nodes.getNodeAs<UnaryOperator>("NegOnSize")) |
| 145 | Hint = FixItHint::CreateReplacement(UnaryOp->getSourceRange(), |
| 146 | ReplacementText); |
| 147 | else |
| 148 | Hint = FixItHint::CreateReplacement(MemberCall->getSourceRange(), |
| 149 | "!" + ReplacementText); |
| 150 | } |
Kirill Bobyrev | acb6b35 | 2016-09-13 08:58:11 +0000 | [diff] [blame] | 151 | |
Alexander Kornienko | 301130e | 2015-11-09 15:53:28 +0000 | [diff] [blame] | 152 | diag(MemberCall->getLocStart(), "the 'empty' method should be used to check " |
| 153 | "for emptiness instead of 'size'") |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 154 | << Hint; |
Kirill Bobyrev | acb6b35 | 2016-09-13 08:58:11 +0000 | [diff] [blame] | 155 | |
| 156 | const auto *Container = Result.Nodes.getNodeAs<NamedDecl>("container"); |
| 157 | const auto *Empty = Result.Nodes.getNodeAs<FunctionDecl>("empty"); |
| 158 | |
| 159 | diag(Empty->getLocation(), "method %0::empty() defined here", |
| 160 | DiagnosticIDs::Note) |
| 161 | << Container; |
Alexander Kornienko | 4babd68 | 2015-01-15 15:46:58 +0000 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | } // namespace readability |
| 165 | } // namespace tidy |
| 166 | } // namespace clang |