Skip to content

Commit 010317e

Browse files
authoredDec 2, 2024··
[clang-tidy][use-internal-linkage]fix false positives for ExportDecl (#117901)
Fixed: #97190
1 parent a9ad9e2 commit 010317e

File tree

9 files changed

+72
-3
lines changed

9 files changed

+72
-3
lines changed
 

‎clang-tools-extra/clang-tidy/misc/UseInternalLinkageCheck.cpp

+5-2
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,11 @@ void UseInternalLinkageCheck::registerMatchers(MatchFinder *Finder) {
118118
isExternStorageClass(), isExternC(),
119119
// 3. template
120120
isExplicitTemplateSpecialization(),
121-
// 4. friend
122-
hasAncestor(friendDecl()))));
121+
hasAncestor(decl(anyOf(
122+
// 4. friend
123+
friendDecl(),
124+
// 5. module export decl
125+
exportDecl()))))));
123126
Finder->addMatcher(
124127
functionDecl(Common, hasBody(),
125128
unless(anyOf(cxxMethodDecl(),

‎clang-tools-extra/docs/ReleaseNotes.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ Changes in existing checks
248248
<clang-tidy/checks/misc/use-internal-linkage>` check to insert ``static``
249249
keyword before type qualifiers such as ``const`` and ``volatile`` and fix
250250
false positives for function declaration without body and fix false positives
251-
for global scoped overloaded ``operator new`` and ``operator delete``.
251+
for C++20 export declarations and fix false positives for global scoped
252+
overloaded ``operator new`` and ``operator delete``.
252253

253254
- Improved :doc:`modernize-avoid-c-arrays
254255
<clang-tidy/checks/modernize/avoid-c-arrays>` check to suggest using

‎clang-tools-extra/docs/clang-tidy/checks/misc/use-internal-linkage.rst

+5
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ Example:
2929
void fn3(); // without function body in all declaration, maybe external linkage
3030
void fn3();
3131

32+
// export declarations
33+
export void fn4() {}
34+
export namespace t { void fn5() {} }
35+
export int v2;
36+
3237
Options
3338
-------
3439

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// RUN: %check_clang_tidy -std=c++20 %s misc-use-internal-linkage %t -- -- -I%S/Inputs/use-internal-linkage
2+
3+
module;
4+
5+
export module test;
6+
7+
export void single_export_fn() {}
8+
export int single_export_var;
9+
10+
export {
11+
void group_export_fn1() {}
12+
void group_export_fn2() {}
13+
int group_export_var1;
14+
int group_export_var2;
15+
}
16+
17+
export namespace aa {
18+
void namespace_export_fn() {}
19+
int namespace_export_var;
20+
} // namespace aa

‎clang/docs/LibASTMatchersReference.html

+11
Original file line numberDiff line numberDiff line change
@@ -804,6 +804,17 @@ <h2 id="decl-matchers">Node Matchers</h2>
804804
</pre></td></tr>
805805

806806

807+
<tr><td>Matcher&lt;<a href="https://clang.llvm.org/doxygen/classclang_1_1Decl.html">Decl</a>&gt;</td><td class="name" onclick="toggle('exportDecl0')"><a name="exportDecl0Anchor">exportDecl</a></td><td>Matcher&lt;<a href="https://clang.llvm.org/doxygen/classclang_1_1ExportDecl.html">ExportDecl</a>&gt;...</td></tr>
808+
<tr><td colspan="4" class="doc" id="exportDecl0"><pre>Matches any export declaration.
809+
810+
Example matches following declarations.
811+
export void foo();
812+
export { void foo(); }
813+
export namespace { void foo(); }
814+
export int v;
815+
</pre></td></tr>
816+
817+
807818
<tr><td>Matcher&lt;<a href="https://clang.llvm.org/doxygen/classclang_1_1Decl.html">Decl</a>&gt;</td><td class="name" onclick="toggle('fieldDecl0')"><a name="fieldDecl0Anchor">fieldDecl</a></td><td>Matcher&lt;<a href="https://clang.llvm.org/doxygen/classclang_1_1FieldDecl.html">FieldDecl</a>&gt;...</td></tr>
808819
<tr><td colspan="4" class="doc" id="fieldDecl0"><pre>Matches field declarations.
809820

‎clang/docs/ReleaseNotes.rst

+2
Original file line numberDiff line numberDiff line change
@@ -965,6 +965,8 @@ AST Matchers
965965
- Ensure ``hasName`` matches template specializations across inline namespaces,
966966
making `matchesNodeFullSlow` and `matchesNodeFullFast` consistent.
967967

968+
- Add ``exportDecl`` matcher to match export declaration.
969+
968970
clang-format
969971
------------
970972

‎clang/include/clang/ASTMatchers/ASTMatchers.h

+11
Original file line numberDiff line numberDiff line change
@@ -1236,6 +1236,17 @@ AST_MATCHER_P(TemplateArgument, equalsIntegralValue,
12361236
extern const internal::VariadicDynCastAllOfMatcher<Stmt,
12371237
ObjCAutoreleasePoolStmt> autoreleasePoolStmt;
12381238

1239+
/// Matches any export declaration.
1240+
///
1241+
/// Example matches following declarations.
1242+
/// \code
1243+
/// export void foo();
1244+
/// export { void foo(); }
1245+
/// export namespace { void foo(); }
1246+
/// export int v;
1247+
/// \endcode
1248+
extern const internal::VariadicDynCastAllOfMatcher<Decl, ExportDecl> exportDecl;
1249+
12391250
/// Matches any value declaration.
12401251
///
12411252
/// Example matches A, B, C and F

‎clang/lib/ASTMatchers/ASTMatchersInternal.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -799,6 +799,7 @@ const internal::VariadicDynCastAllOfMatcher<TypeLoc, ElaboratedTypeLoc>
799799

800800
const internal::VariadicDynCastAllOfMatcher<Stmt, UnaryExprOrTypeTraitExpr>
801801
unaryExprOrTypeTraitExpr;
802+
const internal::VariadicDynCastAllOfMatcher<Decl, ExportDecl> exportDecl;
802803
const internal::VariadicDynCastAllOfMatcher<Decl, ValueDecl> valueDecl;
803804
const internal::VariadicDynCastAllOfMatcher<Decl, CXXConstructorDecl>
804805
cxxConstructorDecl;

‎clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp

+15
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,21 @@ TEST(ASTMatchersTestCUDA, HasAttrCUDA) {
189189
hasAttr(clang::attr::CUDAGlobal)));
190190
}
191191

192+
TEST_P(ASTMatchersTest, ExportDecl) {
193+
if (!GetParam().isCXX20OrLater()) {
194+
return;
195+
}
196+
const std::string moduleHeader = "module;export module ast_matcher_test;";
197+
EXPECT_TRUE(matches(moduleHeader + "export void foo();",
198+
exportDecl(has(functionDecl()))));
199+
EXPECT_TRUE(matches(moduleHeader + "export { void foo(); int v; }",
200+
exportDecl(has(functionDecl()))));
201+
EXPECT_TRUE(matches(moduleHeader + "export { void foo(); int v; }",
202+
exportDecl(has(varDecl()))));
203+
EXPECT_TRUE(matches(moduleHeader + "export namespace aa { void foo(); }",
204+
exportDecl(has(namespaceDecl()))));
205+
}
206+
192207
TEST_P(ASTMatchersTest, ValueDecl) {
193208
if (!GetParam().isCXX()) {
194209
// FIXME: Fix this test in non-C++ language modes.

0 commit comments

Comments
 (0)
Please sign in to comment.