[PATCH] D97512: [clang] removes check against integral-to-pointer conversion...
Christopher Di Bella via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 26 11:11:31 PST 2021
cjdb updated this revision to Diff 326748.
cjdb added a comment.
`s/IgnoreImplicitAsWritten/IgnoreParenImpCasts/` since the latter seems to work.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D97512/new/
https://reviews.llvm.org/D97512
Files:
clang/lib/Sema/SemaChecking.cpp
clang/test/Analysis/free.c
clang/test/Analysis/free.cpp
Index: clang/test/Analysis/free.cpp
===================================================================
--- clang/test/Analysis/free.cpp
+++ clang/test/Analysis/free.cpp
@@ -208,3 +208,39 @@
// Unknown value
std::free(x[offset]); // no-warning
}
+
+struct S {
+ const char* p;
+};
+
+void t18_C_style_C_style_free (S s) {
+ free((void*)(unsigned long long)s.p); // no warning
+}
+
+void t18_C_style_C_style_std_free (S s) {
+ std::free((void*)(unsigned long long)s.p); // no warning
+}
+
+void t18_C_style_reinterpret_free (S s) {
+ free((void*)reinterpret_cast<unsigned long long>(s.p)); // no warning
+}
+
+void t18_C_style_reinterpret_std_free (S s) {
+ std::free((void*)reinterpret_cast<unsigned long long>(s.p)); // no warning
+}
+
+void t18_reinterpret_C_style_free (S s) {
+ free(reinterpret_cast<void*>((unsigned long long)(s.p))); // no warning
+}
+
+void t18_reinterpret_C_style_std_free (S s) {
+ std::free(reinterpret_cast<void*>((unsigned long long)(s.p))); // no warning
+}
+
+void t18_reinterpret_reinterpret_free (S s) {
+ free(reinterpret_cast<void*>(reinterpret_cast<unsigned long long>(s.p))); // no warning
+}
+
+void t18_reinterpret_reinterpret_std_free (S s) {
+ std::free(reinterpret_cast<void*>(reinterpret_cast<unsigned long long>(s.p))); // no warning
+}
Index: clang/test/Analysis/free.c
===================================================================
--- clang/test/Analysis/free.c
+++ clang/test/Analysis/free.c
@@ -108,3 +108,11 @@
// expected-warning at -1{{Argument to free() is the address of the function 'iptr', which is not memory allocated by malloc()}}
// expected-warning at -2{{attempt to call free on non-heap object 'iptr'}}
}
+
+struct S {
+ const char* p;
+};
+
+void t18 (struct S s) {
+ free((void*)(unsigned long long)s.p); // no warning
+}
Index: clang/lib/Sema/SemaChecking.cpp
===================================================================
--- clang/lib/Sema/SemaChecking.cpp
+++ clang/lib/Sema/SemaChecking.cpp
@@ -10316,11 +10316,18 @@
const CastExpr *Cast) {
SmallString<128> SizeString;
llvm::raw_svector_ostream OS(SizeString);
+
+ clang::CastKind Kind = Cast->getCastKind();
+ if (Kind == clang::CK_BitCast &&
+ !Cast->getSubExpr()->getType()->isFunctionPointerType())
+ return;
+ if (Kind == clang::CK_IntegralToPointer &&
+ !isa<IntegerLiteral>(
+ Cast->getSubExpr()->IgnoreParenImpCasts()->IgnoreParens()))
+ return;
+
switch (Cast->getCastKind()) {
case clang::CK_BitCast:
- if (!Cast->getSubExpr()->getType()->isFunctionPointerType())
- return;
- LLVM_FALLTHROUGH;
case clang::CK_IntegralToPointer:
case clang::CK_FunctionToPointerDecay:
OS << '\'';
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D97512.326748.patch
Type: text/x-patch
Size: 2730 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210226/ba753186/attachment.bin>
More information about the cfe-commits
mailing list