From 73f283e6fc8d87f34072b6dbb4e56f80dd4e6730 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Wed, 22 Mar 2017 01:08:54 +0000 Subject: Reverting r298421 due to using a header that's unavailable to all systems and some other post-commit review feedback. llvm-svn: 298470 --- .../ProBoundsArrayToPointerDecayCheck.cpp | 27 ++++------------------ ...uidelines-pro-bounds-array-to-pointer-decay.cpp | 6 ----- 2 files changed, 4 insertions(+), 29 deletions(-) diff --git a/clang-tools-extra/clang-tidy/cppcoreguidelines/ProBoundsArrayToPointerDecayCheck.cpp b/clang-tools-extra/clang-tidy/cppcoreguidelines/ProBoundsArrayToPointerDecayCheck.cpp index 4977c2d7ed7..bfcef89e6bb 100644 --- a/clang-tools-extra/clang-tidy/cppcoreguidelines/ProBoundsArrayToPointerDecayCheck.cpp +++ b/clang-tools-extra/clang-tidy/cppcoreguidelines/ProBoundsArrayToPointerDecayCheck.cpp @@ -47,25 +47,6 @@ AST_MATCHER_P(Expr, hasParentIgnoringImpCasts, return InnerMatcher.matches(*E, Finder, Builder); } -AST_MATCHER(ImplicitCastExpr, isArrayToPointerDecay) { - return Node.getCastKind() == CK_ArrayToPointerDecay; -} - -AST_MATCHER(ImplicitCastExpr, sysSymbolDecayInSysHeader) { - auto &SM = Finder->getASTContext().getSourceManager(); - if (SM.isInSystemMacro(Node.getLocStart())) { - if (isa(Node.getSubExpr())) - return true; - - if (const auto *SymbolDeclRef = dyn_cast(Node.getSubExpr())) { - const ValueDecl *SymbolDecl = SymbolDeclRef->getDecl(); - if (SymbolDecl && SM.isInSystemHeader(SymbolDecl->getLocation())) - return true; - } - } - return false; -} - void ProBoundsArrayToPointerDecayCheck::registerMatchers(MatchFinder *Finder) { if (!getLangOpts().CPlusPlus) return; @@ -75,12 +56,10 @@ void ProBoundsArrayToPointerDecayCheck::registerMatchers(MatchFinder *Finder) { // 2) inside a range-for over an array // 3) if it converts a string literal to a pointer Finder->addMatcher( - implicitCastExpr(isArrayToPointerDecay(), - unless(hasParent(arraySubscriptExpr())), + implicitCastExpr(unless(hasParent(arraySubscriptExpr())), unless(hasParentIgnoringImpCasts(explicitCastExpr())), unless(isInsideOfRangeBeginEndStmt()), - unless(hasSourceExpression(stringLiteral())), - unless(sysSymbolDecayInSysHeader())) + unless(hasSourceExpression(stringLiteral()))) .bind("cast"), this); } @@ -88,6 +67,8 @@ void ProBoundsArrayToPointerDecayCheck::registerMatchers(MatchFinder *Finder) { void ProBoundsArrayToPointerDecayCheck::check( const MatchFinder::MatchResult &Result) { const auto *MatchedCast = Result.Nodes.getNodeAs("cast"); + if (MatchedCast->getCastKind() != CK_ArrayToPointerDecay) + return; diag(MatchedCast->getExprLoc(), "do not implicitly decay an array into a " "pointer; consider using gsl::array_view or " diff --git a/clang-tools-extra/test/clang-tidy/cppcoreguidelines-pro-bounds-array-to-pointer-decay.cpp b/clang-tools-extra/test/clang-tidy/cppcoreguidelines-pro-bounds-array-to-pointer-decay.cpp index 22d98bcd121..ce192805dda 100644 --- a/clang-tools-extra/test/clang-tidy/cppcoreguidelines-pro-bounds-array-to-pointer-decay.cpp +++ b/clang-tools-extra/test/clang-tidy/cppcoreguidelines-pro-bounds-array-to-pointer-decay.cpp @@ -1,5 +1,4 @@ // RUN: %check_clang_tidy %s cppcoreguidelines-pro-bounds-array-to-pointer-decay %t -#include #include namespace gsl { @@ -35,11 +34,6 @@ void f() { for (auto &e : a) // OK, iteration internally decays array to pointer e = 1; - - assert(false); // OK, array decay inside system header macro - - assert(a); - // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead [cppcoreguidelines-pro-bounds-array-to-pointer-decay] } const char *g() { -- cgit v1.2.3