zinovy.nis updated this revision to Diff 297468. CHANGES SINCE LAST ACTION https://reviews.llvm.org/D89194/new/
https://reviews.llvm.org/D89194 Files: clang-tools-extra/clang-tidy/readability/FunctionCognitiveComplexityCheck.cpp clang-tools-extra/test/clang-tidy/checkers/readability-function-cognitive-complexity.cpp clang/docs/LibASTMatchersReference.html clang/include/clang/ASTMatchers/ASTMatchers.h clang/lib/ASTMatchers/Dynamic/Registry.cpp Index: clang/lib/ASTMatchers/Dynamic/Registry.cpp =================================================================== --- clang/lib/ASTMatchers/Dynamic/Registry.cpp +++ clang/lib/ASTMatchers/Dynamic/Registry.cpp @@ -433,6 +433,7 @@ REGISTER_MATCHER(isVirtual); REGISTER_MATCHER(isVirtualAsWritten); REGISTER_MATCHER(isVolatileQualified); + REGISTER_MATCHER(isWeak); REGISTER_MATCHER(isWritten); REGISTER_MATCHER(lValueReferenceType); REGISTER_MATCHER(labelDecl); Index: clang/include/clang/ASTMatchers/ASTMatchers.h =================================================================== --- clang/include/clang/ASTMatchers/ASTMatchers.h +++ clang/include/clang/ASTMatchers/ASTMatchers.h @@ -4647,6 +4647,17 @@ return Node.isDefaulted(); } +/// Matches weak function declarations. +/// +/// Given: +/// \code +/// void foo() __attribute__((__weakref__("__foo"))); +/// void bar(); +/// \endcode +/// functionDecl(isWeak()) +/// matches the weak declaration "foo", but not "bar". +AST_MATCHER(FunctionDecl, isWeak) { return Node.isWeak(); } + /// Matches functions that have a dynamic exception specification. /// /// Given: Index: clang/docs/LibASTMatchersReference.html =================================================================== --- clang/docs/LibASTMatchersReference.html +++ clang/docs/LibASTMatchersReference.html @@ -3569,6 +3569,17 @@ </pre></td></tr> +<tr><td>Matcher<<a href="https://clang.llvm.org/doxygen/classclang_1_1FunctionDecl.html">FunctionDecl</a>></td><td class="name" onclick="toggle('isWeak0')"><a name="isWeak0Anchor">isWeak</a></td><td></td></tr> +<tr><td colspan="4" class="doc" id="isWeak0"><pre>Matches weak function declarations. + +Given: + void foo() __attribute__((__weakref__("__foo"))); + void bar(); +functionDecl(isWeak()) + matches the weak declaration "foo", but not "bar". +</pre></td></tr> + + <tr><td>Matcher<<a href="https://clang.llvm.org/doxygen/classclang_1_1FunctionDecl.html">FunctionDecl</a>></td><td class="name" onclick="toggle('parameterCountIs0')"><a name="parameterCountIs0Anchor">parameterCountIs</a></td><td>unsigned N</td></tr> <tr><td colspan="4" class="doc" id="parameterCountIs0"><pre>Matches FunctionDecls and FunctionProtoTypes that have a specific parameter count. Index: clang-tools-extra/test/clang-tidy/checkers/readability-function-cognitive-complexity.cpp =================================================================== --- clang-tools-extra/test/clang-tidy/checkers/readability-function-cognitive-complexity.cpp +++ clang-tools-extra/test/clang-tidy/checkers/readability-function-cognitive-complexity.cpp @@ -1013,3 +1013,5 @@ templatedFunction<void*>(); } + +static void pr47779_dont_crash_on_weak() __attribute__((__weakref__("__pr47779_dont_crash_on_weak"))); Index: clang-tools-extra/clang-tidy/readability/FunctionCognitiveComplexityCheck.cpp =================================================================== --- clang-tools-extra/clang-tidy/readability/FunctionCognitiveComplexityCheck.cpp +++ clang-tools-extra/clang-tidy/readability/FunctionCognitiveComplexityCheck.cpp @@ -501,9 +501,9 @@ void FunctionCognitiveComplexityCheck::registerMatchers(MatchFinder *Finder) { Finder->addMatcher( - functionDecl( - allOf(isDefinition(), unless(anyOf(isDefaulted(), isDeleted(), - isImplicit(), isInstantiated())))) + functionDecl(isDefinition(), + unless(anyOf(isDefaulted(), isDeleted(), isImplicit(), + isInstantiated(), isWeak()))) .bind("func"), this); }
Index: clang/lib/ASTMatchers/Dynamic/Registry.cpp =================================================================== --- clang/lib/ASTMatchers/Dynamic/Registry.cpp +++ clang/lib/ASTMatchers/Dynamic/Registry.cpp @@ -433,6 +433,7 @@ REGISTER_MATCHER(isVirtual); REGISTER_MATCHER(isVirtualAsWritten); REGISTER_MATCHER(isVolatileQualified); + REGISTER_MATCHER(isWeak); REGISTER_MATCHER(isWritten); REGISTER_MATCHER(lValueReferenceType); REGISTER_MATCHER(labelDecl); Index: clang/include/clang/ASTMatchers/ASTMatchers.h =================================================================== --- clang/include/clang/ASTMatchers/ASTMatchers.h +++ clang/include/clang/ASTMatchers/ASTMatchers.h @@ -4647,6 +4647,17 @@ return Node.isDefaulted(); } +/// Matches weak function declarations. +/// +/// Given: +/// \code +/// void foo() __attribute__((__weakref__("__foo"))); +/// void bar(); +/// \endcode +/// functionDecl(isWeak()) +/// matches the weak declaration "foo", but not "bar". +AST_MATCHER(FunctionDecl, isWeak) { return Node.isWeak(); } + /// Matches functions that have a dynamic exception specification. /// /// Given: Index: clang/docs/LibASTMatchersReference.html =================================================================== --- clang/docs/LibASTMatchersReference.html +++ clang/docs/LibASTMatchersReference.html @@ -3569,6 +3569,17 @@ </pre></td></tr> +<tr><td>Matcher<<a href="https://clang.llvm.org/doxygen/classclang_1_1FunctionDecl.html">FunctionDecl</a>></td><td class="name" onclick="toggle('isWeak0')"><a name="isWeak0Anchor">isWeak</a></td><td></td></tr> +<tr><td colspan="4" class="doc" id="isWeak0"><pre>Matches weak function declarations. + +Given: + void foo() __attribute__((__weakref__("__foo"))); + void bar(); +functionDecl(isWeak()) + matches the weak declaration "foo", but not "bar". +</pre></td></tr> + + <tr><td>Matcher<<a href="https://clang.llvm.org/doxygen/classclang_1_1FunctionDecl.html">FunctionDecl</a>></td><td class="name" onclick="toggle('parameterCountIs0')"><a name="parameterCountIs0Anchor">parameterCountIs</a></td><td>unsigned N</td></tr> <tr><td colspan="4" class="doc" id="parameterCountIs0"><pre>Matches FunctionDecls and FunctionProtoTypes that have a specific parameter count. Index: clang-tools-extra/test/clang-tidy/checkers/readability-function-cognitive-complexity.cpp =================================================================== --- clang-tools-extra/test/clang-tidy/checkers/readability-function-cognitive-complexity.cpp +++ clang-tools-extra/test/clang-tidy/checkers/readability-function-cognitive-complexity.cpp @@ -1013,3 +1013,5 @@ templatedFunction<void*>(); } + +static void pr47779_dont_crash_on_weak() __attribute__((__weakref__("__pr47779_dont_crash_on_weak"))); Index: clang-tools-extra/clang-tidy/readability/FunctionCognitiveComplexityCheck.cpp =================================================================== --- clang-tools-extra/clang-tidy/readability/FunctionCognitiveComplexityCheck.cpp +++ clang-tools-extra/clang-tidy/readability/FunctionCognitiveComplexityCheck.cpp @@ -501,9 +501,9 @@ void FunctionCognitiveComplexityCheck::registerMatchers(MatchFinder *Finder) { Finder->addMatcher( - functionDecl( - allOf(isDefinition(), unless(anyOf(isDefaulted(), isDeleted(), - isImplicit(), isInstantiated())))) + functionDecl(isDefinition(), + unless(anyOf(isDefaulted(), isDeleted(), isImplicit(), + isInstantiated(), isWeak()))) .bind("func"), this); }
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits