-
Notifications
You must be signed in to change notification settings - Fork 12.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Clang] Only ignore special methods for unused private fields in BuildFieldReferenceExpr #116965
base: main
Are you sure you want to change the base?
Conversation
@llvm/pr-subscribers-clang Author: Mészáros Gergely (Maetveis) ChangesThe original code assumed that only special methods might be defined as defaulted. Since C++20 comparison operators might be defaulted too, and we do want to consider those as using the fields of the class. Fixes: #116961 Full diff: https://github.com/llvm/llvm-project/pull/116965.diff 2 Files Affected:
diff --git a/clang/lib/Sema/SemaExprMember.cpp b/clang/lib/Sema/SemaExprMember.cpp
index c32df607692813..46821dc8746b2a 100644
--- a/clang/lib/Sema/SemaExprMember.cpp
+++ b/clang/lib/Sema/SemaExprMember.cpp
@@ -1874,8 +1874,16 @@ Sema::BuildFieldReferenceExpr(Expr *BaseExpr, bool IsArrow,
Context.getAttributedType(attr::NoDeref, MemberType, MemberType);
}
- auto *CurMethod = dyn_cast<CXXMethodDecl>(CurContext);
- if (!(CurMethod && CurMethod->isDefaulted()))
+ auto isDefaultedSpecialMember = [this](const DeclContext *Ctx) {
+ auto *Method = dyn_cast<CXXMethodDecl>(CurContext);
+ if (!Method || !Method->isDefaulted())
+ return false;
+
+ return getDefaultedFunctionKind(Method).isSpecialMember();
+ };
+
+ // Implicit special members should not mark fields as used.
+ if (!isDefaultedSpecialMember(CurContext))
UnusedPrivateFields.remove(Field);
ExprResult Base = PerformObjectMemberConversion(BaseExpr, SS.getScopeRep(),
diff --git a/clang/test/SemaCXX/warn-unused-private-field.cpp b/clang/test/SemaCXX/warn-unused-private-field.cpp
index 1128eacc309d9f..9913dbaafb7a57 100644
--- a/clang/test/SemaCXX/warn-unused-private-field.cpp
+++ b/clang/test/SemaCXX/warn-unused-private-field.cpp
@@ -20,6 +20,20 @@ class SpaceShipDefaultCompare {
int operator<=>(const SpaceShipDefaultCompare &) const = default;
};
+class EqDefaultCompareOutOfClass {
+ int used;
+ bool operator==(const EqDefaultCompareOutOfClass &) const;
+};
+
+bool EqDefaultCompareOutOfClass::operator==(const EqDefaultCompareOutOfClass &) const = default;
+
+class FriendEqDefaultCompareOutOfClass {
+ int used;
+ friend bool operator==(const FriendEqDefaultCompareOutOfClass &, const FriendEqDefaultCompareOutOfClass &);
+};
+
+bool operator==(const FriendEqDefaultCompareOutOfClass &, const FriendEqDefaultCompareOutOfClass &) = default;
+
#endif
class NotFullyDefined {
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs a release note, else LGTM.
…dFieldReferenceExpr The original code assumed that only special methods might be defined as defaulted. Since C++20 comparison operators might be defaulted too, and we *do* want to consider those as using the fields of the class. Fixes: llvm#116961
af60ae1
to
acffeca
Compare
@@ -20,6 +20,20 @@ class SpaceShipDefaultCompare { | |||
int operator<=>(const SpaceShipDefaultCompare &) const = default; | |||
}; | |||
|
|||
class EqDefaultCompareOutOfClass { | |||
int used; // no warning |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please explain a touch better with 'no warning'? Something like, "Test to ensure that the defaulted operator results in this being seen as 'used' despite there not being code to do so."?
The original code assumed that only special methods might be defined as defaulted. Since C++20 comparison operators might be defaulted too, and we do want to consider those as using the fields of the class.
Fixes: #116961