2015-01-23 23:10:37 +08:00
|
|
|
//===--- ShrinkToFitCheck.cpp - clang-tidy---------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ShrinkToFitCheck.h"
|
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
#include "clang/ASTMatchers/ASTMatchFinder.h"
|
|
|
|
#include "clang/Lex/Lexer.h"
|
2015-02-13 17:07:58 +08:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2015-01-23 23:10:37 +08:00
|
|
|
|
|
|
|
using namespace clang::ast_matchers;
|
|
|
|
|
2015-06-17 21:11:37 +08:00
|
|
|
namespace clang {
|
2015-01-23 23:10:37 +08:00
|
|
|
namespace tidy {
|
2015-08-31 21:17:43 +08:00
|
|
|
namespace modernize {
|
2015-01-23 23:10:37 +08:00
|
|
|
|
|
|
|
void ShrinkToFitCheck::registerMatchers(MatchFinder *Finder) {
|
|
|
|
// Swap as a function need not to be considered, because rvalue can not
|
|
|
|
// be bound to a non-const reference.
|
|
|
|
const auto ShrinkableAsMember =
|
|
|
|
memberExpr(member(valueDecl().bind("ContainerDecl")));
|
|
|
|
const auto ShrinkableAsDecl =
|
|
|
|
declRefExpr(hasDeclaration(valueDecl().bind("ContainerDecl")));
|
2016-05-31 23:26:56 +08:00
|
|
|
const auto CopyCtorCall = cxxConstructExpr(hasArgument(
|
|
|
|
0, anyOf(ShrinkableAsMember, ShrinkableAsDecl,
|
|
|
|
unaryOperator(has(ignoringParenImpCasts(ShrinkableAsMember))),
|
|
|
|
unaryOperator(has(ignoringParenImpCasts(ShrinkableAsDecl))))));
|
|
|
|
const auto SwapParam =
|
|
|
|
expr(anyOf(memberExpr(member(equalsBoundNode("ContainerDecl"))),
|
|
|
|
declRefExpr(hasDeclaration(equalsBoundNode("ContainerDecl"))),
|
|
|
|
unaryOperator(has(ignoringParenImpCasts(
|
|
|
|
memberExpr(member(equalsBoundNode("ContainerDecl")))))),
|
|
|
|
unaryOperator(has(ignoringParenImpCasts(declRefExpr(
|
|
|
|
hasDeclaration(equalsBoundNode("ContainerDecl"))))))));
|
2015-01-23 23:10:37 +08:00
|
|
|
|
|
|
|
Finder->addMatcher(
|
2016-05-31 23:26:56 +08:00
|
|
|
cxxMemberCallExpr(
|
|
|
|
on(hasType(namedDecl(
|
|
|
|
hasAnyName("std::basic_string", "std::deque", "std::vector")))),
|
|
|
|
callee(cxxMethodDecl(hasName("swap"))),
|
|
|
|
has(ignoringParenImpCasts(memberExpr(hasDescendant(CopyCtorCall)))),
|
|
|
|
hasArgument(0, SwapParam.bind("ContainerToShrink")),
|
|
|
|
unless(isInTemplateInstantiation()))
|
2015-01-23 23:10:37 +08:00
|
|
|
.bind("CopyAndSwapTrick"),
|
|
|
|
this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShrinkToFitCheck::check(const MatchFinder::MatchResult &Result) {
|
|
|
|
const LangOptions &Opts = Result.Context->getLangOpts();
|
|
|
|
|
|
|
|
if (!Opts.CPlusPlus11)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const auto *MemberCall =
|
|
|
|
Result.Nodes.getNodeAs<CXXMemberCallExpr>("CopyAndSwapTrick");
|
|
|
|
const auto *Container = Result.Nodes.getNodeAs<Expr>("ContainerToShrink");
|
|
|
|
FixItHint Hint;
|
|
|
|
|
|
|
|
if (!MemberCall->getLocStart().isMacroID()) {
|
|
|
|
std::string ReplacementText;
|
|
|
|
if (const auto *UnaryOp = llvm::dyn_cast<UnaryOperator>(Container)) {
|
|
|
|
ReplacementText =
|
|
|
|
Lexer::getSourceText(CharSourceRange::getTokenRange(
|
|
|
|
UnaryOp->getSubExpr()->getSourceRange()),
|
|
|
|
*Result.SourceManager, Opts);
|
|
|
|
ReplacementText += "->shrink_to_fit()";
|
|
|
|
} else {
|
|
|
|
ReplacementText = Lexer::getSourceText(
|
|
|
|
CharSourceRange::getTokenRange(Container->getSourceRange()),
|
|
|
|
*Result.SourceManager, Opts);
|
|
|
|
ReplacementText += ".shrink_to_fit()";
|
|
|
|
}
|
|
|
|
|
|
|
|
Hint = FixItHint::CreateReplacement(MemberCall->getSourceRange(),
|
|
|
|
ReplacementText);
|
|
|
|
}
|
|
|
|
|
|
|
|
diag(MemberCall->getLocStart(), "the shrink_to_fit method should be used "
|
|
|
|
"to reduce the capacity of a shrinkable "
|
|
|
|
"container")
|
|
|
|
<< Hint;
|
|
|
|
}
|
|
|
|
|
2015-08-31 21:17:43 +08:00
|
|
|
} // namespace modernize
|
2015-01-23 23:10:37 +08:00
|
|
|
} // namespace tidy
|
|
|
|
} // namespace clang
|