[PATCH] D112209: [clangd] IncludeCleaner: Complicated rules for enum usage
Kirill Bobyrev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 25 07:41:36 PDT 2021
kbobyrev updated this revision to Diff 381992.
kbobyrev marked 3 inline comments as done.
kbobyrev added a comment.
Resolve review comments.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D112209/new/
https://reviews.llvm.org/D112209
Files:
clang-tools-extra/clangd/IncludeCleaner.cpp
clang-tools-extra/clangd/unittests/IncludeCleanerTests.cpp
Index: clang-tools-extra/clangd/unittests/IncludeCleanerTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/IncludeCleanerTests.cpp
+++ clang-tools-extra/clangd/unittests/IncludeCleanerTests.cpp
@@ -103,6 +103,38 @@
"struct ^X { enum ^Language { ^CXX = 42, Python = 9000}; };",
"int Lang = X::CXX;",
},
+ {
+ "enum class Color;",
+ "enum class Color {};",
+ },
+ {
+ "enum class ^Color : int;",
+ "enum class Color : int {};",
+ },
+ {
+ "enum class Color : int {};",
+ "enum class Color : int;",
+ },
+ {
+ "enum class Color;",
+ "enum class Color {}; Color c;",
+ },
+ {
+ "enum class ^Color : int;",
+ "enum class Color : int {}; Color c;",
+ },
+ {
+ "enum class ^Color : char;",
+ "Color c;",
+ },
+ {
+ "enum class ^Color : char {};",
+ "Color c;",
+ },
+ {
+ "enum class ^Color;",
+ "Color c;",
+ },
{
// When a type is resolved via a using declaration, the
// UsingShadowDecl is not referenced in the AST.
Index: clang-tools-extra/clangd/IncludeCleaner.cpp
===================================================================
--- clang-tools-extra/clangd/IncludeCleaner.cpp
+++ clang-tools-extra/clangd/IncludeCleaner.cpp
@@ -35,6 +35,16 @@
}
bool VisitTagType(TagType *TT) {
+ // For enumerations we will require only the definition if it's present and
+ // the underlying type is not specified.
+ if (TT->isEnumeralType()) {
+ const auto *Enum = llvm::dyn_cast<EnumDecl>(TT->getDecl());
+ assert(Enum);
+ if (!Enum->getIntegerTypeSourceInfo() && TT->getDecl()->getDefinition()) {
+ Result.insert(TT->getDecl()->getDefinition()->getLocation());
+ return true;
+ }
+ }
add(TT->getDecl());
return true;
}
@@ -80,6 +90,15 @@
return true;
}
+ // Enums may be usefully forward-declared as *complete* types by specifying
+ // an underlying type. In this case, the definition should see the declaration
+ // so they can be checked for compatibility.
+ bool VisitEnumDecl(EnumDecl *D) {
+ if (D->isThisDeclarationADefinition() && D->getIntegerTypeSourceInfo())
+ add(D);
+ return false;
+ }
+
private:
using Base = RecursiveASTVisitor<ReferencedLocationCrawler>;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D112209.381992.patch
Type: text/x-patch
Size: 2509 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20211025/14270e5c/attachment-0001.bin>
More information about the cfe-commits
mailing list