This is currently one of our most expensive checks according to `--enable-check-profile`. I measured using [the usual setup](https://github.com/llvm/llvm-project/pull/174357#issue-3780188615): ```sh hyperfine \ --shell=none \ --prepare='cmake --build build/release --target clang-tidy' \ './build/release/bin/clang-tidy --checks=-*,readability-container-contains all_headers.cpp -header-filter=.* -system-headers -- -std=c++23 -fno-delayed-template-parsing' ``` First, the status quo: ```txt Time (mean ± σ): 5.243 s ± 0.158 s [User: 4.964 s, System: 0.248 s] Range (min … max): 5.133 s … 5.612 s 10 runs ``` This PR improves that in two independent commits. The first commit changes the default traversal mode from `TK_AsIs` to `TK_IgnoreUnlessSpelledInSource`. Result: ```txt Time (mean ± σ): 4.554 s ± 0.100 s [User: 4.273 s, System: 0.248 s] Range (min … max): 4.442 s … 4.785 s 10 runs ``` The second commit merges all 12 of the check's `BinaryOperation` matchers into one, because I found that each additional registered `BinaryOperation` matcher has pretty extreme overhead. Result: ```txt Time (mean ± σ): 3.480 s ± 0.121 s [User: 3.264 s, System: 0.186 s] Range (min … max): 3.400 s … 3.798 s 10 runs ```
130 lines
5.6 KiB
C++
130 lines
5.6 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "ContainerContainsCheck.h"
|
|
#include "clang/AST/ASTContext.h"
|
|
#include "clang/ASTMatchers/ASTMatchFinder.h"
|
|
#include "clang/Lex/Lexer.h"
|
|
|
|
using namespace clang::ast_matchers;
|
|
|
|
namespace clang::tidy::readability {
|
|
|
|
void ContainerContainsCheck::registerMatchers(MatchFinder *Finder) {
|
|
const auto Literal0 = integerLiteral(equals(0));
|
|
const auto Literal1 = integerLiteral(equals(1));
|
|
|
|
const auto ClassWithContains = cxxRecordDecl(
|
|
hasMethod(cxxMethodDecl(isConst(), parameterCountIs(1), isPublic(),
|
|
unless(isDeleted()), returns(booleanType()),
|
|
hasAnyName("contains", "Contains"))
|
|
.bind("contains_fun")));
|
|
|
|
const auto CountCall =
|
|
cxxMemberCallExpr(argumentCountIs(1),
|
|
callee(cxxMethodDecl(hasAnyName("count", "Count"),
|
|
ofClass(ClassWithContains))))
|
|
.bind("call");
|
|
|
|
const auto FindCall =
|
|
// Either one argument, or assume the second argument is the position to
|
|
// start searching from.
|
|
cxxMemberCallExpr(
|
|
anyOf(argumentCountIs(1),
|
|
allOf(argumentCountIs(2), hasArgument(1, Literal0))),
|
|
callee(cxxMethodDecl(hasAnyName("find", "Find"),
|
|
ofClass(ClassWithContains))))
|
|
.bind("call");
|
|
|
|
const auto EndCall = cxxMemberCallExpr(
|
|
argumentCountIs(0), callee(cxxMethodDecl(hasAnyName("end", "End"),
|
|
ofClass(ClassWithContains))));
|
|
|
|
const auto StringNpos = anyOf(declRefExpr(to(varDecl(hasName("npos")))),
|
|
memberExpr(member(hasName("npos"))));
|
|
|
|
Finder->addMatcher(
|
|
traverse(TK_AsIs,
|
|
implicitCastExpr(hasImplicitDestinationType(booleanType()),
|
|
hasSourceExpression(CountCall))
|
|
.bind("positiveComparison")),
|
|
this);
|
|
|
|
const auto PositiveComparison =
|
|
anyOf(allOf(hasOperatorName("!="), hasOperands(CountCall, Literal0)),
|
|
allOf(hasLHS(CountCall), hasOperatorName(">"), hasRHS(Literal0)),
|
|
allOf(hasLHS(Literal0), hasOperatorName("<"), hasRHS(CountCall)),
|
|
allOf(hasLHS(CountCall), hasOperatorName(">="), hasRHS(Literal1)),
|
|
allOf(hasLHS(Literal1), hasOperatorName("<="), hasRHS(CountCall)),
|
|
allOf(hasOperatorName("!="),
|
|
hasOperands(FindCall, anyOf(EndCall, StringNpos))));
|
|
|
|
const auto NegativeComparison =
|
|
anyOf(allOf(hasOperatorName("=="), hasOperands(CountCall, Literal0)),
|
|
allOf(hasLHS(CountCall), hasOperatorName("<="), hasRHS(Literal0)),
|
|
allOf(hasLHS(Literal0), hasOperatorName(">="), hasRHS(CountCall)),
|
|
allOf(hasLHS(CountCall), hasOperatorName("<"), hasRHS(Literal1)),
|
|
allOf(hasLHS(Literal1), hasOperatorName(">"), hasRHS(CountCall)),
|
|
allOf(hasOperatorName("=="),
|
|
hasOperands(FindCall, anyOf(EndCall, StringNpos))));
|
|
|
|
Finder->addMatcher(
|
|
binaryOperation(
|
|
anyOf(allOf(PositiveComparison, expr().bind("positiveComparison")),
|
|
allOf(NegativeComparison, expr().bind("negativeComparison")))),
|
|
this);
|
|
}
|
|
|
|
void ContainerContainsCheck::check(const MatchFinder::MatchResult &Result) {
|
|
// Extract the information about the match
|
|
const auto *Call = Result.Nodes.getNodeAs<CXXMemberCallExpr>("call");
|
|
const auto *PositiveComparison =
|
|
Result.Nodes.getNodeAs<Expr>("positiveComparison");
|
|
const auto *NegativeComparison =
|
|
Result.Nodes.getNodeAs<Expr>("negativeComparison");
|
|
assert((!PositiveComparison || !NegativeComparison) &&
|
|
"only one of PositiveComparison or NegativeComparison should be set");
|
|
const bool Negated = NegativeComparison != nullptr;
|
|
const auto *Comparison = Negated ? NegativeComparison : PositiveComparison;
|
|
const StringRef ContainsFunName =
|
|
Result.Nodes.getNodeAs<CXXMethodDecl>("contains_fun")->getName();
|
|
const Expr *SearchExpr = Call->getArg(0)->IgnoreParenImpCasts();
|
|
|
|
// Diagnose the issue.
|
|
auto Diag = diag(Call->getExprLoc(), "use '%0' to check for membership")
|
|
<< ContainsFunName;
|
|
|
|
// Don't fix it if it's in a macro invocation. Leave fixing it to the user.
|
|
const SourceLocation FuncCallLoc = Comparison->getEndLoc();
|
|
if (!FuncCallLoc.isValid() || FuncCallLoc.isMacroID())
|
|
return;
|
|
|
|
const StringRef SearchExprText = Lexer::getSourceText(
|
|
CharSourceRange::getTokenRange(SearchExpr->getSourceRange()),
|
|
*Result.SourceManager, Result.Context->getLangOpts());
|
|
|
|
// Remove everything before the function call.
|
|
Diag << FixItHint::CreateRemoval(CharSourceRange::getCharRange(
|
|
Comparison->getBeginLoc(), Call->getBeginLoc()));
|
|
|
|
// Rename the function to `contains`.
|
|
Diag << FixItHint::CreateReplacement(Call->getExprLoc(), ContainsFunName);
|
|
|
|
// Replace arguments and everything after the function call.
|
|
Diag << FixItHint::CreateReplacement(
|
|
CharSourceRange::getTokenRange(Call->getArg(0)->getBeginLoc(),
|
|
Comparison->getEndLoc()),
|
|
(SearchExprText + ")").str());
|
|
|
|
// Add negation if necessary.
|
|
if (Negated)
|
|
Diag << FixItHint::CreateInsertion(Call->getBeginLoc(), "!");
|
|
}
|
|
|
|
} // namespace clang::tidy::readability
|