[clang-tools-extra] [include-cleaner] Turn new/delete usages to ambiguous references (PR #105844)
kadir çetinkaya via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 23 08:26:03 PDT 2024
https://github.com/kadircet created https://github.com/llvm/llvm-project/pull/105844
In practice most of these expressions just resolve to implicitly
provided `operator new` and standard says it's not necessary to include
`<new>` for that.
Hence this is resulting in a lot of churn in cases where inclusion of
`<new>` doesn't matter, and might even be undesired by the developer.
By switching to an ambiguous reference we try to find a middle ground
here, ensuring that we don't drop providers of `operator new` when the
developer explicitly listed them in the includes, and chose to believe
it's the implicitly provided `operator new` and don't insert an include
in other cases.
>From f02c2f052c0ad7a3a51ead978c883f7ee35e3c3f Mon Sep 17 00:00:00 2001
From: Kadir Cetinkaya <kadircet at google.com>
Date: Fri, 23 Aug 2024 17:21:19 +0200
Subject: [PATCH] [include-cleaner] Turn new/delete usages to ambiguous
references
In practice most of these expressions just resolve to implicitly
provided `operator new` and standard says it's not necessary to include
`<new>` for that.
Hence this is resulting in a lot of churn in cases where inclusion of
`<new>` doesn't matter, and might even be undesired by the developer.
By switching to an ambiguous reference we try to find a middle ground
here, ensuring that we don't drop providers of `operator new` when the
developer explicitly listed them in the includes, and chose to believe
it's the implicitly provided `operator new` and don't insert an include
in other cases.
---
clang-tools-extra/include-cleaner/lib/WalkAST.cpp | 4 ++--
clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/clang-tools-extra/include-cleaner/lib/WalkAST.cpp b/clang-tools-extra/include-cleaner/lib/WalkAST.cpp
index a5ac3760a3be2a..598484d09712e5 100644
--- a/clang-tools-extra/include-cleaner/lib/WalkAST.cpp
+++ b/clang-tools-extra/include-cleaner/lib/WalkAST.cpp
@@ -351,11 +351,11 @@ class ASTWalker : public RecursiveASTVisitor<ASTWalker> {
}
bool VisitCXXNewExpr(CXXNewExpr *E) {
- report(E->getExprLoc(), E->getOperatorNew());
+ report(E->getExprLoc(), E->getOperatorNew(), RefType::Ambiguous);
return true;
}
bool VisitCXXDeleteExpr(CXXDeleteExpr *E) {
- report(E->getExprLoc(), E->getOperatorDelete());
+ report(E->getExprLoc(), E->getOperatorDelete(), RefType::Ambiguous);
return true;
}
};
diff --git a/clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp b/clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp
index b0a4473d4ad2b7..6c8eacbff1cea3 100644
--- a/clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp
+++ b/clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp
@@ -557,9 +557,9 @@ TEST(WalkAST, FriendDecl) {
}
TEST(WalkAST, OperatorNewDelete) {
- testWalk("void* $explicit^operator new(decltype(sizeof(int)), void*);",
+ testWalk("void* $ambiguous^operator new(decltype(sizeof(int)), void*);",
"struct Bar { void foo() { Bar b; ^new (&b) Bar; } };");
- testWalk("struct A { static void $explicit^operator delete(void*); };",
+ testWalk("struct A { static void $ambiguous^operator delete(void*); };",
"void foo() { A a; ^delete &a; }");
}
} // namespace
More information about the cfe-commits
mailing list