2015-02-10 17:14:26 +08:00
|
|
|
//===--- InaccurateEraseCheck.cpp - clang-tidy-----------------------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2015-02-10 17:14:26 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "InaccurateEraseCheck.h"
|
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
#include "clang/ASTMatchers/ASTMatchFinder.h"
|
|
|
|
#include "clang/Lex/Lexer.h"
|
|
|
|
|
|
|
|
using namespace clang::ast_matchers;
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace tidy {
|
2017-11-24 22:16:29 +08:00
|
|
|
namespace bugprone {
|
2015-02-10 17:14:26 +08:00
|
|
|
|
|
|
|
void InaccurateEraseCheck::registerMatchers(MatchFinder *Finder) {
|
2015-08-29 03:27:19 +08:00
|
|
|
// Only register the matchers for C++; the functionality currently does not
|
|
|
|
// provide any benefit to other languages, despite being benign.
|
2015-08-31 23:28:57 +08:00
|
|
|
if (!getLangOpts().CPlusPlus)
|
|
|
|
return;
|
2015-02-10 17:14:26 +08:00
|
|
|
|
2017-06-07 16:25:51 +08:00
|
|
|
const auto EndCall =
|
|
|
|
callExpr(
|
|
|
|
callee(functionDecl(hasAnyName("remove", "remove_if", "unique"))),
|
|
|
|
hasArgument(
|
|
|
|
1,
|
|
|
|
anyOf(cxxConstructExpr(has(ignoringImplicit(
|
|
|
|
cxxMemberCallExpr(callee(cxxMethodDecl(hasName("end"))))
|
|
|
|
.bind("end")))),
|
|
|
|
anything())))
|
|
|
|
.bind("alg");
|
2015-08-31 23:28:57 +08:00
|
|
|
|
2017-08-02 21:13:11 +08:00
|
|
|
const auto DeclInStd = type(hasUnqualifiedDesugaredType(
|
|
|
|
tagType(hasDeclaration(decl(isInStdNamespace())))));
|
2015-08-31 23:28:57 +08:00
|
|
|
Finder->addMatcher(
|
2015-09-17 21:31:25 +08:00
|
|
|
cxxMemberCallExpr(
|
2017-06-07 01:49:45 +08:00
|
|
|
on(anyOf(hasType(DeclInStd), hasType(pointsTo(DeclInStd)))),
|
2015-09-17 21:31:25 +08:00
|
|
|
callee(cxxMethodDecl(hasName("erase"))), argumentCountIs(1),
|
2017-06-07 16:25:51 +08:00
|
|
|
hasArgument(0, has(ignoringImplicit(
|
|
|
|
anyOf(EndCall, has(ignoringImplicit(EndCall)))))),
|
2015-08-31 23:28:57 +08:00
|
|
|
unless(isInTemplateInstantiation()))
|
2017-06-07 16:25:51 +08:00
|
|
|
.bind("erase"),
|
2015-08-31 23:28:57 +08:00
|
|
|
this);
|
2015-02-10 17:14:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void InaccurateEraseCheck::check(const MatchFinder::MatchResult &Result) {
|
|
|
|
const auto *MemberCall =
|
2017-06-07 16:25:51 +08:00
|
|
|
Result.Nodes.getNodeAs<CXXMemberCallExpr>("erase");
|
2015-02-10 17:14:26 +08:00
|
|
|
const auto *EndExpr =
|
2017-06-07 16:25:51 +08:00
|
|
|
Result.Nodes.getNodeAs<CXXMemberCallExpr>("end");
|
2018-08-10 06:42:26 +08:00
|
|
|
const SourceLocation Loc = MemberCall->getBeginLoc();
|
2015-02-10 17:14:26 +08:00
|
|
|
|
|
|
|
FixItHint Hint;
|
|
|
|
|
|
|
|
if (!Loc.isMacroID() && EndExpr) {
|
2017-06-07 16:25:51 +08:00
|
|
|
const auto *AlgCall = Result.Nodes.getNodeAs<CallExpr>("alg");
|
2020-01-29 03:23:46 +08:00
|
|
|
std::string ReplacementText = std::string(Lexer::getSourceText(
|
2015-02-10 17:14:26 +08:00
|
|
|
CharSourceRange::getTokenRange(EndExpr->getSourceRange()),
|
2020-01-29 03:23:46 +08:00
|
|
|
*Result.SourceManager, getLangOpts()));
|
2015-02-10 17:14:26 +08:00
|
|
|
const SourceLocation EndLoc = Lexer::getLocForEndOfToken(
|
2018-08-10 06:43:02 +08:00
|
|
|
AlgCall->getEndLoc(), 0, *Result.SourceManager, getLangOpts());
|
2015-02-10 17:14:26 +08:00
|
|
|
Hint = FixItHint::CreateInsertion(EndLoc, ", " + ReplacementText);
|
|
|
|
}
|
|
|
|
|
|
|
|
diag(Loc, "this call will remove at most one item even when multiple items "
|
|
|
|
"should be removed")
|
|
|
|
<< Hint;
|
|
|
|
}
|
|
|
|
|
2017-11-24 22:16:29 +08:00
|
|
|
} // namespace bugprone
|
2015-02-10 17:14:26 +08:00
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|