[clang-tools-extra] d03e9f8 - [include-cleaner] Handle base class member access from derived class.
Viktoriia Bakalova via cfe-commits
cfe-commits at lists.llvm.org
Thu Dec 8 02:39:30 PST 2022
Author: Viktoriia Bakalova
Date: 2022-12-08T10:39:18Z
New Revision: d03e9f8fb0741a510308be09b29a13d0a66a6e41
URL: https://github.com/llvm/llvm-project/commit/d03e9f8fb0741a510308be09b29a13d0a66a6e41
DIFF: https://github.com/llvm/llvm-project/commit/d03e9f8fb0741a510308be09b29a13d0a66a6e41.diff
LOG: [include-cleaner] Handle base class member access from derived class.
Fix: https://github.com/llvm/llvm-project/issues/59251
Differential Revision: https://reviews.llvm.org/D139087
Added:
Modified:
clang-tools-extra/include-cleaner/lib/WalkAST.cpp
clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp
Removed:
################################################################################
diff --git a/clang-tools-extra/include-cleaner/lib/WalkAST.cpp b/clang-tools-extra/include-cleaner/lib/WalkAST.cpp
index 7fb3f5697b7e..ff15e62efdfd 100644
--- a/clang-tools-extra/include-cleaner/lib/WalkAST.cpp
+++ b/clang-tools-extra/include-cleaner/lib/WalkAST.cpp
@@ -44,6 +44,12 @@ class ASTWalker : public RecursiveASTVisitor<ASTWalker> {
Callback(Loc, *cast<NamedDecl>(ND->getCanonicalDecl()), RT);
}
+ NamedDecl *resolveType(QualType Type) {
+ if (Type->isPointerType())
+ Type = Type->getPointeeType();
+ return Type->getAsRecordDecl();
+ }
+
public:
ASTWalker(DeclCallback Callback) : Callback(Callback) {}
@@ -53,7 +59,12 @@ class ASTWalker : public RecursiveASTVisitor<ASTWalker> {
}
bool VisitMemberExpr(MemberExpr *E) {
- report(E->getMemberLoc(), E->getFoundDecl().getDecl());
+ // A member expr implies a usage of the class type
+ // (e.g., to prevent inserting a header of base class when using base
+ // members from a derived object).
+ // FIXME: support dependent types, e.g., "std::vector<T>().size()".
+ QualType Type = E->getBase()->IgnoreImpCasts()->getType();
+ report(E->getMemberLoc(), resolveType(Type));
return true;
}
diff --git a/clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp b/clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp
index d9cf84dc7abe..551eb66bcdef 100644
--- a/clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp
+++ b/clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp
@@ -180,10 +180,22 @@ TEST(WalkAST, TemplateNames) {
}
TEST(WalkAST, MemberExprs) {
- testWalk("struct S { void $explicit^foo(); };", "void foo() { S{}.^foo(); }");
+ testWalk("struct $explicit^S { void foo(); };", "void foo() { S{}.^foo(); }");
testWalk(
- "struct S { void foo(); }; struct X : S { using S::$explicit^foo; };",
+ "struct S { void foo(); }; struct $explicit^X : S { using S::foo; };",
"void foo() { X{}.^foo(); }");
+ testWalk("struct Base { int a; }; struct $explicit^Derived : public Base {};",
+ "void fun(Derived d) { d.^a; }");
+ testWalk("struct Base { int a; }; struct $explicit^Derived : public Base {};",
+ "void fun(Derived* d) { d->^a; }");
+ testWalk("struct Base { int a; }; struct $explicit^Derived : public Base {};",
+ "void fun(Derived& d) { d.^a; }");
+ testWalk("struct Base { int a; }; struct $explicit^Derived : public Base {};",
+ "void fun() { Derived().^a; }");
+ testWalk("struct Base { int a; }; struct $explicit^Derived : public Base {};",
+ "Derived foo(); void fun() { foo().^a; }");
+ testWalk("struct Base { int a; }; struct $explicit^Derived : public Base {};",
+ "Derived& foo(); void fun() { foo().^a; }");
}
TEST(WalkAST, ConstructExprs) {
More information about the cfe-commits
mailing list