clang 24.0.0git
FactsGenerator.h
Go to the documentation of this file.
1//===- FactsGenerator.h - Lifetime Facts Generation -------------*- 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// This file defines the FactsGenerator, which traverses the AST to generate
10// lifetime-relevant facts (such as loan issuance, expiration, origin flow,
11// and use) from CFG statements. These facts are used by the dataflow analyses
12// to track pointer lifetimes and detect use-after-free errors.
13//
14//===----------------------------------------------------------------------===//
15#ifndef LLVM_CLANG_ANALYSIS_ANALYSES_LIFETIMESAFETY_FACTSGENERATOR_H
16#define LLVM_CLANG_ANALYSIS_ANALYSES_LIFETIMESAFETY_FACTSGENERATOR_H
17
22#include "clang/Analysis/CFG.h"
23#include "llvm/ADT/SmallVector.h"
24
26
27class FactsGenerator : public ConstStmtVisitor<FactsGenerator> {
29
30public:
32 : FactMgr(FactMgr), AC(AC),
33 IsCMode(!AC.getASTContext().getLangOpts().CPlusPlus &&
34 !AC.getASTContext().getLangOpts().ObjC) {}
35
36 void run();
37
38 void VisitDeclStmt(const DeclStmt *DS);
39 void VisitDeclRefExpr(const DeclRefExpr *DRE);
43 void VisitMemberExpr(const MemberExpr *ME);
44 void VisitCallExpr(const CallExpr *CE);
46 void VisitCastExpr(const CastExpr *CE);
47 void VisitUnaryOperator(const UnaryOperator *UO);
48 void VisitReturnStmt(const ReturnStmt *RS);
49 void VisitBinaryOperator(const BinaryOperator *BO);
53 void VisitInitListExpr(const InitListExpr *ILE);
56 void VisitLambdaExpr(const LambdaExpr *LE);
58 void VisitCXXNewExpr(const CXXNewExpr *NE);
59 void VisitCXXDeleteExpr(const CXXDeleteExpr *DE);
60 void VisitCXXThrowExpr(const CXXThrowExpr *TE);
61 void VisitGCCAsmStmt(const GCCAsmStmt *AS);
62 void VisitCXXTypeidExpr(const CXXTypeidExpr *TE);
63 void VisitStmtExpr(const StmtExpr *SE);
64
65private:
66 OriginList *getOriginsList(const ValueDecl &D);
67 OriginList *getOriginsList(const Expr &E);
68
69 bool hasOrigins(QualType QT) const;
70 bool hasOrigins(const Expr *E) const;
71
72 void flow(OriginList *Dst, OriginList *Src, bool Kill,
73 const CFGBlock *Block = nullptr);
74
75 /// Handles assignment for both BinaryOperator and CXXOperatorCallExpr.
76 ///
77 /// LHSExpr is the destination whose stored loans are replaced by RHSExpr's
78 /// loans. TargetExpr is the assignment expression itself; it receives
79 /// LHSExpr's origins so chained assignments like `a = b = c` can propagate
80 /// through the result of `b = c`.
81 void handleAssignment(const Expr *TargetExpr, const Expr *LHSExpr,
82 const Expr *RHSExpr);
83
84 void handlePointerArithmetic(const BinaryOperator *BO);
85
86 bool handlePlacementNew(const CXXNewExpr *NE, OriginList *NewList);
87
88 void handleCXXCtorInitializer(const CXXCtorInitializer *CII);
89
90 void handleLifetimeEnds(const CFGLifetimeEnds &LifetimeEnds);
91
92 void handleFullExprCleanup(const CFGFullExprCleanup &FullExprCleanup);
93
94 void handleExitBlock();
95
96 /// Mark all fields of the implicit object as used for an instance method
97 /// call, since the callee may access any part of the object.
98 void handleImplicitObjectFieldUses(const Expr *Call, const FunctionDecl *FD);
99
100 void handleGSLPointerConstruction(const CXXConstructExpr *CCE);
101
102 /// Detects arguments passed to rvalue reference parameters and creates
103 /// MovedOriginFact for them. The MovedLoansAnalysis then uses these facts
104 /// to track in a flow-sensitive manner which loans have been moved at each
105 /// program point, allowing warnings to distinguish potentially moved storage
106 /// from other use-after-free errors.
107 void handleMovedArgsInCall(const FunctionDecl *FD,
109
110 // Handles [[clang::lifetime_capture_by(X)]] annotations on a function call to
111 // create flow facts from captured arguments to the capturer
112 void handleLifetimeCaptureBy(const FunctionDecl *FD,
114
115 /// Checks if a call-like expression creates a borrow by passing a value to a
116 /// reference parameter, creating an IssueFact if it does.
117 /// \param IsGslConstruction True if this is a GSL construction where all
118 /// argument origins should flow to the returned origin.
119 void handleFunctionCall(const Expr *Call, bool IsGslConstruction = false);
120
121 // Detect methods that invalidate iterators/references/pointees.
122 // For instance methods, Args[0] is the implicit 'this' pointer.
123 void handleInvalidatingCall(const Expr *Call, const FunctionDecl *FD,
125
126 // Detect explicit destructor calls/`std::destroy_at`
127 void handleDestructiveCall(const Expr *Call, const FunctionDecl *FD,
129
130 template <typename Destination, typename Source>
131 void flowOrigin(const Destination &D, const Source &S) {
132 flow(getOriginsList(D), getOriginsList(S), /*Kill=*/false);
133 }
134
135 template <typename Destination, typename Source>
136 void killAndFlowOrigin(const Destination &D, const Source &S) {
137 flow(getOriginsList(D), getOriginsList(S), /*Kill=*/true);
138 }
139
140 /// Checks if the expression is a `void("__lifetime_test_point_...")` cast.
141 /// If so, creates a `TestPointFact` and returns true.
142 bool handleTestPoint(const CXXFunctionalCastExpr *FCE);
143
144 /// Whether \p List's outer origin names a declaration's storage outright, so
145 /// it can never hold an expired loan (see Origin::NamesDeclStorage).
146 bool namesDeclStorage(const OriginList *List) const;
147
148 /// Returns the origins of the value \p E evaluates to, recording the read of
149 /// a glvalue. Callers that write to \p E peel the outer origin themselves.
150 ///
151 /// Example: For `View& v`, returns the origin of what v points to, not v's
152 /// storage.
153 OriginList *readValue(const Expr *E);
154
155 /// Records an access (read or write) of the storage \p E designates, or that
156 /// a prvalue pointer \p E points to.
157 void handleAccess(const Expr *E);
158
159 /// Records that \p E's value is handed to opaque code, which may dereference
160 /// it to any depth.
161 void handleUse(const Expr *E);
162
163 bool escapesViaReturn(OriginID OID) const;
164
165 llvm::SmallVector<Fact *> issuePlaceholderLoans();
166 FactManager &FactMgr;
168 llvm::SmallVector<Fact *> CurrentBlockFacts;
169 // Collect origins that escape the function in this block (OriginEscapesFact),
170 // appended at the end of CurrentBlockFacts to ensure they appear after
171 // ExpireFact entries.
172 llvm::SmallVector<Fact *> EscapesInCurrentBlock;
173 const CFGBlock *CurrentBlock;
174 bool IsCMode = false;
175};
176
177} // namespace clang::lifetimes::internal
178
179#endif // LLVM_CLANG_ANALYSIS_ANALYSES_LIFETIMESAFETY_FACTSGENERATOR_H
This file defines AnalysisDeclContext, a class that manages the analysis context data for context sen...
static bool handleAssignment(EvalInfo &Info, const Expr *E, const LValue &LVal, QualType LValType, APValue &Val)
Perform an assignment of Val to LVal. Takes ownership of Val.
AbstractConditionalOperator - An abstract base class for ConditionalOperator and BinaryConditionalOpe...
Definition Expr.h:4397
AnalysisDeclContext contains the context data for the function, method or block under analysis.
ArraySubscriptExpr - [C99 6.5.2.1] Array Subscripting.
Definition Expr.h:2765
A builtin binary operation expression such as "x + y" or "x <= y".
Definition Expr.h:4082
Represents a single basic block in a source-level CFG.
Definition CFG.h:652
Represents the point where the lifetime of an automatic object ends.
Definition CFG.h:321
Represents binding an expression to a temporary.
Definition ExprCXX.h:1497
Represents a call to a C++ constructor.
Definition ExprCXX.h:1552
Represents a C++ base or member initializer.
Definition DeclCXX.h:2407
A use of a default initializer in a constructor or in aggregate initialization.
Definition ExprCXX.h:1381
Represents a delete expression for memory deallocation and destructor calls, e.g.
Definition ExprCXX.h:2630
Represents an explicit C++ type conversion that uses "functional" notation (C++ [expr....
Definition ExprCXX.h:1835
Represents a call to a member function that may be written either with member call syntax (e....
Definition ExprCXX.h:183
Represents a new-expression for memory allocation and constructor calls, e.g: "new CXXNewExpr(foo)".
Definition ExprCXX.h:2359
The null pointer literal (C++11 [lex.nullptr])
Definition ExprCXX.h:772
A call to an overloaded operator written using operator syntax.
Definition ExprCXX.h:85
A C++ throw-expression (C++ [except.throw]).
Definition ExprCXX.h:1212
A C++ typeid expression (C++ [expr.typeid]), which gets the type_info that corresponds to the supplie...
Definition ExprCXX.h:852
CallExpr - Represents a function call (C99 6.5.2.2, C++ [expr.call]).
Definition Expr.h:2987
CastExpr - Base class for type casts, including both implicit casts (ImplicitCastExpr) and explicit c...
Definition Expr.h:3720
ConstStmtVisitor - This class implements a simple visitor for Stmt subclasses.
A reference to a declared variable, function, enum, etc.
Definition Expr.h:1290
DeclStmt - Adaptor class for mixing declarations with statements and expressions.
Definition Stmt.h:1643
This represents one expression.
Definition Expr.h:113
Represents a function declaration or definition.
Definition Decl.h:2059
This represents a GCC inline-assembly statement extension.
Definition Stmt.h:3458
Describes an C or C++ initializer list.
Definition Expr.h:5352
A C++ lambda expression, which produces a function object (of unspecified type) that can be invoked l...
Definition ExprCXX.h:1972
Represents a prvalue temporary that is written into memory so that a reference can bind to it.
Definition ExprCXX.h:4973
MemberExpr - [C99 6.5.2.3] Structure and Union Members.
Definition Expr.h:3408
A (possibly-)qualified type.
Definition TypeBase.h:938
ReturnStmt - This represents a return, optionally of an expression: return; return 4;.
Definition Stmt.h:3172
StmtExpr - This is the GNU Statement Expression extension: ({int X=4; X;}).
Definition Expr.h:4639
UnaryOperator - This represents the unary-expression's (except sizeof and alignof),...
Definition Expr.h:2288
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Definition Decl.h:713
void VisitDeclRefExpr(const DeclRefExpr *DRE)
void VisitBinaryOperator(const BinaryOperator *BO)
void VisitMaterializeTemporaryExpr(const MaterializeTemporaryExpr *MTE)
FactsGenerator(FactManager &FactMgr, AnalysisDeclContext &AC)
void VisitCXXConstructExpr(const CXXConstructExpr *CCE)
void VisitCXXTypeidExpr(const CXXTypeidExpr *TE)
void VisitAbstractConditionalOperator(const AbstractConditionalOperator *CO)
Visits conditional operators (e.g., cond ?
void VisitCXXDeleteExpr(const CXXDeleteExpr *DE)
void VisitCXXFunctionalCastExpr(const CXXFunctionalCastExpr *FCE)
void VisitCXXDefaultInitExpr(const CXXDefaultInitExpr *DIE)
void VisitInitListExpr(const InitListExpr *ILE)
void VisitCXXNullPtrLiteralExpr(const CXXNullPtrLiteralExpr *N)
void VisitCXXOperatorCallExpr(const CXXOperatorCallExpr *OCE)
void VisitArraySubscriptExpr(const ArraySubscriptExpr *ASE)
void VisitUnaryOperator(const UnaryOperator *UO)
void VisitCXXThrowExpr(const CXXThrowExpr *TE)
void VisitCXXMemberCallExpr(const CXXMemberCallExpr *MCE)
void VisitCXXBindTemporaryExpr(const CXXBindTemporaryExpr *BTE)
A list of origins representing levels of indirection for pointer-like types.
Definition Origins.h:105
utils::ID< struct OriginTag > OriginID
Definition Origins.h:28
@ CPlusPlus