1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
//===--- UseNoexceptCheck.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 "UseNoexceptCheck.h"
#include "clang/AST/ASTContext.h"
#include "clang/Lex/Lexer.h"
using namespace clang::ast_matchers;
namespace clang {
namespace tidy {
namespace modernize {
UseNoexceptCheck::UseNoexceptCheck(StringRef Name, ClangTidyContext *Context)
: ClangTidyCheck(Name, Context),
NoexceptMacro(Options.get("ReplacementString", "")),
UseNoexceptFalse(Options.get("UseNoexceptFalse", true)) {}
void UseNoexceptCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) {
Options.store(Opts, "ReplacementString", NoexceptMacro);
Options.store(Opts, "UseNoexceptFalse", UseNoexceptFalse);
}
void UseNoexceptCheck::registerMatchers(MatchFinder *Finder) {
if (!getLangOpts().CPlusPlus11)
return;
Finder->addMatcher(
functionDecl(
cxxMethodDecl(
hasTypeLoc(loc(functionProtoType(hasDynamicExceptionSpec()))),
anyOf(hasOverloadedOperatorName("delete[]"),
hasOverloadedOperatorName("delete"), cxxDestructorDecl()))
.bind("del-dtor"))
.bind("funcDecl"),
this);
Finder->addMatcher(
functionDecl(
hasTypeLoc(loc(functionProtoType(hasDynamicExceptionSpec()))),
unless(anyOf(hasOverloadedOperatorName("delete[]"),
hasOverloadedOperatorName("delete"),
cxxDestructorDecl())))
.bind("funcDecl"),
this);
Finder->addMatcher(
parmVarDecl(anyOf(hasType(pointerType(pointee(parenType(innerType(
functionProtoType(hasDynamicExceptionSpec())))))),
hasType(memberPointerType(pointee(parenType(innerType(
functionProtoType(hasDynamicExceptionSpec()))))))))
.bind("parmVarDecl"),
this);
}
void UseNoexceptCheck::check(const MatchFinder::MatchResult &Result) {
const FunctionProtoType *FnTy = nullptr;
bool DtorOrOperatorDel = false;
SourceRange Range;
if (const auto *FuncDecl = Result.Nodes.getNodeAs<FunctionDecl>("funcDecl")) {
DtorOrOperatorDel = Result.Nodes.getNodeAs<FunctionDecl>("del-dtor");
FnTy = FuncDecl->getType()->getAs<FunctionProtoType>();
if (const auto *TSI = FuncDecl->getTypeSourceInfo())
Range =
TSI->getTypeLoc().castAs<FunctionTypeLoc>().getExceptionSpecRange();
} else if (const auto *ParmDecl =
Result.Nodes.getNodeAs<ParmVarDecl>("parmVarDecl")) {
FnTy = ParmDecl->getType()
->getAs<Type>()
->getPointeeType()
->getAs<FunctionProtoType>();
if (const auto *TSI = ParmDecl->getTypeSourceInfo())
Range = TSI->getTypeLoc()
.getNextTypeLoc()
.IgnoreParens()
.castAs<FunctionProtoTypeLoc>()
.getExceptionSpecRange();
}
CharSourceRange CRange = Lexer::makeFileCharRange(
CharSourceRange::getTokenRange(Range), *Result.SourceManager,
Result.Context->getLangOpts());
assert(FnTy && "FunctionProtoType is null.");
bool IsNoThrow = FnTy->isNothrow(*Result.Context);
StringRef ReplacementStr =
IsNoThrow
? NoexceptMacro.empty() ? "noexcept" : NoexceptMacro.c_str()
: NoexceptMacro.empty()
? (DtorOrOperatorDel || UseNoexceptFalse) ? "noexcept(false)"
: ""
: "";
FixItHint FixIt;
if ((IsNoThrow || NoexceptMacro.empty()) && CRange.isValid())
FixIt = FixItHint::CreateReplacement(CRange, ReplacementStr);
diag(Range.getBegin(), "dynamic exception specification '%0' is deprecated; "
"consider %select{using '%2'|removing it}1 instead")
<< Lexer::getSourceText(CRange, *Result.SourceManager,
Result.Context->getLangOpts())
<< ReplacementStr.empty() << ReplacementStr << FixIt;
}
} // namespace modernize
} // namespace tidy
} // namespace clang
|