15#ifndef LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_MEMREGION_H
16#define LLVM_CLANG_STATICANALYZER_CORE_PATHSENSITIVE_MEMREGION_H
32#include "llvm/ADT/DenseMap.h"
33#include "llvm/ADT/FoldingSet.h"
34#include "llvm/ADT/PointerIntPair.h"
35#include "llvm/ADT/iterator_range.h"
36#include "llvm/Support/Allocator.h"
37#include "llvm/Support/Casting.h"
38#include "llvm/Support/ErrorHandling.h"
48class AnalysisDeclContext;
52class StackFrameContext;
58class MemRegionManager;
75 static const int64_t
Symbolic = std::numeric_limits<int64_t>::max();
101#define REGION(Id, Parent) Id ## Kind,
102#define REGION_RANGE(Id, First, Last) BEGIN_##Id = First, END_##Id = Last,
103#include "clang/StaticAnalyzer/Core/PathSensitive/Regions.def"
110 mutable std::optional<RegionOffset> cachedOffset;
119 virtual void Profile(llvm::FoldingSetNodeID&
ID)
const = 0;
127 [[nodiscard]] LLVM_ATTRIBUTE_RETURNS_NONNULL
const MemSpaceRegion *
131 template <
class MemSpace>
139 [[nodiscard]] LLVM_ATTRIBUTE_RETURNS_NONNULL
const MemSpaceRegion *
142 template <
class MemSpace>
147 template <
typename... MemorySpaces>
149 static_assert(
sizeof...(MemorySpaces));
162 LLVM_ATTRIBUTE_RETURNS_NONNULL
169 LLVM_ATTRIBUTE_RETURNS_NONNULL
207 template<
typename RegionTy>
const RegionTy*
getAs()
const;
208 template <
typename RegionTy>
209 LLVM_ATTRIBUTE_RETURNS_NONNULL
const RegionTy *
castAs()
const;
249 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
253 return k >= BEGIN_MEMSPACES && k <= END_MEMSPACES;
269 return R->
getKind() == CodeSpaceRegionKind;
274 virtual void anchor();
284 return k >= BEGIN_GLOBAL_MEMSPACES && k <= END_GLOBAL_MEMSPACES;
304 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
308 LLVM_ATTRIBUTE_RETURNS_NONNULL
312 return R->
getKind() == StaticGlobalSpaceRegionKind;
323 void anchor()
override;
334 return k >= BEGIN_NON_STATIC_GLOBAL_MEMSPACES &&
335 k <= END_NON_STATIC_GLOBAL_MEMSPACES;
351 return R->
getKind() == GlobalSystemSpaceRegionKind;
370 return R->
getKind() == GlobalImmutableSpaceRegionKind;
387 return R->
getKind() == GlobalInternalSpaceRegionKind;
401 return R->
getKind() == HeapSpaceRegionKind;
415 return R->
getKind() == UnknownSpaceRegionKind;
420 virtual void anchor();
432 LLVM_ATTRIBUTE_RETURNS_NONNULL
435 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
439 return k >= BEGIN_STACK_MEMSPACES && k <= END_STACK_MEMSPACES;
453 return R->
getKind() == StackLocalsSpaceRegionKind;
468 return R->
getKind() == StackArgumentsSpaceRegionKind;
475 virtual void anchor();
486 LLVM_ATTRIBUTE_RETURNS_NONNULL
496 return R->
getKind() > END_MEMSPACES;
520 static void ProfileRegion(llvm::FoldingSetNodeID&
ID,
const Expr *Ex,
524 LLVM_ATTRIBUTE_RETURNS_NONNULL
529 void Profile(llvm::FoldingSetNodeID&
ID)
const override;
534 return R->
getKind() == AllocaRegionKind;
540 void anchor()
override;
558 return k >= BEGIN_TYPED_REGIONS && k <= END_TYPED_REGIONS;
564 void anchor()
override;
585 return T.getTypePtrOrNull() ?
T.getDesugaredType(Context) :
T;
590 return k >= BEGIN_TYPED_VALUE_REGIONS && k <= END_TYPED_VALUE_REGIONS;
595 void anchor()
override;
607 return k >= BEGIN_CODE_TEXT_REGIONS && k <= END_CODE_TEXT_REGIONS;
619 assert(isa<ObjCMethodDecl>(fd) || isa<FunctionDecl>(fd));
622 static void ProfileRegion(llvm::FoldingSetNodeID&
ID,
const NamedDecl *FD,
628 if (
const auto *
D = dyn_cast<FunctionDecl>(FD)) {
629 return Ctx.getPointerType(
D->getType());
632 assert(isa<ObjCMethodDecl>(FD));
633 assert(
false &&
"Getting the type of ObjCMethod is not supported yet");
646 void Profile(llvm::FoldingSetNodeID&
ID)
const override;
649 return R->
getKind() == FunctionCodeRegionKind;
668 :
CodeTextRegion(sreg, BlockCodeRegionKind), BD(bd), AC(ac), locTy(lTy) {
674 static void ProfileRegion(llvm::FoldingSetNodeID&
ID,
const BlockDecl *BD,
683 LLVM_ATTRIBUTE_RETURNS_NONNULL
688 LLVM_ATTRIBUTE_RETURNS_NONNULL
693 void Profile(llvm::FoldingSetNodeID&
ID)
const override;
696 return R->
getKind() == BlockCodeRegionKind;
712 void *ReferencedVars =
nullptr;
713 void *OriginalVars =
nullptr;
717 :
TypedRegion(sreg, BlockDataRegionKind), BC(bc), LC(lc),
722 assert(isa<GlobalImmutableSpaceRegion>(sreg) ||
723 isa<StackLocalsSpaceRegion>(sreg) ||
724 isa<UnknownSpaceRegion>(sreg));
727 static void ProfileRegion(llvm::FoldingSetNodeID&,
const BlockCodeRegion *,
732 LLVM_ATTRIBUTE_RETURNS_NONNULL
735 LLVM_ATTRIBUTE_RETURNS_NONNULL
747 : R(r), OriginalR(originalR) {}
749 LLVM_ATTRIBUTE_RETURNS_NONNULL
751 return cast<VarRegion>(*R);
754 LLVM_ATTRIBUTE_RETURNS_NONNULL
756 return cast<VarRegion>(*OriginalR);
760 assert((R ==
nullptr) == (I.R ==
nullptr));
765 assert((R ==
nullptr) == (I.R ==
nullptr));
787 llvm::iterator_range<referenced_vars_iterator>
referenced_vars()
const;
791 void Profile(llvm::FoldingSetNodeID&
ID)
const override;
794 return R->
getKind() == BlockDataRegionKind;
798 void LazyInitializeReferencedVars();
799 std::pair<const VarRegion *, const VarRegion *>
800 getCaptureRegions(
const VarDecl *VD);
814 :
SubRegion(sreg, SymbolicRegionKind), sym(
s) {
817 assert(isa_and_nonnull<SymbolData>(
s));
818 assert(
s->getType()->isAnyPointerType() ||
819 s->getType()->isReferenceType() ||
820 s->getType()->isBlockPointerType());
821 assert(isa<UnknownSpaceRegion>(sreg) || isa<HeapSpaceRegion>(sreg) ||
822 isa<GlobalSystemSpaceRegion>(sreg));
843 void Profile(llvm::FoldingSetNodeID&
ID)
const override;
852 return R->
getKind() == SymbolicRegionKind;
867 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
872 LLVM_ATTRIBUTE_RETURNS_NONNULL
879 void Profile(llvm::FoldingSetNodeID&
ID)
const override {
886 return R->
getKind() == StringRegionKind;
902 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
907 LLVM_ATTRIBUTE_RETURNS_NONNULL
914 void Profile(llvm::FoldingSetNodeID&
ID)
const override {
921 return R->
getKind() == ObjCStringRegionKind;
937 assert(isa<GlobalInternalSpaceRegion>(sReg) ||
938 isa<StackLocalsSpaceRegion>(sReg));
941 static void ProfileRegion(llvm::FoldingSetNodeID&
ID,
950 void Profile(llvm::FoldingSetNodeID&
ID)
const override;
954 LLVM_ATTRIBUTE_RETURNS_NONNULL
958 return R->
getKind() == CompoundLiteralRegionKind;
974 return k >= BEGIN_DECL_REGIONS && k <= END_DECL_REGIONS;
988 assert(isa<GlobalsSpaceRegion>(sReg) || isa<StackSpaceRegion>(sReg) ||
989 isa<BlockDataRegion>(sReg) || isa<UnknownSpaceRegion>(sReg));
1006 return k >= BEGIN_VAR_REGIONS && k <= END_VAR_REGIONS;
1017 :
VarRegion(sReg, NonParamVarRegionKind), VD(vd) {
1022 assert(isa<GlobalsSpaceRegion>(sReg) || isa<StackSpaceRegion>(sReg) ||
1023 isa<BlockDataRegion>(sReg) || isa<UnknownSpaceRegion>(sReg));
1027 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
const VarDecl *VD,
1031 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
1033 LLVM_ATTRIBUTE_RETURNS_NONNULL
1048 return R->
getKind() == NonParamVarRegionKind;
1065 const Expr *OriginExpr;
1069 :
VarRegion(SReg, ParamVarRegionKind), OriginExpr(OE), Index(Idx) {
1070 assert(!cast<StackSpaceRegion>(SReg)->
getStackFrame()->inTopFrame());
1074 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
const Expr *OE,
1078 LLVM_ATTRIBUTE_RETURNS_NONNULL
1082 void Profile(llvm::FoldingSetNodeID&
ID)
const override;
1095 return R->
getKind() == ParamVarRegionKind;
1108 ThisPointerTy(thisPointerTy) {
1110 "Invalid region type!");
1113 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
1118 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
1127 return R->
getKind() == CXXThisRegionKind;
1140 :
DeclRegion(sReg, FieldRegionKind), FD(fd) {
1144 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
const FieldDecl *FD,
1146 ID.AddInteger(
static_cast<unsigned>(FieldRegionKind));
1152 LLVM_ATTRIBUTE_RETURNS_NONNULL
1155 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
1170 return R->
getKind() == FieldRegionKind;
1181 static void ProfileRegion(llvm::FoldingSetNodeID&
ID,
const ObjCIvarDecl *ivd,
1185 LLVM_ATTRIBUTE_RETURNS_NONNULL
1188 void Profile(llvm::FoldingSetNodeID&
ID)
const override;
1198 return R->
getKind() == ObjCIvarRegionKind;
1213 : Region(reg), Offset(offset) {}
1236 assert((!isa<nonloc::ConcreteInt>(Idx) ||
1238 "The index must be signed");
1240 "Invalid region type!");
1243 static void ProfileRegion(llvm::FoldingSetNodeID&
ID,
QualType elementType,
1258 void Profile(llvm::FoldingSetNodeID&
ID)
const override;
1261 return R->
getKind() == ElementRegionKind;
1274 assert(isa<StackLocalsSpaceRegion>(sReg));
1277 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
1281 LLVM_ATTRIBUTE_RETURNS_NONNULL
1284 LLVM_ATTRIBUTE_RETURNS_NONNULL
1291 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
1294 return R->
getKind() == CXXTempObjectRegionKind;
1312 assert((isa<StackLocalsSpaceRegion, GlobalInternalSpaceRegion>(sReg)));
1315 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
Expr const *
E,
1319 LLVM_ATTRIBUTE_RETURNS_NONNULL
1321 LLVM_ATTRIBUTE_RETURNS_NONNULL
1330 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
1333 return R->
getKind() == CXXLifetimeExtendedObjectRegionKind;
1342 llvm::PointerIntPair<const CXXRecordDecl *, 1, bool>
Data;
1350 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
const CXXRecordDecl *RD,
1354 LLVM_ATTRIBUTE_RETURNS_NONNULL
1362 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
1369 return region->
getKind() == CXXBaseObjectRegionKind;
1390 "Should have unwrapped a base region instead!");
1393 static void ProfileRegion(llvm::FoldingSetNodeID &
ID,
const CXXRecordDecl *RD,
1397 LLVM_ATTRIBUTE_RETURNS_NONNULL
1404 void Profile(llvm::FoldingSetNodeID &
ID)
const override;
1411 return region->
getKind() == CXXDerivedObjectRegionKind;
1415template<
typename RegionTy>
1417 if (
const auto *RT = dyn_cast<RegionTy>(
this))
1423template <
typename RegionTy>
1425 return cast<RegionTy>(
this);
1434 llvm::BumpPtrAllocator& A;
1436 llvm::FoldingSet<MemRegion> Regions;
1442 llvm::DenseMap<const StackFrameContext *, StackLocalsSpaceRegion *>
1443 StackLocalsSpaceRegions;
1444 llvm::DenseMap<const StackFrameContext *, StackArgumentsSpaceRegion *>
1445 StackArgumentsSpaceRegions;
1446 llvm::DenseMap<const CodeTextRegion *, StaticGlobalSpaceRegion *>
1447 StaticsGlobalSpaceRegions;
1618 unsigned blockCount);
1621 template <
typename RegionTy,
typename SuperTy,
1623 RegionTy* getSubRegion(
const Arg1Ty arg1,
1624 const SuperTy* superRegion);
1626 template <
typename RegionTy,
typename SuperTy,
1627 typename Arg1Ty,
typename Arg2Ty>
1628 RegionTy* getSubRegion(
const Arg1Ty arg1,
const Arg2Ty arg2,
1629 const SuperTy* superRegion);
1631 template <
typename RegionTy,
typename SuperTy,
1632 typename Arg1Ty,
typename Arg2Ty,
typename Arg3Ty>
1633 RegionTy* getSubRegion(
const Arg1Ty arg1,
const Arg2Ty arg2,
1635 const SuperTy* superRegion);
1637 template <
typename REG>
1638 const REG* LazyAllocate(REG*& region);
1640 template <
typename REG,
typename ARG>
1641 const REG* LazyAllocate(REG*& region, ARG a);
1658 using StorageTypeForKinds =
unsigned char;
1660 llvm::DenseMap<const MemRegion *, StorageTypeForKinds> MRTraitsMap;
1661 llvm::DenseMap<SymbolRef, StorageTypeForKinds> SymTraitsMap;
1663 using const_region_iterator =
1664 llvm::DenseMap<const MemRegion *, StorageTypeForKinds>::const_iterator;
1665 using const_symbol_iterator =
1666 llvm::DenseMap<SymbolRef, StorageTypeForKinds>::const_iterator;
Defines the clang::ASTContext interface.
This file defines AnalysisDeclContext, a class that manages the analysis context data for context sen...
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the clang::SourceLocation class and associated facilities.
C Language Family Type Representation.
__device__ __2f16 float __ockl_bool s
__device__ __2f16 float c
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
QualType getPointerType(QualType T) const
Return the uniqued reference to the type for a pointer to the specified type.
QualType getObjCObjectPointerType(QualType OIT) const
Return a ObjCObjectPointerType type for the given ObjCObjectType.
AnalysisDeclContext contains the context data for the function, method or block under analysis.
Represents a block literal declaration, which is like an unnamed FunctionDecl.
Represents a C++ struct/union/class.
const T * getTypePtr() const
Retrieve the underlying type pointer, which refers to a canonical type.
CharUnits - This is an opaque type for sizes expressed in character units.
static CharUnits Zero()
Zero - Construct a CharUnits quantity of zero.
CompoundLiteralExpr - [C99 6.5.2.5].
This represents one expression.
Represents a member of a struct/union/class.
It wraps the AnalysisDeclContext to represent both the call stack with the help of StackFrameContext ...
This represents a decl that may have a name.
ObjCIvarDecl - Represents an ObjC instance variable.
Represents a class type in Objective C.
ObjCStringLiteral, used for Objective-C string literals i.e.
Represents a parameter to a function.
PointerType - C99 6.7.5.1 - Pointer Declarators.
QualType getPointeeType() const
A (possibly-)qualified type.
QualType getDesugaredType(const ASTContext &Context) const
Return the specified type with any "sugar" removed from the type.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
A trivial tuple used to represent a source range.
It represents a stack frame of the call stack (based on CallEvent).
StringLiteral - This represents a string literal expression, e.g.
bool isBlockPointerType() const
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
const T * getAs() const
Member-template getAs<specific type>'.
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Represents a variable declaration or definition.
AllocaRegion - A region that represents an untyped blob of bytes created by a call to 'alloca'.
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
void Profile(llvm::FoldingSetNodeID &ID) const override
LLVM_ATTRIBUTE_RETURNS_NONNULL const Expr * getExpr() const
bool isBoundable() const override
BlockCodeRegion - A region that represents code texts of blocks (closures).
QualType getLocationType() const override
LLVM_ATTRIBUTE_RETURNS_NONNULL AnalysisDeclContext * getAnalysisDeclContext() const
void dumpToStream(raw_ostream &os) const override
LLVM_ATTRIBUTE_RETURNS_NONNULL const BlockDecl * getDecl() const
static bool classof(const MemRegion *R)
void Profile(llvm::FoldingSetNodeID &ID) const override
bool operator==(const referenced_vars_iterator &I) const
const referenced_vars_iterator & operator*() const
bool operator!=(const referenced_vars_iterator &I) const
LLVM_ATTRIBUTE_RETURNS_NONNULL const VarRegion * getCapturedRegion() const
LLVM_ATTRIBUTE_RETURNS_NONNULL const VarRegion * getOriginalRegion() const
referenced_vars_iterator & operator++()
referenced_vars_iterator(const MemRegion *const *r, const MemRegion *const *originalR)
BlockDataRegion - A region that represents a block instance.
const VarRegion * getOriginalRegion(const VarRegion *VR) const
Return the original region for a captured region, if one exists.
QualType getLocationType() const override
LLVM_ATTRIBUTE_RETURNS_NONNULL const BlockDecl * getDecl() const
static bool classof(const MemRegion *R)
referenced_vars_iterator referenced_vars_begin() const
LLVM_ATTRIBUTE_RETURNS_NONNULL const BlockCodeRegion * getCodeRegion() const
void Profile(llvm::FoldingSetNodeID &ID) const override
referenced_vars_iterator referenced_vars_end() const
void dumpToStream(raw_ostream &os) const override
llvm::iterator_range< referenced_vars_iterator > referenced_vars() const
void printPrettyAsExpr(raw_ostream &os) const override
Print the region as expression.
LLVM_ATTRIBUTE_RETURNS_NONNULL const CXXRecordDecl * getDecl() const
bool canPrintPrettyAsExpr() const override
Returns true if this region's textual representation can be used as part of a larger expression.
void Profile(llvm::FoldingSetNodeID &ID) const override
static bool classof(const MemRegion *region)
void dumpToStream(raw_ostream &os) const override
QualType getValueType() const override
void printPrettyAsExpr(raw_ostream &os) const override
Print the region as expression.
void Profile(llvm::FoldingSetNodeID &ID) const override
QualType getValueType() const override
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *region)
bool canPrintPrettyAsExpr() const override
Returns true if this region's textual representation can be used as part of a larger expression.
LLVM_ATTRIBUTE_RETURNS_NONNULL const CXXRecordDecl * getDecl() const
static bool classof(const MemRegion *R)
LLVM_ATTRIBUTE_RETURNS_NONNULL const Expr * getExpr() const
void Profile(llvm::FoldingSetNodeID &ID) const override
LLVM_ATTRIBUTE_RETURNS_NONNULL const ValueDecl * getExtendingDecl() const
void dumpToStream(raw_ostream &os) const override
const StackFrameContext * getStackFrame() const
It might return null.
QualType getValueType() const override
QualType getValueType() const override
void Profile(llvm::FoldingSetNodeID &ID) const override
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
LLVM_ATTRIBUTE_RETURNS_NONNULL const Expr * getExpr() const
LLVM_ATTRIBUTE_RETURNS_NONNULL const StackFrameContext * getStackFrame() const
CXXThisRegion - Represents the region for the implicit 'this' parameter in a call to a C++ method.
QualType getValueType() const override
static bool classof(const MemRegion *R)
void Profile(llvm::FoldingSetNodeID &ID) const override
void dumpToStream(raw_ostream &os) const override
CodeSpaceRegion - The memory space that holds the executable code of functions and blocks.
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
CodeTextRegion(const MemSpaceRegion *sreg, Kind k)
static bool classof(const MemRegion *R)
bool isBoundable() const override
CompoundLiteralRegion - A memory region representing a compound literal.
LLVM_ATTRIBUTE_RETURNS_NONNULL const CompoundLiteralExpr * getLiteralExpr() const
QualType getValueType() const override
bool isBoundable() const override
void Profile(llvm::FoldingSetNodeID &ID) const override
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
DeclRegion(const MemRegion *sReg, Kind k)
virtual const ValueDecl * getDecl() const =0
static bool classof(const MemRegion *R)
ElementRegion is used to represent both array elements and casts.
static bool classof(const MemRegion *R)
QualType getValueType() const override
QualType getElementType() const
void Profile(llvm::FoldingSetNodeID &ID) const override
RegionRawOffset getAsArrayOffset() const
Compute the offset within the array. The array might also be a subobject.
void dumpToStream(raw_ostream &os) const override
void printPrettyAsExpr(raw_ostream &os) const override
Print the region as expression.
static bool classof(const MemRegion *R)
bool canPrintPretty() const override
Returns true if this region can be printed in a user-friendly way.
bool canPrintPrettyAsExpr() const override
Returns true if this region's textual representation can be used as part of a larger expression.
void dumpToStream(raw_ostream &os) const override
QualType getValueType() const override
void printPretty(raw_ostream &os) const override
Print the region for use in diagnostics.
void Profile(llvm::FoldingSetNodeID &ID) const override
LLVM_ATTRIBUTE_RETURNS_NONNULL const FieldDecl * getDecl() const override
FunctionCodeRegion - A region that represents code texts of function.
static bool classof(const MemRegion *R)
QualType getLocationType() const override
const NamedDecl * getDecl() const
void dumpToStream(raw_ostream &os) const override
void Profile(llvm::FoldingSetNodeID &ID) const override
The region containing globals which are considered not to be modified or point to data which could be...
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
The region containing globals which can be modified by calls to "internally" defined functions - (for...
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
The region containing globals which are defined in system/external headers and are considered modifia...
static bool classof(const MemRegion *R)
void dumpToStream(raw_ostream &os) const override
GlobalsSpaceRegion(MemRegionManager &mgr, Kind k)
static bool classof(const MemRegion *R)
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
const HeapSpaceRegion * getHeapRegion()
getHeapRegion - Retrieve the memory region associated with the generic "heap".
const StackArgumentsSpaceRegion * getStackArgumentsRegion(const StackFrameContext *STC)
getStackArgumentsRegion - Retrieve the memory region associated with function/method arguments of the...
const CXXThisRegion * getCXXThisRegion(QualType thisPointerTy, const LocationContext *LC)
getCXXThisRegion - Retrieve the [artificial] region associated with the parameter 'this'.
llvm::BumpPtrAllocator & getAllocator()
const BlockCodeRegion * getBlockCodeRegion(const BlockDecl *BD, CanQualType locTy, AnalysisDeclContext *AC)
const ASTContext & getContext() const
const UnknownSpaceRegion * getUnknownRegion()
getUnknownRegion - Retrieve the memory region associated with unknown memory space.
const CXXDerivedObjectRegion * getCXXDerivedObjectRegion(const CXXRecordDecl *BaseClass, const SubRegion *Super)
Create a CXXDerivedObjectRegion with the given derived class for region Super.
const CompoundLiteralRegion * getCompoundLiteralRegion(const CompoundLiteralExpr *CL, const LocationContext *LC)
getCompoundLiteralRegion - Retrieve the region associated with a given CompoundLiteral.
const FieldRegion * getFieldRegion(const FieldDecl *fd, const SubRegion *superRegion)
getFieldRegion - Retrieve or create the memory region associated with a specified FieldDecl.
const AllocaRegion * getAllocaRegion(const Expr *Ex, unsigned Cnt, const LocationContext *LC)
getAllocaRegion - Retrieve a region associated with a call to alloca().
const ElementRegion * getElementRegion(QualType elementType, NonLoc Idx, const SubRegion *superRegion, const ASTContext &Ctx)
getElementRegion - Retrieve the memory region associated with the associated element type,...
const VarRegion * getVarRegion(const VarDecl *VD, const LocationContext *LC)
getVarRegion - Retrieve or create the memory region associated with a specified VarDecl and LocationC...
const NonParamVarRegion * getNonParamVarRegion(const VarDecl *VD, const MemRegion *superR)
getVarRegion - Retrieve or create the memory region associated with a specified VarDecl and LocationC...
const FieldRegion * getFieldRegionWithSuper(const FieldRegion *FR, const SubRegion *superRegion)
const StackLocalsSpaceRegion * getStackLocalsRegion(const StackFrameContext *STC)
getStackLocalsRegion - Retrieve the memory region associated with the specified stack frame.
const ObjCIvarRegion * getObjCIvarRegion(const ObjCIvarDecl *ivd, const SubRegion *superRegion)
getObjCIvarRegion - Retrieve or create the memory region associated with a specified Objective-c inst...
const SymbolicRegion * getSymbolicHeapRegion(SymbolRef sym)
Return a unique symbolic region belonging to heap memory space.
const ObjCStringRegion * getObjCStringRegion(const ObjCStringLiteral *Str)
MemRegionManager(ASTContext &c, llvm::BumpPtrAllocator &a)
const StringRegion * getStringRegion(const StringLiteral *Str)
ASTContext & getContext()
DefinedOrUnknownSVal getStaticSize(const MemRegion *MR, SValBuilder &SVB) const
const ParamVarRegion * getParamVarRegion(const Expr *OriginExpr, unsigned Index, const LocationContext *LC)
getParamVarRegion - Retrieve or create the memory region associated with a specified CallExpr,...
const CodeSpaceRegion * getCodeRegion()
const CXXLifetimeExtendedObjectRegion * getCXXLifetimeExtendedObjectRegion(Expr const *Ex, ValueDecl const *VD, LocationContext const *LC)
Create a CXXLifetimeExtendedObjectRegion for temporaries which are lifetime-extended by local referen...
const CXXTempObjectRegion * getCXXTempObjectRegion(Expr const *Ex, LocationContext const *LC)
const GlobalsSpaceRegion * getGlobalsRegion(MemRegion::Kind K=MemRegion::GlobalInternalSpaceRegionKind, const CodeTextRegion *R=nullptr)
getGlobalsRegion - Retrieve the memory region associated with global variables.
const SymbolicRegion * getSymbolicRegion(SymbolRef Sym, const MemSpaceRegion *MemSpace=nullptr)
Retrieve or create a "symbolic" memory region.
const ElementRegion * getElementRegionWithSuper(const ElementRegion *ER, const SubRegion *superRegion)
const FunctionCodeRegion * getFunctionCodeRegion(const NamedDecl *FD)
const BlockDataRegion * getBlockDataRegion(const BlockCodeRegion *bc, const LocationContext *lc, unsigned blockCount)
getBlockDataRegion - Get the memory region associated with an instance of a block.
const CXXBaseObjectRegion * getCXXBaseObjectRegion(const CXXRecordDecl *BaseClass, const SubRegion *Super, bool IsVirtual)
Create a CXXBaseObjectRegion with the given base class for region Super.
const CXXLifetimeExtendedObjectRegion * getCXXStaticLifetimeExtendedObjectRegion(const Expr *Ex, ValueDecl const *VD)
Create a CXXLifetimeExtendedObjectRegion for temporaries which are lifetime-extended by static refere...
const CXXBaseObjectRegion * getCXXBaseObjectRegionWithSuper(const CXXBaseObjectRegion *baseReg, const SubRegion *superRegion)
Create a CXXBaseObjectRegion with the same CXXRecordDecl but a different super region.
MemRegion - The root abstract class for all memory regions.
virtual bool canPrintPrettyAsExpr() const
Returns true if this region's textual representation can be used as part of a larger expression.
virtual void Profile(llvm::FoldingSetNodeID &ID) const =0
LLVM_ATTRIBUTE_RETURNS_NONNULL const RegionTy * castAs() const
const MemSpace * getMemorySpaceAs(ProgramStateRef State) const
virtual bool isBoundable() const
StringRef getKindStr() const
RegionOffset getAsOffset() const
Compute the offset within the top level memory object.
LLVM_ATTRIBUTE_RETURNS_NONNULL const MemRegion * StripCasts(bool StripBaseAndDerivedCasts=true) const
bool hasMemorySpace(ProgramStateRef State) const
const MemSpace * getRawMemorySpaceAs() const
Deprecated. Use getMemorySpace(ProgramStateRef) instead.
ProgramStateRef setMemorySpace(ProgramStateRef State, const MemSpaceRegion *Space) const
Set the dynamically deduced memory space of a MemRegion that currently has UnknownSpaceRegion.
ASTContext & getContext() const
LLVM_ATTRIBUTE_RETURNS_NONNULL const MemSpaceRegion * getMemorySpace(ProgramStateRef State) const
Returns the most specific memory space for this memory region in the given ProgramStateRef.
std::string getDescriptiveName(bool UseQuotes=true) const
Get descriptive name for memory region.
virtual bool isSubRegionOf(const MemRegion *R) const
Check if the region is a subregion of the given region.
virtual void dumpToStream(raw_ostream &os) const
const SymbolicRegion * getSymbolicBase() const
If this is a symbolic region, returns the region.
LLVM_ATTRIBUTE_RETURNS_NONNULL const MemRegion * getBaseRegion() const
virtual void printPretty(raw_ostream &os) const
Print the region for use in diagnostics.
virtual void printPrettyAsExpr(raw_ostream &os) const
Print the region as expression.
std::string getString() const
Get a string representation of a region for debug use.
const RegionTy * getAs() const
LLVM_ATTRIBUTE_RETURNS_NONNULL const MemRegion * getMostDerivedObjectRegion() const
Recursively retrieve the region of the most derived class instance of regions of C++ base class insta...
LLVM_ATTRIBUTE_RETURNS_NONNULL const MemSpaceRegion * getRawMemorySpace() const
Deprecated.
virtual MemRegionManager & getMemRegionManager() const =0
virtual bool canPrintPretty() const
Returns true if this region can be printed in a user-friendly way.
SourceRange sourceRange() const
Retrieve source range from memory region.
MemSpaceRegion - A memory region that represents a "memory space"; for example, the set of global var...
MemRegionManager & getMemRegionManager() const override
static bool classof(const MemRegion *R)
void Profile(llvm::FoldingSetNodeID &ID) const override
bool isBoundable() const override
MemSpaceRegion(MemRegionManager &mgr, Kind k)
QualType getValueType() const override
bool canPrintPrettyAsExpr() const override
Returns true if this region's textual representation can be used as part of a larger expression.
void Profile(llvm::FoldingSetNodeID &ID) const override
void printPrettyAsExpr(raw_ostream &os) const override
Print the region as expression.
void dumpToStream(raw_ostream &os) const override
LLVM_ATTRIBUTE_RETURNS_NONNULL const VarDecl * getDecl() const override
static bool classof(const MemRegion *R)
The region for all the non-static global variables.
NonStaticGlobalSpaceRegion(MemRegionManager &mgr, Kind k)
static bool classof(const MemRegion *R)
bool canPrintPrettyAsExpr() const override
Returns true if this region's textual representation can be used as part of a larger expression.
void Profile(llvm::FoldingSetNodeID &ID) const override
QualType getValueType() const override
static bool classof(const MemRegion *R)
void printPrettyAsExpr(raw_ostream &os) const override
Print the region as expression.
LLVM_ATTRIBUTE_RETURNS_NONNULL const ObjCIvarDecl * getDecl() const override
void dumpToStream(raw_ostream &os) const override
The region associated with an ObjCStringLiteral.
QualType getValueType() const override
bool isBoundable() const override
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
LLVM_ATTRIBUTE_RETURNS_NONNULL const ObjCStringLiteral * getObjCStringLiteral() const
void Profile(llvm::FoldingSetNodeID &ID) const override
ParamVarRegion - Represents a region for parameters.
bool canPrintPrettyAsExpr() const override
Returns true if this region's textual representation can be used as part of a larger expression.
LLVM_ATTRIBUTE_RETURNS_NONNULL const Expr * getOriginExpr() const
static bool classof(const MemRegion *R)
const ParmVarDecl * getDecl() const override
TODO: What does this return?
unsigned getIndex() const
void Profile(llvm::FoldingSetNodeID &ID) const override
QualType getValueType() const override
void dumpToStream(raw_ostream &os) const override
void printPrettyAsExpr(raw_ostream &os) const override
Print the region as expression.
Information about invalidation for a particular region/symbol.
InvalidationKinds
Describes different invalidation traits.
@ TK_PreserveContents
Tells that a region's contents is not changed.
@ TK_DoNotInvalidateSuperRegion
@ TK_EntireMemSpace
When applied to a MemSpaceRegion, indicates the entire memory space should be invalidated.
@ TK_SuppressEscape
Suppress pointer-escaping of a region.
bool hasTrait(SymbolRef Sym, InvalidationKinds IK) const
void setTrait(SymbolRef Sym, InvalidationKinds IK)
Represent a region's offset within the top level base region.
static const int64_t Symbolic
bool hasSymbolicOffset() const
const MemRegion * getRegion() const
It might return null.
RegionOffset(const MemRegion *r, int64_t off)
int64_t getOffset() const
CharUnits getOffset() const
void dumpToStream(raw_ostream &os) const
const MemRegion * getRegion() const
SVal - This represents a symbolic expression, which can be either an L-value or an R-value.
T castAs() const
Convert to the specified SVal type, asserting that this SVal is of the desired type.
static bool classof(const MemRegion *R)
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
void dumpToStream(raw_ostream &os) const override
StackSpaceRegion(MemRegionManager &mgr, Kind k, const StackFrameContext *sfc)
static bool classof(const MemRegion *R)
LLVM_ATTRIBUTE_RETURNS_NONNULL const StackFrameContext * getStackFrame() const
void Profile(llvm::FoldingSetNodeID &ID) const override
The region of the static variables within the current CodeTextRegion scope.
void Profile(llvm::FoldingSetNodeID &ID) const override
static bool classof(const MemRegion *R)
void dumpToStream(raw_ostream &os) const override
LLVM_ATTRIBUTE_RETURNS_NONNULL const CodeTextRegion * getCodeRegion() const
StringRegion - Region associated with a StringLiteral.
static bool classof(const MemRegion *R)
QualType getValueType() const override
void Profile(llvm::FoldingSetNodeID &ID) const override
bool isBoundable() const override
void dumpToStream(raw_ostream &os) const override
LLVM_ATTRIBUTE_RETURNS_NONNULL const StringLiteral * getStringLiteral() const
SubRegion - A region that subsets another larger region.
LLVM_ATTRIBUTE_RETURNS_NONNULL const MemRegion * getSuperRegion() const
static bool classof(const MemRegion *R)
bool isSubRegionOf(const MemRegion *R) const override
Check if the region is a subregion of the given region.
SubRegion(const MemRegion *sReg, Kind k)
const MemRegion * superRegion
MemRegionManager & getMemRegionManager() const override
virtual QualType getType() const =0
SymbolicRegion - A special, "non-concrete" region.
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
bool isBoundable() const override
void Profile(llvm::FoldingSetNodeID &ID) const override
SymbolRef getSymbol() const
It might return null.
static void ProfileRegion(llvm::FoldingSetNodeID &ID, SymbolRef sym, const MemRegion *superRegion)
QualType getPointeeStaticType() const
Gets the type of the wrapped symbol.
TypedRegion - An abstract class representing regions that are typed.
QualType getDesugaredLocationType(ASTContext &Context) const
bool isBoundable() const override
virtual QualType getLocationType() const =0
TypedRegion(const MemRegion *sReg, Kind k)
static bool classof(const MemRegion *R)
TypedValueRegion - An abstract class representing regions having a typed value.
virtual QualType getValueType() const =0
QualType getLocationType() const override
static bool classof(const MemRegion *R)
QualType getDesugaredValueType(ASTContext &Context) const
TypedValueRegion(const MemRegion *sReg, Kind k)
void dumpToStream(raw_ostream &os) const override
static bool classof(const MemRegion *R)
QualType getValueType() const override
const VarDecl * getDecl() const override=0
const StackFrameContext * getStackFrame() const
It might return null.
VarRegion(const MemRegion *sReg, Kind k)
static bool classof(const MemRegion *R)
Value representing integer constant.
APSIntPtr getValue() const
raw_ostream & operator<<(raw_ostream &os, const MemRegion *R)
std::variant< struct RequiresDecl, struct HeaderDecl, struct UmbrellaDirDecl, struct ModuleDecl, struct ExcludeDecl, struct ExportDecl, struct ExportAsDecl, struct ExternModuleDecl, struct UseDecl, struct LinkDecl, struct ConfigMacrosDecl, struct ConflictDecl > Decl
All declarations that can appear in a module declaration.
The JSON file list parser is used to communicate input to InstallAPI.
bool isa(CodeGen::Address addr)
const FunctionProtoType * T