[PATCH] D103018: [clang-tidy] performance-unnecessary-copy-initialization: Look at the canonical type when checking for aliases.
Felix Berger via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jun 9 13:37:23 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rGefa4dbc32ca9: [clang-tidy] performance-unnecessary-copy-initialization: Look at the canonical… (authored by flx).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D103018/new/
https://reviews.llvm.org/D103018
Files:
clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.cpp
clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-copy-initialization.cpp
Index: clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-copy-initialization.cpp
===================================================================
--- clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-copy-initialization.cpp
+++ clang-tools-extra/test/clang-tidy/checkers/performance-unnecessary-copy-initialization.cpp
@@ -4,6 +4,7 @@
ExpensiveToCopyType();
virtual ~ExpensiveToCopyType();
const ExpensiveToCopyType &reference() const;
+ const ExpensiveToCopyType *pointer() const;
void nonConstMethod();
bool constMethod() const;
};
@@ -548,6 +549,25 @@
Orig.nonConstMethod();
}
+void negativeAliasNonCanonicalPointerType() {
+ ExpensiveToCopyType Orig;
+ // The use of auto here hides that the type is a pointer type. The check needs
+ // to look at the canonical type to detect the aliasing through this pointer.
+ const auto Pointer = Orig.pointer();
+ const auto NecessaryCopy = Pointer->reference();
+ Orig.nonConstMethod();
+}
+
+void negativeAliasTypedefedType() {
+ typedef const ExpensiveToCopyType &ReferenceType;
+ ExpensiveToCopyType Orig;
+ // The typedef hides the fact that this is a reference type. The check needs
+ // to look at the canonical type to detect the aliasing.
+ ReferenceType Ref = Orig.reference();
+ const auto NecessaryCopy = Ref.reference();
+ Orig.nonConstMethod();
+}
+
void positiveCopiedFromGetterOfReferenceToConstVar() {
ExpensiveToCopyType Orig;
const auto &Ref = Orig.reference();
Index: clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.cpp
===================================================================
--- clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.cpp
+++ clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.cpp
@@ -100,7 +100,7 @@
if (!isOnlyUsedAsConst(InitializingVar, BlockStmt, Context))
return false;
- QualType T = InitializingVar.getType();
+ QualType T = InitializingVar.getType().getCanonicalType();
// The variable is a value type and we know it is only used as const. Safe
// to reference it and avoid the copy.
if (!isa<ReferenceType, PointerType>(T))
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D103018.350990.patch
Type: text/x-patch
Size: 2186 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210609/3e280fe4/attachment.bin>
More information about the cfe-commits
mailing list