-
Notifications
You must be signed in to change notification settings - Fork 12.3k
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
[analyzer] Check C++ base or member initializer in WebKit checkers. #92220
Conversation
@llvm/pr-subscribers-clang-static-analyzer-1 @llvm/pr-subscribers-clang Author: Ryosuke Niwa (rniwa) ChangesFull diff: https://github.com/llvm/llvm-project/pull/92220.diff 2 Files Affected:
diff --git a/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp b/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
index 950d35a090a3f..5c797d5233089 100644
--- a/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
+++ b/clang/lib/StaticAnalyzer/Checkers/WebKit/PtrTypesSemantics.cpp
@@ -525,11 +525,19 @@ bool TrivialFunctionAnalysis::isTrivialImpl(
if (!IsNew)
return It->second;
+ TrivialFunctionAnalysisVisitor V(Cache);
+
+ if (auto *CtorDecl = dyn_cast<CXXConstructorDecl>(D)) {
+ for (auto *CtorInit : CtorDecl->inits()) {
+ if (!V.Visit(CtorInit->getInit()))
+ return false;
+ }
+ }
+
const Stmt *Body = D->getBody();
if (!Body)
return false;
- TrivialFunctionAnalysisVisitor V(Cache);
bool Result = V.Visit(Body);
if (Result)
Cache[D] = true;
diff --git a/clang/test/Analysis/Checkers/WebKit/uncounted-obj-arg.cpp b/clang/test/Analysis/Checkers/WebKit/uncounted-obj-arg.cpp
index ed37671df3d3e..96986631726fe 100644
--- a/clang/test/Analysis/Checkers/WebKit/uncounted-obj-arg.cpp
+++ b/clang/test/Analysis/Checkers/WebKit/uncounted-obj-arg.cpp
@@ -159,10 +159,13 @@ template<typename E> class OptionSet {
StorageType m_storage { 0 };
};
+int atoi(const char* str);
+
class Number {
public:
Number(int v) : v(v) { }
Number(double);
+ Number(const char* str) : v(atoi(str)) { }
Number operator+(const Number&);
Number& operator++() { ++v; return *this; }
Number operator++(int) { Number returnValue(v); ++v; return returnValue; }
@@ -173,9 +176,16 @@ class Number {
int v;
};
+class DerivedNumber : public Number {
+public:
+ DerivedNumber(char c) : Number(c - '0') { }
+ DerivedNumber(const char* str) : Number(atoi(str)) { }
+};
+
class ComplexNumber {
public:
ComplexNumber() : realPart(0), complexPart(0) { }
+ ComplexNumber(int real, const char* str) : realPart(real), complexPart(str) { }
ComplexNumber(const ComplexNumber&);
ComplexNumber& operator++() { realPart.someMethod(); return *this; }
ComplexNumber operator++(int);
@@ -311,6 +321,7 @@ class RefCounted {
return;
}
unsigned trivial60() { return ObjectWithNonTrivialDestructor { 5 }.value(); }
+ unsigned trivial61() { return DerivedNumber('7').value(); }
static RefCounted& singleton() {
static RefCounted s_RefCounted;
@@ -391,6 +402,9 @@ class RefCounted {
ComplexNumber nonTrivial18() { return +complex; }
ComplexNumber* nonTrivial19() { return new ComplexNumber(complex); }
unsigned nonTrivial20() { return ObjectWithMutatingDestructor { 7 }.value(); }
+ unsigned nonTrivial21() { return Number("123").value(); }
+ unsigned nonTrivial22() { return ComplexNumber(123, "456").real().value(); }
+ unsigned nonTrivial23() { return DerivedNumber("123").value(); }
static unsigned s_v;
unsigned v { 0 };
@@ -479,6 +493,7 @@ class UnrelatedClass {
getFieldTrivial().trivial58(); // no-warning
getFieldTrivial().trivial59(); // no-warning
getFieldTrivial().trivial60(); // no-warning
+ getFieldTrivial().trivial61(); // no-warning
RefCounted::singleton().trivial18(); // no-warning
RefCounted::singleton().someFunction(); // no-warning
@@ -525,6 +540,12 @@ class UnrelatedClass {
// expected-warning@-1{{Call argument for 'this' parameter is uncounted and unsafe}}
getFieldTrivial().nonTrivial20();
// expected-warning@-1{{Call argument for 'this' parameter is uncounted and unsafe}}
+ getFieldTrivial().nonTrivial21();
+ // expected-warning@-1{{Call argument for 'this' parameter is uncounted and unsafe}}
+ getFieldTrivial().nonTrivial22();
+ // expected-warning@-1{{Call argument for 'this' parameter is uncounted and unsafe}}
+ getFieldTrivial().nonTrivial23();
+ // expected-warning@-1{{Call argument for 'this' parameter is uncounted and unsafe}}
}
};
|
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.
LGTM!
|
||
if (auto *CtorDecl = dyn_cast<CXXConstructorDecl>(D)) { | ||
for (auto *CtorInit : CtorDecl->inits()) { | ||
if (!V.Visit(CtorInit->getInit())) |
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.
I don't remember if either of these needs a null check. IIRC it's probably ok but if you run into crashes you know where to look ;)
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.
Doesn't seem to hit any crashes as far as building WebKit goes :)
Thanks for the review! |
…lvm#92220) Co-authored-by: Ryosuke Niwa <rniwa@apple.com>
…lvm#92220) Co-authored-by: Ryosuke Niwa <rniwa@apple.com>
…lvm#92220) Co-authored-by: Ryosuke Niwa <rniwa@apple.com>
…lvm#92220) Co-authored-by: Ryosuke Niwa <rniwa@apple.com>
…lvm#92220) Co-authored-by: Ryosuke Niwa <rniwa@apple.com>
…lvm#92220) Co-authored-by: Ryosuke Niwa <rniwa@apple.com>
No description provided.