[PATCH] D125949: [clang-tidy] modernize-avoid-bind: Fix crash when method name is not a simple identifier
Joachim Priesner via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 20 00:06:41 PDT 2022
jspam updated this revision to Diff 438265.
jspam added a comment.
Improve fixes
As suggested by njames93, use call syntax instead of operator().
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125949/new/
https://reviews.llvm.org/D125949
Files:
clang-tools-extra/clang-tidy/modernize/AvoidBindCheck.cpp
clang-tools-extra/test/clang-tidy/checkers/modernize-avoid-bind.cpp
Index: clang-tools-extra/test/clang-tidy/checkers/modernize-avoid-bind.cpp
===================================================================
--- clang-tools-extra/test/clang-tidy/checkers/modernize-avoid-bind.cpp
+++ clang-tools-extra/test/clang-tidy/checkers/modernize-avoid-bind.cpp
@@ -43,6 +43,7 @@
struct D {
D() = default;
void operator()(int x, int y) const {}
+ operator bool() const { return true; }
void MemberFunction(int x) {}
@@ -340,6 +341,7 @@
struct E {
void MemberFunction(int x) {}
+ int operator()(int x, int y) const { return x + y; }
void testMemberFunctions() {
D *d;
@@ -360,6 +362,26 @@
auto DDD = std::bind(&D::MemberFunction, _1, 1);
// CHECK-MESSAGES: :[[@LINE-1]]:16: warning: prefer a lambda to std::bind
// CHECK-FIXES: auto DDD = [](auto && PH1) { PH1->MemberFunction(1); };
+
+ auto EEE = std::bind(&D::operator(), d, 1, 2);
+ // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: prefer a lambda to std::bind
+ // CHECK-FIXES: auto EEE = [d] { (*d)(1, 2); }
+
+ auto FFF = std::bind(&D::operator(), &dd, 1, 2);
+ // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: prefer a lambda to std::bind
+ // CHECK-FIXES: auto FFF = [ObjectPtr = &dd] { (*ObjectPtr)(1, 2); }
+
+ auto GGG = std::bind(&D::operator(), _1, 1, 2);
+ // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: prefer a lambda to std::bind
+ // CHECK-FIXES: auto GGG = [](auto && PH1) { (*PH1)(1, 2); };
+
+ auto HHH = std::bind(&D::operator bool, d);
+ // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: prefer a lambda to std::bind
+ // CHECK-FIXES: auto HHH = [d] { return d->operator bool(); }
+
+ auto III = std::bind(&E::operator(), this, 1, 2);
+ // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: prefer a lambda to std::bind
+ // CHECK-FIXES: auto III = [this] { return (*this)(1, 2); }
}
};
Index: clang-tools-extra/clang-tidy/modernize/AvoidBindCheck.cpp
===================================================================
--- clang-tools-extra/clang-tidy/modernize/AvoidBindCheck.cpp
+++ clang-tools-extra/clang-tidy/modernize/AvoidBindCheck.cpp
@@ -685,12 +685,18 @@
const BindArgument &ObjPtr = FunctionCallArgs.front();
Stream << " { ";
- if (!isa<CXXThisExpr>(ignoreTemporariesAndPointers(ObjPtr.E))) {
- Stream << ObjPtr.UsageIdentifier;
- Stream << "->";
+ if (!MethodDecl->getReturnType()->isVoidType()) {
+ Stream << "return ";
+ }
+ if (MethodDecl->getOverloadedOperator() == OO_Call) {
+ Stream << "(*" << ObjPtr.UsageIdentifier << ')';
+ } else {
+ if (!isa<CXXThisExpr>(ignoreTemporariesAndPointers(ObjPtr.E))) {
+ Stream << ObjPtr.UsageIdentifier;
+ Stream << "->";
+ }
+ Stream << MethodDecl->getNameAsString();
}
-
- Stream << MethodDecl->getName();
} else {
Stream << " { return ";
switch (LP.Callable.CE) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D125949.438265.patch
Type: text/x-patch
Size: 2891 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220620/754e79f9/attachment-0001.bin>
More information about the cfe-commits
mailing list