clang 22.0.0git
ASTOps.cpp
Go to the documentation of this file.
1//===-- ASTOps.cc -------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Operations on AST nodes that are used in flow-sensitive analysis.
10//
11//===----------------------------------------------------------------------===//
12
14#include "clang/AST/ASTLambda.h"
16#include "clang/AST/Decl.h"
17#include "clang/AST/DeclBase.h"
18#include "clang/AST/DeclCXX.h"
19#include "clang/AST/Expr.h"
20#include "clang/AST/ExprCXX.h"
21#include "clang/AST/Stmt.h"
22#include "clang/AST/Type.h"
24#include "clang/Basic/LLVM.h"
25#include "llvm/ADT/DenseSet.h"
26#include "llvm/ADT/STLExtras.h"
27#include <cassert>
28#include <iterator>
29#include <vector>
30
31#define DEBUG_TYPE "dataflow"
32
33namespace clang::dataflow {
34
36 const Expr *Current = &E;
37 const Expr *Last = nullptr;
38 while (Current != Last) {
39 Last = Current;
40 if (auto *EWC = dyn_cast<ExprWithCleanups>(Current)) {
41 Current = EWC->getSubExpr();
42 assert(Current != nullptr);
43 }
44 if (auto *CE = dyn_cast<ConstantExpr>(Current)) {
45 Current = CE->getSubExpr();
46 assert(Current != nullptr);
47 }
48 Current = Current->IgnoreParens();
49 assert(Current != nullptr);
50 }
51 return *Current;
52}
53
55 if (auto *E = dyn_cast<Expr>(&S))
56 return ignoreCFGOmittedNodes(*E);
57 return S;
58}
59
60// FIXME: Does not precisely handle non-virtual diamond inheritance. A single
61// field decl will be modeled for all instances of the inherited field.
65 return;
66
67 Fields.insert_range(Type->getAsRecordDecl()->fields());
68 if (auto *CXXRecord = Type->getAsCXXRecordDecl())
69 for (const CXXBaseSpecifier &Base : CXXRecord->bases())
70 getFieldsFromClassHierarchy(Base.getType(), Fields);
71}
72
73/// Gets the set of all fields in the type.
75 FieldSet Fields;
77 return Fields;
78}
79
80bool containsSameFields(const FieldSet &Fields,
81 const RecordStorageLocation::FieldToLoc &FieldLocs) {
82 if (Fields.size() != FieldLocs.size())
83 return false;
84 for ([[maybe_unused]] auto [Field, Loc] : FieldLocs)
85 if (!Fields.contains(cast_or_null<FieldDecl>(Field)))
86 return false;
87 return true;
88}
89
90/// Returns the fields of a `RecordDecl` that are initialized by an
91/// `InitListExpr` or `CXXParenListInitExpr`, in the order in which they appear
92/// in `InitListExpr::inits()` / `CXXParenListInitExpr::getInitExprs()`.
93/// `InitList->getType()` must be a record type.
94template <class InitListT>
95static std::vector<const FieldDecl *>
96getFieldsForInitListExpr(const InitListT *InitList) {
97 const RecordDecl *RD = InitList->getType()->getAsRecordDecl();
98 assert(RD != nullptr);
99
100 std::vector<const FieldDecl *> Fields;
101
102 if (InitList->getType()->isUnionType()) {
103 if (const FieldDecl *Field = InitList->getInitializedFieldInUnion())
104 Fields.push_back(Field);
105 return Fields;
106 }
107
108 // Unnamed bitfields are only used for padding and do not appear in
109 // `InitListExpr`'s inits. However, those fields do appear in `RecordDecl`'s
110 // field list, and we thus need to remove them before mapping inits to
111 // fields to avoid mapping inits to the wrongs fields.
112 llvm::copy_if(
113 RD->fields(), std::back_inserter(Fields),
114 [](const FieldDecl *Field) { return !Field->isUnnamedBitField(); });
115 return Fields;
116}
117
119 : RecordInitListHelper(InitList->getType(),
120 getFieldsForInitListExpr(InitList),
121 InitList->inits()) {}
122
124 const CXXParenListInitExpr *ParenInitList)
125 : RecordInitListHelper(ParenInitList->getType(),
126 getFieldsForInitListExpr(ParenInitList),
127 ParenInitList->getInitExprs()) {}
128
130 QualType Ty, std::vector<const FieldDecl *> Fields,
131 ArrayRef<Expr *> Inits) {
132 auto *RD = Ty->getAsCXXRecordDecl();
133 assert(RD != nullptr);
134
135 // Unions initialized with an empty initializer list need special treatment.
136 // For structs/classes initialized with an empty initializer list, Clang
137 // puts `ImplicitValueInitExpr`s in `InitListExpr::inits()`, but for unions,
138 // it doesn't do this -- so we create an `ImplicitValueInitExpr` ourselves.
139 SmallVector<Expr *> InitsForUnion;
140 if (Ty->isUnionType() && Inits.empty()) {
141 assert(Fields.size() <= 1);
142 if (!Fields.empty()) {
143 ImplicitValueInitForUnion.emplace(Fields.front()->getType());
144 InitsForUnion.push_back(&*ImplicitValueInitForUnion);
145 }
146 Inits = InitsForUnion;
147 }
148
149 size_t InitIdx = 0;
150
151 assert(Fields.size() + RD->getNumBases() == Inits.size());
152 for (const CXXBaseSpecifier &Base : RD->bases()) {
153 assert(InitIdx < Inits.size());
154 Expr *Init = Inits[InitIdx++];
155 BaseInits.emplace_back(&Base, Init);
156 }
157
158 assert(Fields.size() == Inits.size() - InitIdx);
159 for (const FieldDecl *Field : Fields) {
160 assert(InitIdx < Inits.size());
161 Expr *Init = Inits[InitIdx++];
162 FieldInits.emplace_back(Field, Init);
163 }
164}
165
166static void insertIfGlobal(const Decl &D,
167 llvm::DenseSet<const VarDecl *> &Globals) {
168 if (auto *V = dyn_cast<VarDecl>(&D))
169 if (V->hasGlobalStorage())
170 Globals.insert(V);
171}
172
173static void insertIfLocal(const Decl &D,
174 llvm::DenseSet<const VarDecl *> &Locals) {
175 if (auto *V = dyn_cast<VarDecl>(&D))
176 if (V->hasLocalStorage() && !isa<ParmVarDecl>(V))
177 Locals.insert(V);
178}
179
180static void insertIfFunction(const Decl &D,
181 llvm::DenseSet<const FunctionDecl *> &Funcs) {
182 if (auto *FD = dyn_cast<FunctionDecl>(&D))
183 Funcs.insert(FD);
184}
185
187 // Use getCalleeDecl instead of getMethodDecl in order to handle
188 // pointer-to-member calls.
189 const auto *MethodDecl = dyn_cast_or_null<CXXMethodDecl>(C.getCalleeDecl());
190 if (!MethodDecl)
191 return nullptr;
192 auto *Body = dyn_cast_or_null<CompoundStmt>(MethodDecl->getBody());
193 if (!Body || Body->size() != 1)
194 return nullptr;
195 if (auto *RS = dyn_cast<ReturnStmt>(*Body->body_begin()))
196 if (auto *Return = RS->getRetValue())
197 return dyn_cast<MemberExpr>(Return->IgnoreParenImpCasts());
198 return nullptr;
199}
200
202public:
204 : Referenced(Referenced) {}
205
207 for (const CXXCtorInitializer *Init : Ctor->inits()) {
208 if (Init->isMemberInitializer()) {
209 Referenced.Fields.insert(Init->getMember());
210 } else if (Init->isIndirectMemberInitializer()) {
211 for (const auto *I : Init->getIndirectMember()->chain())
212 Referenced.Fields.insert(cast<FieldDecl>(I));
213 }
214
215 Expr *InitExpr = Init->getInit();
216
217 // Also collect declarations referenced in `InitExpr`.
218 TraverseStmt(InitExpr);
219
220 // If this is a `CXXDefaultInitExpr`, also collect declarations referenced
221 // within the default expression.
222 if (auto *DefaultInit = dyn_cast<CXXDefaultInitExpr>(InitExpr))
223 TraverseStmt(DefaultInit->getExpr());
224 }
225 }
226
227 bool VisitDecl(Decl *D) override {
228 insertIfGlobal(*D, Referenced.Globals);
229 insertIfLocal(*D, Referenced.Locals);
230 insertIfFunction(*D, Referenced.Functions);
231 return true;
232 }
233
234 bool VisitDeclRefExpr(DeclRefExpr *E) override {
235 insertIfGlobal(*E->getDecl(), Referenced.Globals);
236 insertIfLocal(*E->getDecl(), Referenced.Locals);
237 insertIfFunction(*E->getDecl(), Referenced.Functions);
238 return true;
239 }
240
242 // If this is a method that returns a member variable but does nothing else,
243 // model the field of the return value.
245 if (const auto *FD = dyn_cast<FieldDecl>(E->getMemberDecl()))
246 Referenced.Fields.insert(FD);
247 return true;
248 }
249
250 bool VisitMemberExpr(MemberExpr *E) override {
251 // FIXME: should we be using `E->getFoundDecl()`?
252 const ValueDecl *VD = E->getMemberDecl();
253 insertIfGlobal(*VD, Referenced.Globals);
254 insertIfFunction(*VD, Referenced.Functions);
255 if (const auto *FD = dyn_cast<FieldDecl>(VD))
256 Referenced.Fields.insert(FD);
257 return true;
258 }
259
260 bool VisitInitListExpr(InitListExpr *InitList) override {
261 if (InitList->getType()->isRecordType())
262 Referenced.Fields.insert_range(getFieldsForInitListExpr(InitList));
263 return true;
264 }
265
266 bool VisitCXXParenListInitExpr(CXXParenListInitExpr *ParenInitList) override {
267 if (ParenInitList->getType()->isRecordType())
268 Referenced.Fields.insert_range(getFieldsForInitListExpr(ParenInitList));
269 return true;
270 }
271
272private:
273 ReferencedDecls &Referenced;
274};
275
279 Visitor.TraverseStmt(FD.getBody());
280 if (const auto *CtorDecl = dyn_cast<CXXConstructorDecl>(&FD))
281 Visitor.traverseConstructorInits(CtorDecl);
282
283 // If analyzing a lambda call operator, collect all captures of parameters (of
284 // the surrounding function). This collects them even if they are not
285 // referenced in the body of the lambda call operator. Non-parameter local
286 // variables that are captured are already collected into
287 // `ReferencedDecls.Locals` when traversing the call operator body, but we
288 // collect parameters here to avoid needing to check at each referencing node
289 // whether the parameter is a lambda capture from a surrounding function or is
290 // a parameter of the current function. If it becomes necessary to limit this
291 // set to the parameters actually referenced in the body, alternative
292 // optimizations can be implemented to minimize duplicative work.
293 if (const auto *Method = dyn_cast<CXXMethodDecl>(&FD);
295 for (const auto &Capture : Method->getParent()->captures()) {
296 if (Capture.capturesVariable()) {
297 if (const auto *Param =
298 dyn_cast<ParmVarDecl>(Capture.getCapturedVar())) {
299 Result.LambdaCapturedParams.insert(Param);
300 }
301 }
302 }
303 }
304
305 return Result;
306}
307
311 Visitor.TraverseStmt(const_cast<Stmt *>(&S));
312 return Result;
313}
314
315} // namespace clang::dataflow
#define V(N, I)
This file provides some common utility functions for processing Lambda related AST Constructs.
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Defines the clang::Expr interface and subclasses for C++ expressions.
TokenType getType() const
Returns the token's type, e.g.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
C Language Family Type Representation.
Represents a base class of a C++ class.
Definition DeclCXX.h:146
Represents a C++ constructor within a class.
Definition DeclCXX.h:2604
Represents a C++ base or member initializer.
Definition DeclCXX.h:2369
Represents a call to a member function that may be written either with member call syntax (e....
Definition ExprCXX.h:179
Represents a list-initialization with parenthesis.
Definition ExprCXX.h:5135
A reference to a declared variable, function, enum, etc.
Definition Expr.h:1272
ValueDecl * getDecl()
Definition Expr.h:1340
Decl - This represents one declaration (or definition), e.g.
Definition DeclBase.h:86
virtual bool TraverseStmt(MaybeConst< Stmt > *S)
This represents one expression.
Definition Expr.h:112
Expr * IgnoreParens() LLVM_READONLY
Skip past any parentheses which might surround this expression until reaching a fixed point.
Definition Expr.cpp:3069
QualType getType() const
Definition Expr.h:144
Represents a member of a struct/union/class.
Definition Decl.h:3157
Represents a function declaration or definition.
Definition Decl.h:1999
Stmt * getBody(const FunctionDecl *&Definition) const
Retrieve the body (definition) of the function.
Definition Decl.cpp:3271
Describes an C or C++ initializer list.
Definition Expr.h:5235
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
Definition Expr.h:3300
ValueDecl * getMemberDecl() const
Retrieve the member declaration to which this expression refers.
Definition Expr.h:3383
A (possibly-)qualified type.
Definition TypeBase.h:937
Represents a struct/union/class.
Definition Decl.h:4309
field_range fields() const
Definition Decl.h:4512
Stmt - This represents one statement.
Definition Stmt.h:85
The base class of the type hierarchy.
Definition TypeBase.h:1833
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
Definition Type.h:26
RecordDecl * getAsRecordDecl() const
Retrieves the RecordDecl this type refers to.
Definition Type.h:41
bool isDependentType() const
Whether this type is a dependent type, meaning that its definition somehow depends on a template para...
Definition TypeBase.h:2782
bool isIncompleteType(NamedDecl **Def=nullptr) const
Types are partitioned into 3 broad categories (C99 6.2.5p1): object types, function types,...
Definition Type.cpp:2436
bool isRecordType() const
Definition TypeBase.h:8649
bool isUnionType() const
Definition Type.cpp:718
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Definition Decl.h:711
RecordInitListHelper(const InitListExpr *InitList)
Definition ASTOps.cpp:118
llvm::DenseMap< const ValueDecl *, StorageLocation * > FieldToLoc
bool VisitCXXParenListInitExpr(CXXParenListInitExpr *ParenInitList) override
Definition ASTOps.cpp:266
bool VisitInitListExpr(InitListExpr *InitList) override
Definition ASTOps.cpp:260
bool VisitMemberExpr(MemberExpr *E) override
Definition ASTOps.cpp:250
bool VisitDeclRefExpr(DeclRefExpr *E) override
Definition ASTOps.cpp:234
void traverseConstructorInits(const CXXConstructorDecl *Ctor)
Definition ASTOps.cpp:206
bool VisitCXXMemberCallExpr(CXXMemberCallExpr *C) override
Definition ASTOps.cpp:241
ReferencedDeclsVisitor(ReferencedDecls &Referenced)
Definition ASTOps.cpp:203
bool VisitDecl(Decl *D) override
Definition ASTOps.cpp:227
Dataflow Directional Tag Classes.
Definition AdornedCFG.h:29
static void getFieldsFromClassHierarchy(QualType Type, FieldSet &Fields)
Definition ASTOps.cpp:62
static void insertIfFunction(const Decl &D, llvm::DenseSet< const FunctionDecl * > &Funcs)
Definition ASTOps.cpp:180
static MemberExpr * getMemberForAccessor(const CXXMemberCallExpr &C)
Definition ASTOps.cpp:186
ReferencedDecls getReferencedDecls(const FunctionDecl &FD)
Returns declarations that are declared in or referenced from FD.
Definition ASTOps.cpp:276
static std::vector< const FieldDecl * > getFieldsForInitListExpr(const InitListT *InitList)
Returns the fields of a RecordDecl that are initialized by an InitListExpr or CXXParenListInitExpr,...
Definition ASTOps.cpp:96
const Expr & ignoreCFGOmittedNodes(const Expr &E)
Skip past nodes that the CFG does not emit.
Definition ASTOps.cpp:35
FieldSet getObjectFields(QualType Type)
Returns the set of all fields in the type.
Definition ASTOps.cpp:74
static void insertIfGlobal(const Decl &D, llvm::DenseSet< const VarDecl * > &Globals)
Definition ASTOps.cpp:166
static void insertIfLocal(const Decl &D, llvm::DenseSet< const VarDecl * > &Locals)
Definition ASTOps.cpp:173
bool containsSameFields(const FieldSet &Fields, const RecordStorageLocation::FieldToLoc &FieldLocs)
Returns whether Fields and FieldLocs contain the same fields.
Definition ASTOps.cpp:80
llvm::SmallSetVector< const FieldDecl *, 4 > FieldSet
A set of FieldDecl *.
Definition ASTOps.h:43
bool isa(CodeGen::Address addr)
Definition Address.h:330
bool isLambdaCallOperator(const CXXMethodDecl *MD)
Definition ASTLambda.h:28
@ Result
The result type of a method or function.
Definition TypeBase.h:905
U cast(CodeGen::Address addr)
Definition Address.h:327
A collection of several types of declarations, all referenced from the same function.
Definition ASTOps.h:143