Home
last modified time | relevance | path

Searched refs:DeclRegion (Results 1 – 9 of 9) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DRegions.def74 ABSTRACT_REGION(DeclRegion, TypedValueRegion)
75 REGION(FieldRegion, DeclRegion)
76 REGION(ObjCIvarRegion, DeclRegion)
77 REGION(VarRegion, DeclRegion)
H A DMemRegion.h908 class DeclRegion : public TypedValueRegion {
912 DeclRegion(const ValueDecl *d, const MemRegion *sReg, Kind k) in DeclRegion() function
931 class VarRegion : public DeclRegion {
936 : DeclRegion(vd, sReg, VarRegionKind) { in VarRegion()
947 DeclRegion::ProfileRegion(ID, VD, superRegion, VarRegionKind); in ProfileRegion()
1008 class FieldRegion : public DeclRegion {
1012 : DeclRegion(fd, sReg, FieldRegionKind) {} in FieldRegion()
1016 DeclRegion::ProfileRegion(ID, FD, superRegion, FieldRegionKind); in ProfileRegion()
1041 class ObjCIvarRegion : public DeclRegion {
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSelfInitChecker.cpp419 if (const DeclRegion *DR = dyn_cast<DeclRegion>(MRV.stripCasts())) in isSelfVar()
H A DGenericTaintChecker.cpp600 const DeclRegion *DeclReg = dyn_cast_or_null<DeclRegion>(Sm->getRegion()); in isStdin()
H A DValistChecker.cpp175 if (const auto *DeclReg = Reg->getAs<DeclRegion>()) { in getVAListAsRegion()
H A DMoveChecker.cpp563 dyn_cast_or_null<DeclRegion>(unwrapRValueReferenceIndirection(MR))) { in explainObject()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp186 DefinedOrUnknownSVal Extent = DeclRegion::getExtent(svalBuilder); in getExtent()
214 : DeclRegion(ivd, sReg, ObjCIvarRegionKind) {} in ObjCIvarRegion()
306 DeclRegion::ProfileRegion(ID, ivd, superRegion, ObjCIvarRegionKind); in ProfileRegion()
309 void DeclRegion::ProfileRegion(llvm::FoldingSetNodeID& ID, const Decl *D, in ProfileRegion()
316 void DeclRegion::Profile(llvm::FoldingSetNodeID& ID) const { in Profile()
317 DeclRegion::ProfileRegion(ID, D, superRegion, getKind()); in Profile()
H A DBugReporterVisitors.cpp618 if (!isa<DeclRegion>(R)) in prettyPrintRegionName()
621 const auto *DR = cast<DeclRegion>(R); in prettyPrintRegionName()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp710 auto *Region = dyn_cast<DeclRegion>(sym->getOriginRegion()); in deriveParamLocation()