clang 18.0.0git
SValBuilder.h
Go to the documentation of this file.
1// SValBuilder.h - Construction of SVals from evaluating expressions -*- 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 SValBuilder, a class that defines the interface for
10// "symbolical evaluators" which construct an SVal from an expression.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_SVALBUILDER_H
15#define LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_SVALBUILDER_H
16
19#include "clang/AST/Expr.h"
20#include "clang/AST/ExprObjC.h"
21#include "clang/AST/Type.h"
22#include "clang/Basic/LLVM.h"
30#include "llvm/ADT/ImmutableList.h"
31#include <cstdint>
32#include <optional>
33
34namespace clang {
35
36class AnalyzerOptions;
37class BlockDecl;
38class CXXBoolLiteralExpr;
39class CXXMethodDecl;
40class CXXRecordDecl;
41class DeclaratorDecl;
42class FunctionDecl;
43class LocationContext;
44class StackFrameContext;
45class Stmt;
46
47namespace ento {
48
49class ConditionTruthVal;
50class ProgramStateManager;
51class StoreRef;
52
54 virtual void anchor();
55
56protected:
58
59 /// Manager of APSInt values.
61
62 /// Manages the creation of symbols.
64
65 /// Manages the creation of memory regions.
67
69
71
72 /// The scalar type to use for array indices.
74
75 /// The width of the scalar type used for array indices.
76 const unsigned ArrayIndexWidth;
77
78public:
79 SValBuilder(llvm::BumpPtrAllocator &alloc, ASTContext &context,
80 ProgramStateManager &stateMgr);
81
82 virtual ~SValBuilder() = default;
83
84 SVal evalCast(SVal V, QualType CastTy, QualType OriginalTy);
85
86 // Handles casts of type CK_IntegralCast.
88 QualType originalType);
89
92
93 /// Create a new value which represents a binary expression with two non-
94 /// location operands.
96 NonLoc lhs, NonLoc rhs, QualType resultTy) = 0;
97
98 /// Create a new value which represents a binary expression with two memory
99 /// location operands.
101 Loc lhs, Loc rhs, QualType resultTy) = 0;
102
103 /// Create a new value which represents a binary expression with a memory
104 /// location and non-location operands. For example, this would be used to
105 /// evaluate a pointer arithmetic operation.
107 Loc lhs, NonLoc rhs, QualType resultTy) = 0;
108
109 /// Evaluates a given SVal. If the SVal has only one possible (integer) value,
110 /// that value is returned. Otherwise, returns NULL.
111 virtual const llvm::APSInt *getKnownValue(ProgramStateRef state, SVal val) = 0;
112
113 /// Simplify symbolic expressions within a given SVal. Return an SVal
114 /// that represents the same value, but is hopefully easier to work with
115 /// than the original SVal.
116 virtual SVal simplifySVal(ProgramStateRef State, SVal Val) = 0;
117
118 /// Constructs a symbolic expression for two non-location values.
120 NonLoc lhs, NonLoc rhs, QualType resultTy);
121
123 SVal operand, QualType type);
124
126 SVal lhs, SVal rhs, QualType type);
127
128 /// \return Whether values in \p lhs and \p rhs are equal at \p state.
130
131 SVal evalEQ(ProgramStateRef state, SVal lhs, SVal rhs);
132
135
137 const ASTContext &getContext() const { return Context; }
138
140
142 return Context.getLangOpts().CPlusPlus ? Context.BoolTy : Context.IntTy;
143 }
144
146 return ArrayIndexTy;
147 }
148
151
153 const SymbolManager &getSymbolManager() const { return SymMgr; }
154
156 const MemRegionManager &getRegionManager() const { return MemMgr; }
157
158 const AnalyzerOptions &getAnalyzerOptions() const { return AnOpts; }
159
160 // Forwarding methods to SymbolManager.
161
163 const LocationContext *LCtx,
165 unsigned visitCount,
166 const void *symbolTag = nullptr) {
167 return SymMgr.conjureSymbol(stmt, LCtx, type, visitCount, symbolTag);
168 }
169
171 const LocationContext *LCtx,
172 unsigned visitCount,
173 const void *symbolTag = nullptr) {
174 return SymMgr.conjureSymbol(expr, LCtx, visitCount, symbolTag);
175 }
176
177 /// Construct an SVal representing '0' for the specified type.
179
180 /// Make a unique symbol for value of region.
182
183 /// Create a new symbol with a unique 'name'.
184 ///
185 /// We resort to conjured symbols when we cannot construct a derived symbol.
186 /// The advantage of symbols derived/built from other symbols is that we
187 /// preserve the relation between related(or even equivalent) expressions, so
188 /// conjured symbols should be used sparingly.
189 DefinedOrUnknownSVal conjureSymbolVal(const void *symbolTag,
190 const Expr *expr,
191 const LocationContext *LCtx,
192 unsigned count);
193 DefinedOrUnknownSVal conjureSymbolVal(const void *symbolTag,
194 const Expr *expr,
195 const LocationContext *LCtx,
197 unsigned count);
199 const LocationContext *LCtx,
201 unsigned visitCount);
202
203 /// Conjure a symbol representing heap allocated memory region.
204 ///
205 /// Note, the expression should represent a location.
207 const LocationContext *LCtx,
208 unsigned Count);
209
210 /// Conjure a symbol representing heap allocated memory region.
211 ///
212 /// Note, now, the expression *doesn't* need to represent a location.
213 /// But the type need to!
215 const LocationContext *LCtx,
216 QualType type, unsigned Count);
217
219 SymbolRef parentSymbol, const TypedValueRegion *region);
220
221 DefinedSVal getMetadataSymbolVal(const void *symbolTag,
222 const MemRegion *region,
223 const Expr *expr, QualType type,
224 const LocationContext *LCtx,
225 unsigned count);
226
228
230
232 const LocationContext *locContext,
233 unsigned blockCount);
234
235 /// Returns the value of \p E, if it can be determined in a non-path-sensitive
236 /// manner.
237 ///
238 /// If \p E is not a constant or cannot be modeled, returns \c std::nullopt.
239 std::optional<SVal> getConstantVal(const Expr *E);
240
241 NonLoc makeCompoundVal(QualType type, llvm::ImmutableList<SVal> vals) {
243 }
244
246 const TypedValueRegion *region) {
248 BasicVals.getLazyCompoundValData(store, region));
249 }
250
252 return nonloc::PointerToMember(DD);
253 }
254
256 return nonloc::PointerToMember(PTMD);
257 }
258
260 return nonloc::ConcreteInt(BasicVals.getValue(0, ArrayIndexTy));
261 }
262
263 NonLoc makeArrayIndex(uint64_t idx) {
264 return nonloc::ConcreteInt(BasicVals.getValue(idx, ArrayIndexTy));
265 }
266
268
270 return nonloc::ConcreteInt(
271 BasicVals.getValue(integer->getValue(),
273 }
274
276 return makeTruthVal(boolean->getValue(), boolean->getType());
277 }
278
280
281 nonloc::ConcreteInt makeIntVal(const llvm::APSInt& integer) {
282 return nonloc::ConcreteInt(BasicVals.getValue(integer));
283 }
284
285 loc::ConcreteInt makeIntLocVal(const llvm::APSInt &integer) {
286 return loc::ConcreteInt(BasicVals.getValue(integer));
287 }
288
289 NonLoc makeIntVal(const llvm::APInt& integer, bool isUnsigned) {
290 return nonloc::ConcreteInt(BasicVals.getValue(integer, isUnsigned));
291 }
292
293 DefinedSVal makeIntVal(uint64_t integer, QualType type) {
294 if (Loc::isLocType(type))
295 return loc::ConcreteInt(BasicVals.getValue(integer, type));
296
297 return nonloc::ConcreteInt(BasicVals.getValue(integer, type));
298 }
299
300 NonLoc makeIntVal(uint64_t integer, bool isUnsigned) {
301 return nonloc::ConcreteInt(BasicVals.getIntValue(integer, isUnsigned));
302 }
303
304 NonLoc makeIntValWithWidth(QualType ptrType, uint64_t integer) {
305 return nonloc::ConcreteInt(BasicVals.getValue(integer, ptrType));
306 }
307
308 NonLoc makeLocAsInteger(Loc loc, unsigned bits) {
310 }
311
313 const llvm::APSInt &rhs, QualType type);
314
315 nonloc::SymbolVal makeNonLoc(const llvm::APSInt &rhs,
316 BinaryOperator::Opcode op, const SymExpr *lhs,
317 QualType type);
318
320 const SymExpr *rhs, QualType type);
321
323 QualType type);
324
325 /// Create a NonLoc value for cast.
326 nonloc::SymbolVal makeNonLoc(const SymExpr *operand, QualType fromTy,
327 QualType toTy);
328
331 }
332
335 }
336
337 /// Create NULL pointer, with proper pointer bit-width for given address
338 /// space.
339 /// \param type pointer type.
341 // We cannot use the `isAnyPointerType()`.
342 assert((type->isPointerType() || type->isObjCObjectPointerType() ||
343 type->isBlockPointerType() || type->isNullPtrType() ||
344 type->isReferenceType()) &&
345 "makeNullWithType must use pointer type");
346
347 // The `sizeof(T&)` is `sizeof(T)`, thus we replace the reference with a
348 // pointer. Here we assume that references are actually implemented by
349 // pointers under-the-hood.
350 type = type->isReferenceType()
351 ? Context.getPointerType(type->getPointeeType())
352 : type;
354 }
355
358 }
359
361 return loc::MemRegionVal(region);
362 }
363
365 return loc::GotoLabel(expr->getLabel());
366 }
367
368 loc::ConcreteInt makeLoc(const llvm::APSInt &integer) {
369 return loc::ConcreteInt(BasicVals.getValue(integer));
370 }
371
372 /// Return MemRegionVal on success cast, otherwise return std::nullopt.
373 std::optional<loc::MemRegionVal>
375
376 /// Make an SVal that represents the given symbol. This follows the convention
377 /// of representing Loc-type symbols (symbolic pointers and references)
378 /// as Loc values wrapping the symbol rather than as plain symbol values.
380 if (Loc::isLocType(Sym->getType()))
381 return makeLoc(Sym);
382 return nonloc::SymbolVal(Sym);
383 }
384
385 /// Return a memory region for the 'this' object reference.
387 const StackFrameContext *SFC);
388
389 /// Return a memory region for the 'this' object reference.
391 const StackFrameContext *SFC);
392};
393
394SValBuilder* createSimpleSValBuilder(llvm::BumpPtrAllocator &alloc,
395 ASTContext &context,
396 ProgramStateManager &stateMgr);
397
398} // namespace ento
399
400} // namespace clang
401
402#endif // LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_SVALBUILDER_H
Defines the clang::ASTContext interface.
#define V(N, I)
Definition: ASTContext.h:3233
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the clang::LangOptions interface.
C Language Family Type Representation.
__device__ __2f16 b
llvm::APInt getValue() const
Definition: Expr.h:1501
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition: ASTContext.h:182
QualType getPointerType(QualType T) const
Return the uniqued reference to the type for a pointer to the specified type.
const LangOptions & getLangOpts() const
Definition: ASTContext.h:761
CanQualType BoolTy
Definition: ASTContext.h:1078
CanQualType IntTy
Definition: ASTContext.h:1086
AddrLabelExpr - The GNU address of label extension, representing &&label.
Definition: Expr.h:4345
Stores options for the analyzer from the command line.
Represents a block literal declaration, which is like an unnamed FunctionDecl.
Definition: Decl.h:4379
A boolean literal, per ([C++ lex.bool] Boolean literals).
Definition: ExprCXX.h:720
Represents a static or instance method of a struct/union/class.
Definition: DeclCXX.h:2035
Represents a C++ struct/union/class.
Definition: DeclCXX.h:254
Represents a ValueDecl that came out of a declarator.
Definition: Decl.h:767
This represents one expression.
Definition: Expr.h:110
QualType getType() const
Definition: Expr.h:142
Represents a function declaration or definition.
Definition: Decl.h:1919
It wraps the AnalysisDeclContext to represent both the call stack with the help of StackFrameContext ...
This represents a decl that may have a name.
Definition: Decl.h:247
ObjCBoolLiteralExpr - Objective-C Boolean Literal.
Definition: ExprObjC.h:87
A (possibly-)qualified type.
Definition: Type.h:736
It represents a stack frame of the call stack (based on CallEvent).
Stmt - This represents one statement.
Definition: Stmt.h:72
bool isUnsignedIntegerOrEnumerationType() const
Determines whether this is an integer type that is unsigned or an enumeration types whose underlying ...
Definition: Type.cpp:2158
const CompoundValData * getCompoundValData(QualType T, llvm::ImmutableList< SVal > Vals)
const llvm::APSInt & getTruthValue(bool b, QualType T)
const std::pair< SVal, uintptr_t > & getPersistentSValWithData(const SVal &V, uintptr_t Data)
const llvm::APSInt & getIntValue(uint64_t X, bool isUnsigned)
const LazyCompoundValData * getLazyCompoundValData(const StoreRef &store, const TypedValueRegion *region)
const llvm::APSInt & getZeroWithTypeSize(QualType T)
static bool isLocType(QualType T)
Definition: SVals.h:285
const SymbolicRegion * getSymbolicRegion(SymbolRef Sym, const MemSpaceRegion *MemSpace=nullptr)
Retrieve or create a "symbolic" memory region.
Definition: MemRegion.cpp:1184
MemRegion - The root abstract class for all memory regions.
Definition: MemRegion.h:96
const SymbolConjured * conjureSymbol(const Stmt *stmt, const LocationContext *LCtx, QualType type, unsigned visitCount, const void *symbolTag=nullptr)
Definition: SValBuilder.h:162
DefinedOrUnknownSVal makeZeroVal(QualType type)
Construct an SVal representing '0' for the specified type.
Definition: SValBuilder.cpp:62
DefinedSVal getMemberPointer(const NamedDecl *ND)
NonLoc makePointerToMember(const DeclaratorDecl *DD)
Definition: SValBuilder.h:251
SVal evalMinus(NonLoc val)
SVal evalComplement(NonLoc val)
virtual const llvm::APSInt * getKnownValue(ProgramStateRef state, SVal val)=0
Evaluates a given SVal.
BasicValueFactory & getBasicValueFactory()
Definition: SValBuilder.h:149
loc::ConcreteInt makeLoc(const llvm::APSInt &integer)
Definition: SValBuilder.h:368
NonLoc makeCompoundVal(QualType type, llvm::ImmutableList< SVal > vals)
Definition: SValBuilder.h:241
SymbolManager SymMgr
Manages the creation of symbols.
Definition: SValBuilder.h:63
virtual SVal evalBinOpLN(ProgramStateRef state, BinaryOperator::Opcode op, Loc lhs, NonLoc rhs, QualType resultTy)=0
Create a new value which represents a binary expression with a memory location and non-location opera...
DefinedSVal getMetadataSymbolVal(const void *symbolTag, const MemRegion *region, const Expr *expr, QualType type, const LocationContext *LCtx, unsigned count)
MemRegionManager & getRegionManager()
Definition: SValBuilder.h:155
ProgramStateManager & getStateManager()
Definition: SValBuilder.h:139
SVal makeSymExprValNN(BinaryOperator::Opcode op, NonLoc lhs, NonLoc rhs, QualType resultTy)
Constructs a symbolic expression for two non-location values.
virtual SVal evalBinOpLL(ProgramStateRef state, BinaryOperator::Opcode op, Loc lhs, Loc rhs, QualType resultTy)=0
Create a new value which represents a binary expression with two memory location operands.
nonloc::SymbolVal makeNonLoc(const SymExpr *lhs, BinaryOperator::Opcode op, const llvm::APSInt &rhs, QualType type)
Definition: SValBuilder.cpp:77
const unsigned ArrayIndexWidth
The width of the scalar type used for array indices.
Definition: SValBuilder.h:76
DefinedSVal getBlockPointer(const BlockDecl *block, CanQualType locTy, const LocationContext *locContext, unsigned blockCount)
DefinedSVal getFunctionPointer(const FunctionDecl *func)
const QualType ArrayIndexTy
The scalar type to use for array indices.
Definition: SValBuilder.h:73
NonLoc makePointerToMember(const PointerToMemberData *PTMD)
Definition: SValBuilder.h:255
NonLoc makeIntValWithWidth(QualType ptrType, uint64_t integer)
Definition: SValBuilder.h:304
loc::GotoLabel makeLoc(const AddrLabelExpr *expr)
Definition: SValBuilder.h:364
NonLoc makeArrayIndex(uint64_t idx)
Definition: SValBuilder.h:263
ASTContext & getContext()
Definition: SValBuilder.h:136
nonloc::ConcreteInt makeIntVal(const IntegerLiteral *integer)
Definition: SValBuilder.h:269
SVal convertToArrayIndex(SVal val)
const SymbolConjured * conjureSymbol(const Expr *expr, const LocationContext *LCtx, unsigned visitCount, const void *symbolTag=nullptr)
Definition: SValBuilder.h:170
QualType getArrayIndexType() const
Definition: SValBuilder.h:145
loc::MemRegionVal makeLoc(SymbolRef sym)
Definition: SValBuilder.h:356
const BasicValueFactory & getBasicValueFactory() const
Definition: SValBuilder.h:150
virtual SVal evalBinOpNN(ProgramStateRef state, BinaryOperator::Opcode op, NonLoc lhs, NonLoc rhs, QualType resultTy)=0
Create a new value which represents a binary expression with two non- location operands.
DefinedSVal makeSymbolVal(SymbolRef Sym)
Make an SVal that represents the given symbol.
Definition: SValBuilder.h:379
SVal evalCast(SVal V, QualType CastTy, QualType OriginalTy)
Cast a given SVal to another SVal using given QualType's.
NonLoc makeIntVal(uint64_t integer, bool isUnsigned)
Definition: SValBuilder.h:300
const AnalyzerOptions & getAnalyzerOptions() const
Definition: SValBuilder.h:158
nonloc::ConcreteInt makeTruthVal(bool b)
Definition: SValBuilder.h:333
DefinedOrUnknownSVal conjureSymbolVal(const void *symbolTag, const Expr *expr, const LocationContext *LCtx, unsigned count)
Create a new symbol with a unique 'name'.
DefinedSVal makeIntVal(uint64_t integer, QualType type)
Definition: SValBuilder.h:293
BasicValueFactory BasicVals
Manager of APSInt values.
Definition: SValBuilder.h:60
ConditionTruthVal areEqual(ProgramStateRef state, SVal lhs, SVal rhs)
virtual SVal simplifySVal(ProgramStateRef State, SVal Val)=0
Simplify symbolic expressions within a given SVal.
QualType getConditionType() const
Definition: SValBuilder.h:141
MemRegionManager MemMgr
Manages the creation of memory regions.
Definition: SValBuilder.h:66
SVal evalEQ(ProgramStateRef state, SVal lhs, SVal rhs)
SVal evalUnaryOp(ProgramStateRef state, UnaryOperator::Opcode opc, SVal operand, QualType type)
DefinedOrUnknownSVal getDerivedRegionValueSymbolVal(SymbolRef parentSymbol, const TypedValueRegion *region)
loc::MemRegionVal getCXXThis(const CXXMethodDecl *D, const StackFrameContext *SFC)
Return a memory region for the 'this' object reference.
nonloc::ConcreteInt makeTruthVal(bool b, QualType type)
Definition: SValBuilder.h:329
const MemRegionManager & getRegionManager() const
Definition: SValBuilder.h:156
virtual ~SValBuilder()=default
loc::ConcreteInt makeNullWithType(QualType type)
Create NULL pointer, with proper pointer bit-width for given address space.
Definition: SValBuilder.h:340
NonLoc makeIntVal(const llvm::APInt &integer, bool isUnsigned)
Definition: SValBuilder.h:289
ProgramStateManager & StateMgr
Definition: SValBuilder.h:68
loc::MemRegionVal makeLoc(const MemRegion *region)
Definition: SValBuilder.h:360
std::optional< SVal > getConstantVal(const Expr *E)
Returns the value of E, if it can be determined in a non-path-sensitive manner.
NonLoc makeLocAsInteger(Loc loc, unsigned bits)
Definition: SValBuilder.h:308
const ASTContext & getContext() const
Definition: SValBuilder.h:137
SVal evalIntegralCast(ProgramStateRef state, SVal val, QualType castTy, QualType originalType)
SymbolManager & getSymbolManager()
Definition: SValBuilder.h:152
DefinedOrUnknownSVal getRegionValueSymbolVal(const TypedValueRegion *region)
Make a unique symbol for value of region.
SVal evalBinOp(ProgramStateRef state, BinaryOperator::Opcode op, SVal lhs, SVal rhs, QualType type)
loc::ConcreteInt makeIntLocVal(const llvm::APSInt &integer)
Definition: SValBuilder.h:285
NonLoc makeLazyCompoundVal(const StoreRef &store, const TypedValueRegion *region)
Definition: SValBuilder.h:245
const AnalyzerOptions & AnOpts
Definition: SValBuilder.h:70
const SymbolManager & getSymbolManager() const
Definition: SValBuilder.h:153
std::optional< loc::MemRegionVal > getCastedMemRegionVal(const MemRegion *region, QualType type)
Return MemRegionVal on success cast, otherwise return std::nullopt.
nonloc::ConcreteInt makeBoolVal(const ObjCBoolLiteralExpr *boolean)
Definition: SValBuilder.h:275
nonloc::ConcreteInt makeIntVal(const llvm::APSInt &integer)
Definition: SValBuilder.h:281
DefinedOrUnknownSVal getConjuredHeapSymbolVal(const Expr *E, const LocationContext *LCtx, unsigned Count)
Conjure a symbol representing heap allocated memory region.
SVal - This represents a symbolic expression, which can be either an L-value or an R-value.
Definition: SVals.h:73
Symbolic value.
Definition: SymExpr.h:30
virtual QualType getType() const =0
A symbol representing the result of an expression in the case when we do not know anything about what...
Definition: SymbolManager.h:79
const SymbolConjured * conjureSymbol(const Stmt *E, const LocationContext *LCtx, QualType T, unsigned VisitCount, const void *SymbolTag=nullptr)
TypedValueRegion - An abstract class representing regions having a typed value.
Definition: MemRegion.h:530
Value representing integer constant.
Definition: SVals.h:325
Value representing pointer-to-member.
Definition: SVals.h:437
Represents symbolic expression that isn't a location.
Definition: SVals.h:300
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const internal::VariadicAllOfMatcher< Stmt > stmt
Matches statements.
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > expr
Matches expressions.
SValBuilder * createSimpleSValBuilder(llvm::BumpPtrAllocator &alloc, ASTContext &context, ProgramStateManager &stateMgr)
BinaryOperatorKind
UnaryOperatorKind