[clang] [clang][dataflow] Model the fields that are accessed via inline accessors (PR #66368)
Kinuko Yasuda via cfe-commits
cfe-commits at lists.llvm.org
Fri Sep 15 17:08:16 PDT 2023
================
@@ -324,6 +336,12 @@ getFieldsGlobalsAndFuncs(const Stmt &S, FieldSet &Fields,
} else if (auto *E = dyn_cast<DeclRefExpr>(&S)) {
insertIfGlobal(*E->getDecl(), Vars);
insertIfFunction(*E->getDecl(), Funcs);
+ } else if (const auto *C = dyn_cast<CXXMemberCallExpr>(&S)) {
+ // If this is a method that returns a member variable but does nothing else,
+ // model the field of the return value.
+ if (MemberExpr *E = dyn_cast_or_null<MemberExpr>(
+ getRetValueFromSingleReturnStmtMethod(*C)))
+ getFieldsGlobalsAndFuncs(*E, Fields, Vars, Funcs);
----------------
kinu wrote:
Totally, done.
https://github.com/llvm/llvm-project/pull/66368
More information about the cfe-commits
mailing list