Reviewers: Szelethus, xazax.hun
Subscribers: rnkovacs, dkrupp, gamesh411, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D63920
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@365133
91177308-0d34-0410-b5e6-
96231b3b80d8
// Does the decl that we found have an implementation?
const FunctionDecl *Definition;
- if (!Result->hasBody(Definition))
+ if (!Result->hasBody(Definition)) {
+ if (!DynType.canBeASubClass())
+ return AnyFunctionCall::getRuntimeDefinition();
return {};
+ }
// We found a definition. If we're not sure that this devirtualization is
// actually what will happen at runtime, make sure to provide the region so
class mycls {
public:
int fcl(int x);
+ virtual int fvcl(int x);
static int fscl(int x);
class embed_cls2 {
int mycls::fcl(int x) {
return x + 5;
}
+int mycls::fvcl(int x) {
+ return x + 7;
+}
int mycls::fscl(int x) {
return x + 6;
}
return x - 11;
}
+class derived : public mycls {
+public:
+ virtual int fvcl(int x) override;
+};
+
+int derived::fvcl(int x) {
+ return x + 8;
+}
+
namespace chns {
int chf2(int x);
c:@F@g#I# ctu-other.cpp.ast
c:@S@mycls@F@fscl#I#S ctu-other.cpp.ast
c:@S@mycls@F@fcl#I# ctu-other.cpp.ast
+c:@S@mycls@F@fvcl#I# ctu-other.cpp.ast
c:@N@myns@S@embed_cls@F@fecl#I# ctu-other.cpp.ast
c:@S@mycls@S@embed_cls2@F@fecl2#I# ctu-other.cpp.ast
+c:@S@derived@F@fvcl#I# ctu-other.cpp.ast
c:@F@f#I# ctu-other.cpp.ast
c:@N@myns@F@fns#I# ctu-other.cpp.ast
c:@F@h#I# ctu-other.cpp.ast
class mycls {
public:
int fcl(int x);
+ virtual int fvcl(int x);
static int fscl(int x);
class embed_cls2 {
};
};
+class derived : public mycls {
+public:
+ virtual int fvcl(int x) override;
+};
+
namespace chns {
int chf1(int x);
}
};
extern U extU;
+void test_virtual_functions(mycls* obj) {
+ // The dynamic type is known.
+ clang_analyzer_eval(mycls().fvcl(1) == 8); // expected-warning{{TRUE}}
+ clang_analyzer_eval(derived().fvcl(1) == 9); // expected-warning{{TRUE}}
+ // We cannot decide about the dynamic type.
+ clang_analyzer_eval(obj->fvcl(1) == 8); // expected-warning{{FALSE}} expected-warning{{TRUE}}
+}
+
int main() {
clang_analyzer_eval(f(3) == 2); // expected-warning{{TRUE}}
clang_analyzer_eval(f(4) == 3); // expected-warning{{TRUE}}
clang_analyzer_eval(fun_using_anon_struct(8) == 8); // expected-warning{{TRUE}}
clang_analyzer_eval(other_macro_diag(1) == 1); // expected-warning{{TRUE}}
- // expected-warning@Inputs/ctu-other.cpp:80{{REACHABLE}}
+ // expected-warning@Inputs/ctu-other.cpp:93{{REACHABLE}}
MACRODIAG(); // expected-warning{{REACHABLE}}
clang_analyzer_eval(extInt == 2); // expected-warning{{TRUE}}