Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 1 | //== RegionStore.cpp - Field-sensitive store model --------------*- C++ -*--==// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines a basic region store model. In this model, we do have field |
| 11 | // sensitivity. But we assume nothing about the heap shape. So recursive data |
| 12 | // structures are largely ignored. Basically we do 1-limiting analysis. |
| 13 | // Parameter pointers are assumed with no aliasing. Pointee objects of |
| 14 | // parameters are created lazily. |
| 15 | // |
| 16 | //===----------------------------------------------------------------------===// |
| 17 | #include "clang/Analysis/PathSensitive/MemRegion.h" |
| 18 | #include "clang/Analysis/PathSensitive/GRState.h" |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 19 | #include "clang/Analysis/PathSensitive/GRStateTrait.h" |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 20 | #include "clang/Analysis/Analyses/LiveVariables.h" |
Zhongxing Xu | 41fd018 | 2009-05-06 11:51:48 +0000 | [diff] [blame] | 21 | #include "clang/Basic/TargetInfo.h" |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 22 | |
| 23 | #include "llvm/ADT/ImmutableMap.h" |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/ImmutableList.h" |
Zhongxing Xu | a071eb0 | 2008-10-24 06:01:33 +0000 | [diff] [blame] | 25 | #include "llvm/Support/raw_ostream.h" |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Compiler.h" |
| 27 | |
| 28 | using namespace clang; |
| 29 | |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 30 | // Actual Store type. |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 31 | typedef llvm::ImmutableMap<const MemRegion*, SVal> RegionBindingsTy; |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 32 | |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 33 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 34 | // Fine-grained control of RegionStoreManager. |
| 35 | //===----------------------------------------------------------------------===// |
| 36 | |
| 37 | namespace { |
| 38 | struct VISIBILITY_HIDDEN minimal_features_tag {}; |
| 39 | struct VISIBILITY_HIDDEN maximal_features_tag {}; |
| 40 | |
| 41 | class VISIBILITY_HIDDEN RegionStoreFeatures { |
| 42 | bool SupportsFields; |
| 43 | bool SupportsRemaining; |
| 44 | |
| 45 | public: |
| 46 | RegionStoreFeatures(minimal_features_tag) : |
| 47 | SupportsFields(false), SupportsRemaining(false) {} |
| 48 | |
| 49 | RegionStoreFeatures(maximal_features_tag) : |
| 50 | SupportsFields(true), SupportsRemaining(false) {} |
| 51 | |
| 52 | void enableFields(bool t) { SupportsFields = t; } |
| 53 | |
| 54 | bool supportsFields() const { return SupportsFields; } |
| 55 | bool supportsRemaining() const { return SupportsRemaining; } |
| 56 | }; |
| 57 | } |
| 58 | |
| 59 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 60 | // Region "Views" |
| 61 | //===----------------------------------------------------------------------===// |
| 62 | // |
| 63 | // MemRegions can be layered on top of each other. This GDM entry tracks |
| 64 | // what are the MemRegions that layer a given MemRegion. |
| 65 | // |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 66 | typedef llvm::ImmutableSet<const MemRegion*> RegionViews; |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 67 | namespace { class VISIBILITY_HIDDEN RegionViewMap {}; } |
| 68 | static int RegionViewMapIndex = 0; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 69 | namespace clang { |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 70 | template<> struct GRStateTrait<RegionViewMap> |
| 71 | : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, |
| 72 | RegionViews> > { |
| 73 | |
| 74 | static void* GDMIndex() { return &RegionViewMapIndex; } |
| 75 | }; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 76 | } |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 77 | |
Zhongxing Xu | 2079494 | 2009-05-06 08:33:50 +0000 | [diff] [blame] | 78 | // RegionCasts records the current cast type of a region. |
| 79 | namespace { class VISIBILITY_HIDDEN RegionCasts {}; } |
| 80 | static int RegionCastsIndex = 0; |
| 81 | namespace clang { |
| 82 | template<> struct GRStateTrait<RegionCasts> |
| 83 | : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, |
| 84 | QualType> > { |
| 85 | static void* GDMIndex() { return &RegionCastsIndex; } |
| 86 | }; |
| 87 | } |
| 88 | |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 89 | //===----------------------------------------------------------------------===// |
| 90 | // Region "Extents" |
| 91 | //===----------------------------------------------------------------------===// |
| 92 | // |
| 93 | // MemRegions represent chunks of memory with a size (their "extent"). This |
| 94 | // GDM entry tracks the extents for regions. Extents are in bytes. |
Ted Kremenek | d6cfbe4 | 2009-01-07 22:18:50 +0000 | [diff] [blame] | 95 | // |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 96 | namespace { class VISIBILITY_HIDDEN RegionExtents {}; } |
| 97 | static int RegionExtentsIndex = 0; |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 98 | namespace clang { |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 99 | template<> struct GRStateTrait<RegionExtents> |
| 100 | : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, SVal> > { |
| 101 | static void* GDMIndex() { return &RegionExtentsIndex; } |
| 102 | }; |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 105 | //===----------------------------------------------------------------------===// |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 106 | // Regions with default values. |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 107 | //===----------------------------------------------------------------------===// |
| 108 | // |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 109 | // This GDM entry tracks what regions have a default value if they have no bound |
| 110 | // value and have not been killed. |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 111 | // |
| 112 | namespace { class VISIBILITY_HIDDEN RegionDefaultValue {}; } |
| 113 | static int RegionDefaultValueIndex = 0; |
| 114 | namespace clang { |
| 115 | template<> struct GRStateTrait<RegionDefaultValue> |
| 116 | : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, SVal> > { |
| 117 | static void* GDMIndex() { return &RegionDefaultValueIndex; } |
| 118 | }; |
| 119 | } |
| 120 | |
| 121 | //===----------------------------------------------------------------------===// |
| 122 | // Main RegionStore logic. |
| 123 | //===----------------------------------------------------------------------===// |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 124 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 125 | namespace { |
| 126 | |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 127 | class VISIBILITY_HIDDEN RegionStoreSubRegionMap : public SubRegionMap { |
| 128 | typedef llvm::DenseMap<const MemRegion*, |
| 129 | llvm::ImmutableSet<const MemRegion*> > Map; |
| 130 | |
| 131 | llvm::ImmutableSet<const MemRegion*>::Factory F; |
| 132 | Map M; |
| 133 | |
| 134 | public: |
| 135 | void add(const MemRegion* Parent, const MemRegion* SubRegion) { |
| 136 | Map::iterator I = M.find(Parent); |
| 137 | M.insert(std::make_pair(Parent, |
| 138 | F.Add(I == M.end() ? F.GetEmptySet() : I->second, SubRegion))); |
| 139 | } |
| 140 | |
| 141 | ~RegionStoreSubRegionMap() {} |
| 142 | |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 143 | bool iterSubRegions(const MemRegion* Parent, Visitor& V) const { |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 144 | Map::iterator I = M.find(Parent); |
| 145 | |
| 146 | if (I == M.end()) |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 147 | return true; |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 148 | |
| 149 | llvm::ImmutableSet<const MemRegion*> S = I->second; |
| 150 | for (llvm::ImmutableSet<const MemRegion*>::iterator SI=S.begin(),SE=S.end(); |
| 151 | SI != SE; ++SI) { |
| 152 | if (!V.Visit(Parent, *SI)) |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 153 | return false; |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 154 | } |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 155 | |
| 156 | return true; |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 157 | } |
| 158 | }; |
| 159 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 160 | class VISIBILITY_HIDDEN RegionStoreManager : public StoreManager { |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 161 | const RegionStoreFeatures Features; |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 162 | RegionBindingsTy::Factory RBFactory; |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 163 | RegionViews::Factory RVFactory; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 164 | |
Ted Kremenek | 6fd8f91 | 2009-01-22 23:43:57 +0000 | [diff] [blame] | 165 | const MemRegion* SelfRegion; |
| 166 | const ImplicitParamDecl *SelfDecl; |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 167 | |
| 168 | public: |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 169 | RegionStoreManager(GRStateManager& mgr, const RegionStoreFeatures &f) |
Ted Kremenek | c62abc1 | 2009-04-21 21:51:34 +0000 | [diff] [blame] | 170 | : StoreManager(mgr), |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 171 | Features(f), |
Ted Kremenek | d6cfbe4 | 2009-01-07 22:18:50 +0000 | [diff] [blame] | 172 | RBFactory(mgr.getAllocator()), |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 173 | RVFactory(mgr.getAllocator()), |
Ted Kremenek | c62abc1 | 2009-04-21 21:51:34 +0000 | [diff] [blame] | 174 | SelfRegion(0), SelfDecl(0) { |
Ted Kremenek | 6fd8f91 | 2009-01-22 23:43:57 +0000 | [diff] [blame] | 175 | if (const ObjCMethodDecl* MD = |
| 176 | dyn_cast<ObjCMethodDecl>(&StateMgr.getCodeDecl())) |
| 177 | SelfDecl = MD->getSelfDecl(); |
| 178 | } |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 179 | |
| 180 | virtual ~RegionStoreManager() {} |
| 181 | |
Ted Kremenek | 14453bf | 2009-03-03 19:02:42 +0000 | [diff] [blame] | 182 | SubRegionMap* getSubRegionMap(const GRState *state); |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 183 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 184 | /// getLValueString - Returns an SVal representing the lvalue of a |
| 185 | /// StringLiteral. Within RegionStore a StringLiteral has an |
| 186 | /// associated StringRegion, and the lvalue of a StringLiteral is |
| 187 | /// the lvalue of that region. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 188 | SVal getLValueString(const GRState *state, const StringLiteral* S); |
Zhongxing Xu | 143bf82 | 2008-10-25 14:18:57 +0000 | [diff] [blame] | 189 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 190 | /// getLValueCompoundLiteral - Returns an SVal representing the |
| 191 | /// lvalue of a compound literal. Within RegionStore a compound |
| 192 | /// literal has an associated region, and the lvalue of the |
| 193 | /// compound literal is the lvalue of that region. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 194 | SVal getLValueCompoundLiteral(const GRState *state, const CompoundLiteralExpr*); |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 195 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 196 | /// getLValueVar - Returns an SVal that represents the lvalue of a |
| 197 | /// variable. Within RegionStore a variable has an associated |
| 198 | /// VarRegion, and the lvalue of the variable is the lvalue of that region. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 199 | SVal getLValueVar(const GRState *state, const VarDecl* VD); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 200 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 201 | SVal getLValueIvar(const GRState *state, const ObjCIvarDecl* D, SVal Base); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 202 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 203 | SVal getLValueField(const GRState *state, SVal Base, const FieldDecl* D); |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 204 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 205 | SVal getLValueFieldOrIvar(const GRState *state, SVal Base, const Decl* D); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 206 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 207 | SVal getLValueElement(const GRState *state, QualType elementType, |
Ted Kremenek | f936f45 | 2009-05-04 06:18:28 +0000 | [diff] [blame] | 208 | SVal Base, SVal Offset); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 209 | |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 210 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 211 | /// ArrayToPointer - Emulates the "decay" of an array to a pointer |
| 212 | /// type. 'Array' represents the lvalue of the array being decayed |
| 213 | /// to a pointer, and the returned SVal represents the decayed |
| 214 | /// version of that lvalue (i.e., a pointer to the first element of |
| 215 | /// the array). This is called by GRExprEngine when evaluating |
| 216 | /// casts from arrays to pointers. |
Zhongxing Xu | f1d537f | 2009-03-30 05:55:46 +0000 | [diff] [blame] | 217 | SVal ArrayToPointer(Loc Array); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 218 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 219 | CastResult CastRegion(const GRState *state, const MemRegion* R, |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 220 | QualType CastToTy); |
| 221 | |
Ted Kremenek | 53ba0b6 | 2009-06-24 23:06:47 +0000 | [diff] [blame] | 222 | SVal EvalBinOp(const GRState *state, BinaryOperator::Opcode Op,Loc L, |
Ted Kremenek | 5c73462 | 2009-06-26 00:41:43 +0000 | [diff] [blame] | 223 | NonLoc R, QualType resultTy); |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 224 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 225 | Store getInitialStore() { return RBFactory.GetEmptyMap().getRoot(); } |
Ted Kremenek | 9deb0e3 | 2008-10-24 20:32:16 +0000 | [diff] [blame] | 226 | |
| 227 | /// getSelfRegion - Returns the region for the 'self' (Objective-C) or |
| 228 | /// 'this' object (C++). When used when analyzing a normal function this |
| 229 | /// method returns NULL. |
| 230 | const MemRegion* getSelfRegion(Store) { |
Ted Kremenek | 6fd8f91 | 2009-01-22 23:43:57 +0000 | [diff] [blame] | 231 | if (!SelfDecl) |
| 232 | return 0; |
| 233 | |
| 234 | if (!SelfRegion) { |
| 235 | const ObjCMethodDecl *MD = cast<ObjCMethodDecl>(&StateMgr.getCodeDecl()); |
| 236 | SelfRegion = MRMgr.getObjCObjectRegion(MD->getClassInterface(), |
| 237 | MRMgr.getHeapRegion()); |
| 238 | } |
| 239 | |
| 240 | return SelfRegion; |
Ted Kremenek | 9deb0e3 | 2008-10-24 20:32:16 +0000 | [diff] [blame] | 241 | } |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 242 | |
| 243 | //===-------------------------------------------------------------------===// |
| 244 | // Binding values to regions. |
| 245 | //===-------------------------------------------------------------------===// |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 246 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 247 | const GRState *Bind(const GRState *state, Loc LV, SVal V); |
| 248 | |
| 249 | const GRState *BindCompoundLiteral(const GRState *state, |
| 250 | const CompoundLiteralExpr* CL, SVal V); |
| 251 | |
| 252 | const GRState *BindDecl(const GRState *state, const VarDecl* VD, SVal InitVal); |
| 253 | |
| 254 | const GRState *BindDeclWithNoInit(const GRState *state, const VarDecl* VD) { |
| 255 | return state; |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 256 | } |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 257 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 258 | /// BindStruct - Bind a compound value to a structure. |
| 259 | const GRState *BindStruct(const GRState *, const TypedRegion* R, SVal V); |
| 260 | |
| 261 | const GRState *BindArray(const GRState *state, const TypedRegion* R, SVal V); |
| 262 | |
| 263 | /// KillStruct - Set the entire struct to unknown. |
| 264 | const GRState *KillStruct(const GRState *state, const TypedRegion* R); |
| 265 | |
| 266 | const GRState *setDefaultValue(const GRState *state, const MemRegion* R, SVal V); |
| 267 | |
| 268 | Store Remove(Store store, Loc LV); |
| 269 | |
| 270 | //===------------------------------------------------------------------===// |
| 271 | // Loading values from regions. |
| 272 | //===------------------------------------------------------------------===// |
| 273 | |
| 274 | /// The high level logic for this method is this: |
| 275 | /// Retrieve (L) |
| 276 | /// if L has binding |
| 277 | /// return L's binding |
| 278 | /// else if L is in killset |
| 279 | /// return unknown |
| 280 | /// else |
| 281 | /// if L is on stack or heap |
| 282 | /// return undefined |
| 283 | /// else |
| 284 | /// return symbolic |
| 285 | SVal Retrieve(const GRState *state, Loc L, QualType T = QualType()); |
Zhongxing Xu | 490b0f0 | 2009-06-25 04:50:44 +0000 | [diff] [blame] | 286 | |
Zhongxing Xu | c00346f | 2009-06-25 05:29:39 +0000 | [diff] [blame] | 287 | SVal RetrieveElement(const GRState* state, const ElementRegion* R); |
| 288 | |
Zhongxing Xu | 490b0f0 | 2009-06-25 04:50:44 +0000 | [diff] [blame] | 289 | SVal RetrieveField(const GRState* state, const FieldRegion* R); |
| 290 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 291 | /// Retrieve the values in a struct and return a CompoundVal, used when doing |
| 292 | /// struct copy: |
| 293 | /// struct s x, y; |
| 294 | /// x = y; |
| 295 | /// y's value is retrieved by this method. |
| 296 | SVal RetrieveStruct(const GRState *St, const TypedRegion* R); |
| 297 | |
| 298 | SVal RetrieveArray(const GRState *St, const TypedRegion* R); |
| 299 | |
| 300 | //===------------------------------------------------------------------===// |
| 301 | // State pruning. |
| 302 | //===------------------------------------------------------------------===// |
| 303 | |
| 304 | /// RemoveDeadBindings - Scans the RegionStore of 'state' for dead values. |
| 305 | /// It returns a new Store with these values removed. |
| 306 | Store RemoveDeadBindings(const GRState *state, Stmt* Loc, SymbolReaper& SymReaper, |
| 307 | llvm::SmallVectorImpl<const MemRegion*>& RegionRoots); |
| 308 | |
| 309 | //===------------------------------------------------------------------===// |
| 310 | // Region "extents". |
| 311 | //===------------------------------------------------------------------===// |
| 312 | |
| 313 | const GRState *setExtent(const GRState *state, const MemRegion* R, SVal Extent); |
| 314 | SVal getSizeInElements(const GRState *state, const MemRegion* R); |
| 315 | |
| 316 | //===------------------------------------------------------------------===// |
| 317 | // Region "views". |
| 318 | //===------------------------------------------------------------------===// |
| 319 | |
| 320 | const GRState *AddRegionView(const GRState *state, const MemRegion* View, |
| 321 | const MemRegion* Base); |
| 322 | |
| 323 | const GRState *RemoveRegionView(const GRState *state, const MemRegion* View, |
| 324 | const MemRegion* Base); |
| 325 | |
| 326 | //===------------------------------------------------------------------===// |
| 327 | // Utility methods. |
| 328 | //===------------------------------------------------------------------===// |
| 329 | |
| 330 | const GRState *setCastType(const GRState *state, const MemRegion* R, QualType T); |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 331 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 332 | static inline RegionBindingsTy GetRegionBindings(Store store) { |
Zhongxing Xu | 9c9ca08 | 2008-12-16 02:36:30 +0000 | [diff] [blame] | 333 | return RegionBindingsTy(static_cast<const RegionBindingsTy::TreeTy*>(store)); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 334 | } |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 335 | |
Ted Kremenek | 53ba0b6 | 2009-06-24 23:06:47 +0000 | [diff] [blame] | 336 | void print(Store store, llvm::raw_ostream& Out, const char* nl, |
| 337 | const char *sep); |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 338 | |
| 339 | void iterBindings(Store store, BindingsHandler& f) { |
| 340 | // FIXME: Implement. |
| 341 | } |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 342 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 343 | // FIXME: Remove. |
| 344 | BasicValueFactory& getBasicVals() { |
| 345 | return StateMgr.getBasicVals(); |
| 346 | } |
| 347 | |
| 348 | // FIXME: Remove. |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 349 | ASTContext& getContext() { return StateMgr.getContext(); } |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 350 | }; |
| 351 | |
| 352 | } // end anonymous namespace |
| 353 | |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 354 | //===----------------------------------------------------------------------===// |
| 355 | // RegionStore creation. |
| 356 | //===----------------------------------------------------------------------===// |
| 357 | |
| 358 | StoreManager *clang::CreateRegionStoreManager(GRStateManager& StMgr) { |
| 359 | RegionStoreFeatures F = maximal_features_tag(); |
| 360 | return new RegionStoreManager(StMgr, F); |
| 361 | } |
| 362 | |
| 363 | StoreManager *clang::CreateFieldsOnlyRegionStoreManager(GRStateManager &StMgr) { |
| 364 | RegionStoreFeatures F = minimal_features_tag(); |
| 365 | F.enableFields(true); |
| 366 | return new RegionStoreManager(StMgr, F); |
Ted Kremenek | 95c7b00 | 2008-10-24 01:04:59 +0000 | [diff] [blame] | 367 | } |
| 368 | |
Ted Kremenek | 14453bf | 2009-03-03 19:02:42 +0000 | [diff] [blame] | 369 | SubRegionMap* RegionStoreManager::getSubRegionMap(const GRState *state) { |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 370 | RegionBindingsTy B = GetRegionBindings(state->getStore()); |
| 371 | RegionStoreSubRegionMap *M = new RegionStoreSubRegionMap(); |
| 372 | |
| 373 | for (RegionBindingsTy::iterator I=B.begin(), E=B.end(); I!=E; ++I) { |
| 374 | if (const SubRegion* R = dyn_cast<SubRegion>(I.getKey())) |
| 375 | M->add(R->getSuperRegion(), R); |
| 376 | } |
| 377 | |
Ted Kremenek | 14453bf | 2009-03-03 19:02:42 +0000 | [diff] [blame] | 378 | return M; |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 379 | } |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 380 | |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 381 | //===----------------------------------------------------------------------===// |
| 382 | // getLValueXXX methods. |
| 383 | //===----------------------------------------------------------------------===// |
| 384 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 385 | /// getLValueString - Returns an SVal representing the lvalue of a |
| 386 | /// StringLiteral. Within RegionStore a StringLiteral has an |
| 387 | /// associated StringRegion, and the lvalue of a StringLiteral is the |
| 388 | /// lvalue of that region. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 389 | SVal RegionStoreManager::getLValueString(const GRState *St, |
Zhongxing Xu | 143bf82 | 2008-10-25 14:18:57 +0000 | [diff] [blame] | 390 | const StringLiteral* S) { |
| 391 | return loc::MemRegionVal(MRMgr.getStringRegion(S)); |
| 392 | } |
| 393 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 394 | /// getLValueVar - Returns an SVal that represents the lvalue of a |
| 395 | /// variable. Within RegionStore a variable has an associated |
| 396 | /// VarRegion, and the lvalue of the variable is the lvalue of that region. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 397 | SVal RegionStoreManager::getLValueVar(const GRState *St, const VarDecl* VD) { |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 398 | return loc::MemRegionVal(MRMgr.getVarRegion(VD)); |
| 399 | } |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 400 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 401 | /// getLValueCompoundLiteral - Returns an SVal representing the lvalue |
| 402 | /// of a compound literal. Within RegionStore a compound literal |
| 403 | /// has an associated region, and the lvalue of the compound literal |
| 404 | /// is the lvalue of that region. |
| 405 | SVal |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 406 | RegionStoreManager::getLValueCompoundLiteral(const GRState *St, |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 407 | const CompoundLiteralExpr* CL) { |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 408 | return loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL)); |
| 409 | } |
| 410 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 411 | SVal RegionStoreManager::getLValueIvar(const GRState *St, const ObjCIvarDecl* D, |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 412 | SVal Base) { |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 413 | return getLValueFieldOrIvar(St, Base, D); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 414 | } |
| 415 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 416 | SVal RegionStoreManager::getLValueField(const GRState *St, SVal Base, |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 417 | const FieldDecl* D) { |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 418 | return getLValueFieldOrIvar(St, Base, D); |
| 419 | } |
| 420 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 421 | SVal RegionStoreManager::getLValueFieldOrIvar(const GRState *St, SVal Base, |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 422 | const Decl* D) { |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 423 | if (Base.isUnknownOrUndef()) |
| 424 | return Base; |
| 425 | |
| 426 | Loc BaseL = cast<Loc>(Base); |
| 427 | const MemRegion* BaseR = 0; |
| 428 | |
| 429 | switch (BaseL.getSubKind()) { |
| 430 | case loc::MemRegionKind: |
| 431 | BaseR = cast<loc::MemRegionVal>(BaseL).getRegion(); |
| 432 | break; |
| 433 | |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 434 | case loc::GotoLabelKind: |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 435 | // These are anormal cases. Flag an undefined value. |
| 436 | return UndefinedVal(); |
| 437 | |
| 438 | case loc::ConcreteIntKind: |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 439 | // While these seem funny, this can happen through casts. |
| 440 | // FIXME: What we should return is the field offset. For example, |
| 441 | // add the field offset to the integer value. That way funny things |
| 442 | // like this work properly: &(((struct foo *) 0xa)->f) |
| 443 | return Base; |
| 444 | |
| 445 | default: |
Zhongxing Xu | 13d1ee2 | 2008-11-07 08:57:30 +0000 | [diff] [blame] | 446 | assert(0 && "Unhandled Base."); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 447 | return Base; |
| 448 | } |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 449 | |
| 450 | // NOTE: We must have this check first because ObjCIvarDecl is a subclass |
| 451 | // of FieldDecl. |
| 452 | if (const ObjCIvarDecl *ID = dyn_cast<ObjCIvarDecl>(D)) |
| 453 | return loc::MemRegionVal(MRMgr.getObjCIvarRegion(ID, BaseR)); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 454 | |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 455 | return loc::MemRegionVal(MRMgr.getFieldRegion(cast<FieldDecl>(D), BaseR)); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 458 | SVal RegionStoreManager::getLValueElement(const GRState *St, |
Ted Kremenek | f936f45 | 2009-05-04 06:18:28 +0000 | [diff] [blame] | 459 | QualType elementType, |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 460 | SVal Base, SVal Offset) { |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 461 | |
Ted Kremenek | de7ec63 | 2009-03-09 22:44:49 +0000 | [diff] [blame] | 462 | // If the base is an unknown or undefined value, just return it back. |
| 463 | // FIXME: For absolute pointer addresses, we just return that value back as |
| 464 | // well, although in reality we should return the offset added to that |
| 465 | // value. |
| 466 | if (Base.isUnknownOrUndef() || isa<loc::ConcreteInt>(Base)) |
Zhongxing Xu | 4a1513e | 2008-10-27 12:23:17 +0000 | [diff] [blame] | 467 | return Base; |
| 468 | |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 469 | // Only handle integer offsets... for now. |
| 470 | if (!isa<nonloc::ConcreteInt>(Offset)) |
Zhongxing Xu | e4d1393 | 2008-11-13 09:48:44 +0000 | [diff] [blame] | 471 | return UnknownVal(); |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 472 | |
Zhongxing Xu | ce76078 | 2009-05-09 13:20:07 +0000 | [diff] [blame] | 473 | const MemRegion* BaseRegion = cast<loc::MemRegionVal>(Base).getRegion(); |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 474 | |
| 475 | // Pointer of any type can be cast and used as array base. |
| 476 | const ElementRegion *ElemR = dyn_cast<ElementRegion>(BaseRegion); |
| 477 | |
| 478 | if (!ElemR) { |
| 479 | // |
| 480 | // If the base region is not an ElementRegion, create one. |
| 481 | // This can happen in the following example: |
| 482 | // |
| 483 | // char *p = __builtin_alloc(10); |
| 484 | // p[1] = 8; |
| 485 | // |
Zhongxing Xu | ce76078 | 2009-05-09 13:20:07 +0000 | [diff] [blame] | 486 | // Observe that 'p' binds to an AllocaRegion. |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 487 | // |
Zhongxing Xu | 5ea2ffc | 2009-02-19 08:37:16 +0000 | [diff] [blame] | 488 | |
| 489 | // Offset might be unsigned. We have to convert it to signed ConcreteInt. |
| 490 | if (nonloc::ConcreteInt* CI = dyn_cast<nonloc::ConcreteInt>(&Offset)) { |
| 491 | const llvm::APSInt& OffI = CI->getValue(); |
| 492 | if (OffI.isUnsigned()) { |
| 493 | llvm::APSInt Tmp = OffI; |
| 494 | Tmp.setIsSigned(true); |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 495 | Offset = ValMgr.makeIntVal(Tmp); |
Zhongxing Xu | 5ea2ffc | 2009-02-19 08:37:16 +0000 | [diff] [blame] | 496 | } |
| 497 | } |
Ted Kremenek | f936f45 | 2009-05-04 06:18:28 +0000 | [diff] [blame] | 498 | return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset, |
Zhongxing Xu | 143b2fc | 2009-06-16 09:55:50 +0000 | [diff] [blame] | 499 | BaseRegion, getContext())); |
Zhongxing Xu | e4d1393 | 2008-11-13 09:48:44 +0000 | [diff] [blame] | 500 | } |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 501 | |
| 502 | SVal BaseIdx = ElemR->getIndex(); |
| 503 | |
| 504 | if (!isa<nonloc::ConcreteInt>(BaseIdx)) |
| 505 | return UnknownVal(); |
| 506 | |
| 507 | const llvm::APSInt& BaseIdxI = cast<nonloc::ConcreteInt>(BaseIdx).getValue(); |
| 508 | const llvm::APSInt& OffI = cast<nonloc::ConcreteInt>(Offset).getValue(); |
| 509 | assert(BaseIdxI.isSigned()); |
| 510 | |
| 511 | // FIXME: This appears to be the assumption of this code. We should review |
| 512 | // whether or not BaseIdxI.getBitWidth() < OffI.getBitWidth(). If it |
| 513 | // can't we need to put a comment here. If it can, we should handle it. |
| 514 | assert(BaseIdxI.getBitWidth() >= OffI.getBitWidth()); |
Zhongxing Xu | e4d1393 | 2008-11-13 09:48:44 +0000 | [diff] [blame] | 515 | |
Zhongxing Xu | ce76078 | 2009-05-09 13:20:07 +0000 | [diff] [blame] | 516 | const MemRegion *ArrayR = ElemR->getSuperRegion(); |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 517 | SVal NewIdx; |
| 518 | |
| 519 | if (OffI.isUnsigned() || OffI.getBitWidth() < BaseIdxI.getBitWidth()) { |
| 520 | // 'Offset' might be unsigned. We have to convert it to signed and |
| 521 | // possibly extend it. |
| 522 | llvm::APSInt Tmp = OffI; |
| 523 | |
| 524 | if (OffI.getBitWidth() < BaseIdxI.getBitWidth()) |
| 525 | Tmp.extend(BaseIdxI.getBitWidth()); |
| 526 | |
| 527 | Tmp.setIsSigned(true); |
| 528 | Tmp += BaseIdxI; // Compute the new offset. |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 529 | NewIdx = ValMgr.makeIntVal(Tmp); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 530 | } |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 531 | else |
| 532 | NewIdx = nonloc::ConcreteInt(getBasicVals().getValue(BaseIdxI + OffI)); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 533 | |
Zhongxing Xu | 143b2fc | 2009-06-16 09:55:50 +0000 | [diff] [blame] | 534 | return loc::MemRegionVal(MRMgr.getElementRegion(elementType, NewIdx, ArrayR, |
| 535 | getContext())); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 536 | } |
| 537 | |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 538 | //===----------------------------------------------------------------------===// |
| 539 | // Extents for regions. |
| 540 | //===----------------------------------------------------------------------===// |
| 541 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 542 | SVal RegionStoreManager::getSizeInElements(const GRState *state, |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 543 | const MemRegion* R) { |
| 544 | if (const VarRegion* VR = dyn_cast<VarRegion>(R)) { |
| 545 | // Get the type of the variable. |
Zhongxing Xu | a82d8aa | 2009-05-09 03:57:34 +0000 | [diff] [blame] | 546 | QualType T = VR->getDesugaredValueType(getContext()); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 547 | |
Ted Kremenek | 14553ab | 2009-01-30 00:08:43 +0000 | [diff] [blame] | 548 | // FIXME: Handle variable-length arrays. |
| 549 | if (isa<VariableArrayType>(T)) |
| 550 | return UnknownVal(); |
| 551 | |
| 552 | if (const ConstantArrayType* CAT = dyn_cast<ConstantArrayType>(T)) { |
| 553 | // return the size as signed integer. |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 554 | return ValMgr.makeIntVal(CAT->getSize(), false); |
Ted Kremenek | 14553ab | 2009-01-30 00:08:43 +0000 | [diff] [blame] | 555 | } |
Zhongxing Xu | 2079494 | 2009-05-06 08:33:50 +0000 | [diff] [blame] | 556 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 557 | const QualType* CastTy = state->get<RegionCasts>(VR); |
Zhongxing Xu | 41fd018 | 2009-05-06 11:51:48 +0000 | [diff] [blame] | 558 | |
Zhongxing Xu | e6536af | 2009-05-08 02:00:55 +0000 | [diff] [blame] | 559 | // If the VarRegion is cast to other type, compute the size with respect to |
| 560 | // that type. |
Zhongxing Xu | 41fd018 | 2009-05-06 11:51:48 +0000 | [diff] [blame] | 561 | if (CastTy) { |
| 562 | QualType EleTy =cast<PointerType>(CastTy->getTypePtr())->getPointeeType(); |
Zhongxing Xu | a82d8aa | 2009-05-09 03:57:34 +0000 | [diff] [blame] | 563 | QualType VarTy = VR->getValueType(getContext()); |
Zhongxing Xu | e6536af | 2009-05-08 02:00:55 +0000 | [diff] [blame] | 564 | uint64_t EleSize = getContext().getTypeSize(EleTy); |
| 565 | uint64_t VarSize = getContext().getTypeSize(VarTy); |
Zhongxing Xu | 88c675f | 2009-06-18 06:29:10 +0000 | [diff] [blame] | 566 | assert(VarSize != 0); |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 567 | return ValMgr.makeIntVal(VarSize/EleSize, false); |
Zhongxing Xu | 41fd018 | 2009-05-06 11:51:48 +0000 | [diff] [blame] | 568 | } |
| 569 | |
Ted Kremenek | 14553ab | 2009-01-30 00:08:43 +0000 | [diff] [blame] | 570 | // Clients can use ordinary variables as if they were arrays. These |
| 571 | // essentially are arrays of size 1. |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 572 | return ValMgr.makeIntVal(1, false); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | if (const StringRegion* SR = dyn_cast<StringRegion>(R)) { |
Zhongxing Xu | 6613d08 | 2008-11-24 02:18:56 +0000 | [diff] [blame] | 576 | const StringLiteral* Str = SR->getStringLiteral(); |
Zhongxing Xu | d0fd3b7 | 2008-11-24 02:30:48 +0000 | [diff] [blame] | 577 | // We intentionally made the size value signed because it participates in |
| 578 | // operations with signed indices. |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 579 | return ValMgr.makeIntVal(Str->getByteLength()+1, false); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 580 | } |
| 581 | |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 582 | if (const FieldRegion* FR = dyn_cast<FieldRegion>(R)) { |
| 583 | // FIXME: Unsupported yet. |
| 584 | FR = 0; |
| 585 | return UnknownVal(); |
| 586 | } |
Zhongxing Xu | 369f429 | 2008-11-22 13:23:00 +0000 | [diff] [blame] | 587 | |
Zhongxing Xu | 02ebefb | 2009-02-06 08:51:30 +0000 | [diff] [blame] | 588 | if (isa<SymbolicRegion>(R)) { |
Zhongxing Xu | a48f737 | 2009-02-06 08:44:27 +0000 | [diff] [blame] | 589 | return UnknownVal(); |
| 590 | } |
| 591 | |
Zhongxing Xu | ce76078 | 2009-05-09 13:20:07 +0000 | [diff] [blame] | 592 | if (isa<AllocaRegion>(R)) { |
| 593 | return UnknownVal(); |
| 594 | } |
| 595 | |
Zhongxing Xu | ccb1616 | 2009-05-06 08:08:27 +0000 | [diff] [blame] | 596 | if (isa<ElementRegion>(R)) { |
| 597 | return UnknownVal(); |
| 598 | } |
| 599 | |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 600 | assert(0 && "Other regions are not supported yet."); |
Ted Kremenek | a21362d | 2009-01-06 19:12:06 +0000 | [diff] [blame] | 601 | return UnknownVal(); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 602 | } |
| 603 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 604 | const GRState *RegionStoreManager::setExtent(const GRState *state, |
| 605 | const MemRegion *region, |
| 606 | SVal extent) { |
| 607 | return state->set<RegionExtents>(region, extent); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 608 | } |
| 609 | |
| 610 | //===----------------------------------------------------------------------===// |
| 611 | // Location and region casting. |
| 612 | //===----------------------------------------------------------------------===// |
| 613 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 614 | /// ArrayToPointer - Emulates the "decay" of an array to a pointer |
| 615 | /// type. 'Array' represents the lvalue of the array being decayed |
| 616 | /// to a pointer, and the returned SVal represents the decayed |
| 617 | /// version of that lvalue (i.e., a pointer to the first element of |
| 618 | /// the array). This is called by GRExprEngine when evaluating casts |
| 619 | /// from arrays to pointers. |
Zhongxing Xu | f1d537f | 2009-03-30 05:55:46 +0000 | [diff] [blame] | 620 | SVal RegionStoreManager::ArrayToPointer(Loc Array) { |
Ted Kremenek | abb042f | 2008-12-13 19:24:37 +0000 | [diff] [blame] | 621 | if (!isa<loc::MemRegionVal>(Array)) |
| 622 | return UnknownVal(); |
| 623 | |
| 624 | const MemRegion* R = cast<loc::MemRegionVal>(&Array)->getRegion(); |
| 625 | const TypedRegion* ArrayR = dyn_cast<TypedRegion>(R); |
| 626 | |
Ted Kremenek | bbee1a7 | 2009-01-13 01:03:27 +0000 | [diff] [blame] | 627 | if (!ArrayR) |
Ted Kremenek | abb042f | 2008-12-13 19:24:37 +0000 | [diff] [blame] | 628 | return UnknownVal(); |
| 629 | |
Zhongxing Xu | a82d8aa | 2009-05-09 03:57:34 +0000 | [diff] [blame] | 630 | // Strip off typedefs from the ArrayRegion's ValueType. |
| 631 | QualType T = ArrayR->getValueType(getContext())->getDesugaredType(); |
Ted Kremenek | f936f45 | 2009-05-04 06:18:28 +0000 | [diff] [blame] | 632 | ArrayType *AT = cast<ArrayType>(T); |
| 633 | T = AT->getElementType(); |
| 634 | |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 635 | nonloc::ConcreteInt Idx(getBasicVals().getZeroWithPtrWidth(false)); |
Zhongxing Xu | 143b2fc | 2009-06-16 09:55:50 +0000 | [diff] [blame] | 636 | ElementRegion* ER = MRMgr.getElementRegion(T, Idx, ArrayR, getContext()); |
Zhongxing Xu | 0b7e642 | 2008-10-26 02:23:57 +0000 | [diff] [blame] | 637 | |
| 638 | return loc::MemRegionVal(ER); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 639 | } |
| 640 | |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 641 | RegionStoreManager::CastResult |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 642 | RegionStoreManager::CastRegion(const GRState *state, const MemRegion* R, |
Zhongxing Xu | 41fd018 | 2009-05-06 11:51:48 +0000 | [diff] [blame] | 643 | QualType CastToTy) { |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 644 | |
| 645 | ASTContext& Ctx = StateMgr.getContext(); |
| 646 | |
| 647 | // We need to know the real type of CastToTy. |
| 648 | QualType ToTy = Ctx.getCanonicalType(CastToTy); |
| 649 | |
| 650 | // Check cast to ObjCQualifiedID type. |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 651 | if (ToTy->isObjCQualifiedIdType()) { |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 652 | // FIXME: Record the type information aside. |
| 653 | return CastResult(state, R); |
| 654 | } |
| 655 | |
| 656 | // CodeTextRegion should be cast to only function pointer type. |
| 657 | if (isa<CodeTextRegion>(R)) { |
Zhongxing Xu | 99823a7 | 2009-06-22 08:36:10 +0000 | [diff] [blame] | 658 | assert(CastToTy->isFunctionPointerType() || CastToTy->isBlockPointerType() |
| 659 | || (CastToTy->isPointerType() |
| 660 | && CastToTy->getAsPointerType()->getPointeeType()->isVoidType())); |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 661 | return CastResult(state, R); |
| 662 | } |
| 663 | |
Zhongxing Xu | db3a098 | 2009-05-09 10:03:08 +0000 | [diff] [blame] | 664 | // Now assume we are casting from pointer to pointer. Other cases should |
| 665 | // already be handled. |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 666 | QualType PointeeTy = cast<PointerType>(ToTy.getTypePtr())->getPointeeType(); |
| 667 | |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 668 | // Process region cast according to the kind of the region being cast. |
| 669 | |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 670 | // FIXME: Need to handle arbitrary downcasts. |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 671 | if (isa<SymbolicRegion>(R) || isa<AllocaRegion>(R)) { |
Zhongxing Xu | ce76078 | 2009-05-09 13:20:07 +0000 | [diff] [blame] | 672 | state = setCastType(state, R, ToTy); |
| 673 | return CastResult(state, R); |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 674 | } |
| 675 | |
| 676 | // VarRegion, ElementRegion, and FieldRegion has an inherent type. Normally |
| 677 | // they should not be cast. We only layer an ElementRegion when the cast-to |
| 678 | // pointee type is of smaller size. In other cases, we return the original |
| 679 | // VarRegion. |
| 680 | if (isa<VarRegion>(R) || isa<ElementRegion>(R) || isa<FieldRegion>(R) |
| 681 | || isa<ObjCIvarRegion>(R) || isa<CompoundLiteralRegion>(R)) { |
Zhongxing Xu | 2572eda | 2009-05-08 07:28:25 +0000 | [diff] [blame] | 682 | // If the pointee type is incomplete, do not compute its size, and return |
| 683 | // the original region. |
| 684 | if (const RecordType *RT = dyn_cast<RecordType>(PointeeTy.getTypePtr())) { |
| 685 | const RecordDecl *D = RT->getDecl(); |
| 686 | if (!D->getDefinition(getContext())) |
| 687 | return CastResult(state, R); |
| 688 | } |
| 689 | |
Zhongxing Xu | a82d8aa | 2009-05-09 03:57:34 +0000 | [diff] [blame] | 690 | QualType ObjTy = cast<TypedRegion>(R)->getValueType(getContext()); |
Zhongxing Xu | fb1e331 | 2009-05-08 02:12:59 +0000 | [diff] [blame] | 691 | uint64_t PointeeTySize = getContext().getTypeSize(PointeeTy); |
| 692 | uint64_t ObjTySize = getContext().getTypeSize(ObjTy); |
| 693 | |
Zhongxing Xu | 5bf3287 | 2009-05-09 15:34:29 +0000 | [diff] [blame] | 694 | if ((PointeeTySize > 0 && PointeeTySize < ObjTySize) || |
Zhongxing Xu | 88c675f | 2009-06-18 06:29:10 +0000 | [diff] [blame] | 695 | (ObjTy->isAggregateType() && PointeeTy->isScalarType()) || |
| 696 | ObjTySize == 0 /* R has 'void*' type. */) { |
Zhongxing Xu | 2079494 | 2009-05-06 08:33:50 +0000 | [diff] [blame] | 697 | // Record the cast type of the region. |
| 698 | state = setCastType(state, R, ToTy); |
| 699 | |
Zhongxing Xu | ccb1616 | 2009-05-06 08:08:27 +0000 | [diff] [blame] | 700 | SVal Idx = ValMgr.makeZeroArrayIndex(); |
Zhongxing Xu | 143b2fc | 2009-06-16 09:55:50 +0000 | [diff] [blame] | 701 | ElementRegion* ER = MRMgr.getElementRegion(PointeeTy, Idx,R,getContext()); |
Zhongxing Xu | ccb1616 | 2009-05-06 08:08:27 +0000 | [diff] [blame] | 702 | return CastResult(state, ER); |
Zhongxing Xu | 88c675f | 2009-06-18 06:29:10 +0000 | [diff] [blame] | 703 | } else { |
| 704 | state = setCastType(state, R, ToTy); |
Zhongxing Xu | ccb1616 | 2009-05-06 08:08:27 +0000 | [diff] [blame] | 705 | return CastResult(state, R); |
Zhongxing Xu | 88c675f | 2009-06-18 06:29:10 +0000 | [diff] [blame] | 706 | } |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 707 | } |
| 708 | |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 709 | if (isa<ObjCObjectRegion>(R)) { |
| 710 | return CastResult(state, R); |
| 711 | } |
| 712 | |
| 713 | assert(0 && "Unprocessed region."); |
Daniel Dunbar | 4e60900 | 2009-05-18 16:48:48 +0000 | [diff] [blame] | 714 | return 0; |
Zhongxing Xu | 8898059 | 2009-05-06 02:42:32 +0000 | [diff] [blame] | 715 | } |
| 716 | |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 717 | //===----------------------------------------------------------------------===// |
| 718 | // Pointer arithmetic. |
| 719 | //===----------------------------------------------------------------------===// |
| 720 | |
Zhongxing Xu | 262fd03 | 2009-05-20 09:00:16 +0000 | [diff] [blame] | 721 | SVal RegionStoreManager::EvalBinOp(const GRState *state, |
Ted Kremenek | 5c73462 | 2009-06-26 00:41:43 +0000 | [diff] [blame] | 722 | BinaryOperator::Opcode Op, Loc L, NonLoc R, |
| 723 | QualType resultTy) { |
Zhongxing Xu | c4761f5 | 2009-05-09 15:18:12 +0000 | [diff] [blame] | 724 | // Assume the base location is MemRegionVal. |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 725 | if (!isa<loc::MemRegionVal>(L)) |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 726 | return UnknownVal(); |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 727 | |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 728 | const MemRegion* MR = cast<loc::MemRegionVal>(L).getRegion(); |
Zhongxing Xu | c4761f5 | 2009-05-09 15:18:12 +0000 | [diff] [blame] | 729 | const ElementRegion *ER = 0; |
Zhongxing Xu | 262fd03 | 2009-05-20 09:00:16 +0000 | [diff] [blame] | 730 | |
| 731 | // If the operand is a symbolic or alloca region, create the first element |
| 732 | // region on it. |
Zhongxing Xu | c4761f5 | 2009-05-09 15:18:12 +0000 | [diff] [blame] | 733 | if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR)) { |
Zhongxing Xu | 005f07b | 2009-06-19 04:51:14 +0000 | [diff] [blame] | 734 | QualType T; |
| 735 | // If the SymbolicRegion was cast to another type, use that type. |
| 736 | if (const QualType *t = state->get<RegionCasts>(SR)) { |
| 737 | T = *t; |
| 738 | } else { |
| 739 | // Otherwise use the symbol's type. |
| 740 | SymbolRef Sym = SR->getSymbol(); |
| 741 | T = Sym->getType(getContext()); |
| 742 | } |
Zhongxing Xu | 53454dc | 2009-06-12 03:59:12 +0000 | [diff] [blame] | 743 | QualType EleTy = T->getAsPointerType()->getPointeeType(); |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 744 | |
Zhongxing Xu | c4761f5 | 2009-05-09 15:18:12 +0000 | [diff] [blame] | 745 | SVal ZeroIdx = ValMgr.makeZeroArrayIndex(); |
Zhongxing Xu | 143b2fc | 2009-06-16 09:55:50 +0000 | [diff] [blame] | 746 | ER = MRMgr.getElementRegion(EleTy, ZeroIdx, SR, getContext()); |
Zhongxing Xu | 262fd03 | 2009-05-20 09:00:16 +0000 | [diff] [blame] | 747 | } |
| 748 | else if (const AllocaRegion *AR = dyn_cast<AllocaRegion>(MR)) { |
| 749 | // Get the alloca region's current cast type. |
Zhongxing Xu | 262fd03 | 2009-05-20 09:00:16 +0000 | [diff] [blame] | 750 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 751 | |
| 752 | GRStateTrait<RegionCasts>::lookup_type T = state->get<RegionCasts>(AR); |
Zhongxing Xu | 262fd03 | 2009-05-20 09:00:16 +0000 | [diff] [blame] | 753 | assert(T && "alloca region has no type."); |
| 754 | QualType EleTy = cast<PointerType>(T->getTypePtr())->getPointeeType(); |
| 755 | SVal ZeroIdx = ValMgr.makeZeroArrayIndex(); |
Zhongxing Xu | 143b2fc | 2009-06-16 09:55:50 +0000 | [diff] [blame] | 756 | ER = MRMgr.getElementRegion(EleTy, ZeroIdx, AR, getContext()); |
Zhongxing Xu | 262fd03 | 2009-05-20 09:00:16 +0000 | [diff] [blame] | 757 | } |
Zhongxing Xu | 5414a5c | 2009-06-21 13:24:24 +0000 | [diff] [blame] | 758 | else if (isa<FieldRegion>(MR)) { |
| 759 | // Not track pointer arithmetic on struct fields. |
| 760 | return UnknownVal(); |
| 761 | } |
| 762 | else { |
Zhongxing Xu | c4761f5 | 2009-05-09 15:18:12 +0000 | [diff] [blame] | 763 | ER = cast<ElementRegion>(MR); |
Zhongxing Xu | 5414a5c | 2009-06-21 13:24:24 +0000 | [diff] [blame] | 764 | } |
Zhongxing Xu | 2b1dc17 | 2009-03-11 07:43:49 +0000 | [diff] [blame] | 765 | |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 766 | SVal Idx = ER->getIndex(); |
| 767 | |
| 768 | nonloc::ConcreteInt* Base = dyn_cast<nonloc::ConcreteInt>(&Idx); |
| 769 | nonloc::ConcreteInt* Offset = dyn_cast<nonloc::ConcreteInt>(&R); |
| 770 | |
| 771 | // Only support concrete integer indexes for now. |
| 772 | if (Base && Offset) { |
Ted Kremenek | 610e81d | 2009-03-13 15:35:24 +0000 | [diff] [blame] | 773 | // FIXME: For now, convert the signedness and bitwidth of offset in case |
| 774 | // they don't match. This can result from pointer arithmetic. In reality, |
| 775 | // we should figure out what are the proper semantics and implement them. |
| 776 | // |
Ted Kremenek | 1060a3c | 2009-03-13 15:39:16 +0000 | [diff] [blame] | 777 | // This addresses the test case test/Analysis/ptr-arith.c |
| 778 | // |
Ted Kremenek | 610e81d | 2009-03-13 15:35:24 +0000 | [diff] [blame] | 779 | nonloc::ConcreteInt OffConverted(getBasicVals().Convert(Base->getValue(), |
| 780 | Offset->getValue())); |
Ted Kremenek | 6c07bdb | 2009-06-26 00:05:51 +0000 | [diff] [blame] | 781 | SVal NewIdx = Base->evalBinOp(ValMgr, Op, OffConverted); |
Ted Kremenek | f936f45 | 2009-05-04 06:18:28 +0000 | [diff] [blame] | 782 | const MemRegion* NewER = |
Zhongxing Xu | 143b2fc | 2009-06-16 09:55:50 +0000 | [diff] [blame] | 783 | MRMgr.getElementRegion(ER->getElementType(), NewIdx,ER->getSuperRegion(), |
| 784 | getContext()); |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 785 | return ValMgr.makeLoc(NewER); |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 786 | |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 787 | } |
| 788 | |
| 789 | return UnknownVal(); |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 790 | } |
| 791 | |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 792 | //===----------------------------------------------------------------------===// |
| 793 | // Loading values from regions. |
| 794 | //===----------------------------------------------------------------------===// |
| 795 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 796 | SVal RegionStoreManager::Retrieve(const GRState *state, Loc L, QualType T) { |
| 797 | |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 798 | assert(!isa<UnknownVal>(L) && "location unknown"); |
| 799 | assert(!isa<UndefinedVal>(L) && "location undefined"); |
| 800 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 801 | // FIXME: Is this even possible? Shouldn't this be treated as a null |
| 802 | // dereference at a higher level? |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 803 | if (isa<loc::ConcreteInt>(L)) |
| 804 | return UndefinedVal(); |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 805 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 806 | const MemRegion *MR = cast<loc::MemRegionVal>(L).getRegion(); |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 807 | |
Zhongxing Xu | 9184412 | 2009-05-20 09:18:48 +0000 | [diff] [blame] | 808 | // FIXME: return symbolic value for these cases. |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 809 | // Example: |
| 810 | // void f(int* p) { int x = *p; } |
Zhongxing Xu | 9184412 | 2009-05-20 09:18:48 +0000 | [diff] [blame] | 811 | // char* p = alloca(); |
| 812 | // read(p); |
| 813 | // c = *p; |
| 814 | if (isa<SymbolicRegion>(MR) || isa<AllocaRegion>(MR)) |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 815 | return UnknownVal(); |
| 816 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 817 | // FIXME: Perhaps this method should just take a 'const MemRegion*' argument |
| 818 | // instead of 'Loc', and have the other Loc cases handled at a higher level. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 819 | const TypedRegion *R = cast<TypedRegion>(MR); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 820 | assert(R && "bad region"); |
| 821 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 822 | // FIXME: We should eventually handle funny addressing. e.g.: |
| 823 | // |
| 824 | // int x = ...; |
| 825 | // int *p = &x; |
| 826 | // char *q = (char*) p; |
| 827 | // char c = *q; // returns the first byte of 'x'. |
| 828 | // |
| 829 | // Such funny addressing will occur due to layering of regions. |
| 830 | |
Zhongxing Xu | a82d8aa | 2009-05-09 03:57:34 +0000 | [diff] [blame] | 831 | QualType RTy = R->getValueType(getContext()); |
Zhongxing Xu | 3e001f3 | 2009-05-03 00:27:40 +0000 | [diff] [blame] | 832 | |
Zhongxing Xu | 1038f9f | 2009-03-09 09:15:51 +0000 | [diff] [blame] | 833 | if (RTy->isStructureType()) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 834 | return RetrieveStruct(state, R); |
Zhongxing Xu | 3e001f3 | 2009-05-03 00:27:40 +0000 | [diff] [blame] | 835 | |
| 836 | if (RTy->isArrayType()) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 837 | return RetrieveArray(state, R); |
Zhongxing Xu | 3e001f3 | 2009-05-03 00:27:40 +0000 | [diff] [blame] | 838 | |
Zhongxing Xu | 1038f9f | 2009-03-09 09:15:51 +0000 | [diff] [blame] | 839 | // FIXME: handle Vector types. |
| 840 | if (RTy->isVectorType()) |
Ted Kremenek | 265a305 | 2009-02-24 02:23:11 +0000 | [diff] [blame] | 841 | return UnknownVal(); |
Zhongxing Xu | 99c2030 | 2009-06-28 14:16:39 +0000 | [diff] [blame] | 842 | |
| 843 | if (const FieldRegion* FR = dyn_cast<FieldRegion>(R)) |
| 844 | return RetrieveField(state, FR); |
| 845 | |
| 846 | if (const ElementRegion* ER = dyn_cast<ElementRegion>(R)) |
| 847 | return RetrieveElement(state, ER); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 848 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 849 | RegionBindingsTy B = GetRegionBindings(state->getStore()); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 850 | RegionBindingsTy::data_type* V = B.lookup(R); |
| 851 | |
| 852 | // Check if the region has a binding. |
| 853 | if (V) |
| 854 | return *V; |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 855 | |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 856 | if (const ObjCIvarRegion *IVR = dyn_cast<ObjCIvarRegion>(R)) { |
| 857 | const MemRegion *SR = IVR->getSuperRegion(); |
| 858 | |
| 859 | // If the super region is 'self' then return the symbol representing |
| 860 | // the value of the ivar upon entry to the method. |
| 861 | if (SR == SelfRegion) { |
| 862 | // FIXME: Do we need to handle the case where the super region |
| 863 | // has a view? We want to canonicalize the bindings. |
Zhongxing Xu | d9b6ad6 | 2009-05-09 04:08:27 +0000 | [diff] [blame] | 864 | return ValMgr.getRegionValueSymbolVal(R); |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 865 | } |
| 866 | |
| 867 | // Otherwise, we need a new symbol. For now return Unknown. |
| 868 | return UnknownVal(); |
| 869 | } |
Zhongxing Xu | 562c4d9 | 2009-01-23 11:22:12 +0000 | [diff] [blame] | 870 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 871 | // The location does not have a bound value. This means that it has |
| 872 | // the value it had upon its creation and/or entry to the analyzed |
| 873 | // function/method. These are either symbolic values or 'undefined'. |
| 874 | |
| 875 | // We treat function parameters as symbolic values. |
Ted Kremenek | 6fd8f91 | 2009-01-22 23:43:57 +0000 | [diff] [blame] | 876 | if (const VarRegion* VR = dyn_cast<VarRegion>(R)) { |
| 877 | const VarDecl *VD = VR->getDecl(); |
| 878 | |
Ted Kremenek | cec3525 | 2009-03-04 00:23:05 +0000 | [diff] [blame] | 879 | if (VD == SelfDecl) |
| 880 | return loc::MemRegionVal(getSelfRegion(0)); |
| 881 | |
Ted Kremenek | bb2b433 | 2009-07-02 22:16:42 +0000 | [diff] [blame] | 882 | if (VR->hasGlobalsOrParametersStorage()) |
| 883 | return ValMgr.getRegionValueSymbolValOrUnknown(VR, VD->getType()); |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 884 | } |
Ted Kremenek | 265a305 | 2009-02-24 02:23:11 +0000 | [diff] [blame] | 885 | |
Ted Kremenek | bb7c96f | 2009-06-23 18:17:08 +0000 | [diff] [blame] | 886 | if (R->hasHeapOrStackStorage()) { |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 887 | // All stack variables are considered to have undefined values |
| 888 | // upon creation. All heap allocated blocks are considered to |
| 889 | // have undefined values as well unless they are explicitly bound |
| 890 | // to specific values. |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 891 | return UndefinedVal(); |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 892 | } |
| 893 | |
Zhongxing Xu | 88c675f | 2009-06-18 06:29:10 +0000 | [diff] [blame] | 894 | // If the region is already cast to another type, use that type to create the |
| 895 | // symbol value. |
| 896 | if (const QualType *p = state->get<RegionCasts>(R)) { |
| 897 | QualType T = *p; |
| 898 | RTy = T->getAsPointerType()->getPointeeType(); |
| 899 | } |
| 900 | |
Ted Kremenek | bb2b433 | 2009-07-02 22:16:42 +0000 | [diff] [blame] | 901 | // All other values are symbolic. |
| 902 | return ValMgr.getRegionValueSymbolValOrUnknown(R, RTy); |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 903 | } |
| 904 | |
Zhongxing Xu | c00346f | 2009-06-25 05:29:39 +0000 | [diff] [blame] | 905 | SVal RegionStoreManager::RetrieveElement(const GRState* state, |
| 906 | const ElementRegion* R) { |
| 907 | // Check if the region has a binding. |
| 908 | RegionBindingsTy B = GetRegionBindings(state->getStore()); |
Ted Kremenek | 921109a | 2009-07-01 23:19:52 +0000 | [diff] [blame] | 909 | if (const SVal* V = B.lookup(R)) |
Zhongxing Xu | c00346f | 2009-06-25 05:29:39 +0000 | [diff] [blame] | 910 | return *V; |
| 911 | |
Ted Kremenek | 921109a | 2009-07-01 23:19:52 +0000 | [diff] [blame] | 912 | const MemRegion* superR = R->getSuperRegion(); |
| 913 | |
Zhongxing Xu | c00346f | 2009-06-25 05:29:39 +0000 | [diff] [blame] | 914 | // Check if the region is an element region of a string literal. |
Ted Kremenek | 921109a | 2009-07-01 23:19:52 +0000 | [diff] [blame] | 915 | if (const StringRegion *StrR=dyn_cast<StringRegion>(superR)) { |
Zhongxing Xu | c00346f | 2009-06-25 05:29:39 +0000 | [diff] [blame] | 916 | const StringLiteral *Str = StrR->getStringLiteral(); |
| 917 | SVal Idx = R->getIndex(); |
| 918 | if (nonloc::ConcreteInt *CI = dyn_cast<nonloc::ConcreteInt>(&Idx)) { |
| 919 | int64_t i = CI->getValue().getSExtValue(); |
| 920 | char c; |
| 921 | if (i == Str->getByteLength()) |
| 922 | c = '\0'; |
| 923 | else |
| 924 | c = Str->getStrData()[i]; |
| 925 | return ValMgr.makeIntVal(c, getContext().CharTy); |
| 926 | } |
| 927 | } |
| 928 | |
Zhongxing Xu | 7abe019 | 2009-06-30 12:32:59 +0000 | [diff] [blame] | 929 | // Check if the super region has a default value. |
Ted Kremenek | 921109a | 2009-07-01 23:19:52 +0000 | [diff] [blame] | 930 | if (const SVal *D = state->get<RegionDefaultValue>(superR)) { |
Zhongxing Xu | c00346f | 2009-06-25 05:29:39 +0000 | [diff] [blame] | 931 | if (D->hasConjuredSymbol()) |
| 932 | return ValMgr.getRegionValueSymbolVal(R); |
| 933 | else |
| 934 | return *D; |
| 935 | } |
| 936 | |
Zhongxing Xu | 7abe019 | 2009-06-30 12:32:59 +0000 | [diff] [blame] | 937 | // Check if the super region has a binding. |
Ted Kremenek | 921109a | 2009-07-01 23:19:52 +0000 | [diff] [blame] | 938 | if (B.lookup(superR)) { |
Zhongxing Xu | 7abe019 | 2009-06-30 12:32:59 +0000 | [diff] [blame] | 939 | // We do not extract the bit value from super region for now. |
Zhongxing Xu | 8834af3 | 2009-07-03 06:11:41 +0000 | [diff] [blame^] | 940 | return UnknownVal(); |
Zhongxing Xu | 7abe019 | 2009-06-30 12:32:59 +0000 | [diff] [blame] | 941 | } |
Ted Kremenek | 921109a | 2009-07-01 23:19:52 +0000 | [diff] [blame] | 942 | |
| 943 | if (R->hasHeapStorage()) { |
| 944 | // FIXME: If the region has heap storage and we know nothing special |
| 945 | // about its bindings, should we instead return UnknownVal? Seems like |
| 946 | // we should only return UndefinedVal in the cases where we know the value |
| 947 | // will be undefined. |
Zhongxing Xu | c00346f | 2009-06-25 05:29:39 +0000 | [diff] [blame] | 948 | return UndefinedVal(); |
Ted Kremenek | 921109a | 2009-07-01 23:19:52 +0000 | [diff] [blame] | 949 | } |
| 950 | |
Ted Kremenek | dc14726 | 2009-07-02 22:02:15 +0000 | [diff] [blame] | 951 | if (R->hasStackStorage() && !R->hasParametersStorage()) { |
Ted Kremenek | 921109a | 2009-07-01 23:19:52 +0000 | [diff] [blame] | 952 | // Currently we don't reason specially about Clang-style vectors. Check |
| 953 | // if superR is a vector and if so return Unknown. |
| 954 | if (const TypedRegion *typedSuperR = dyn_cast<TypedRegion>(superR)) { |
| 955 | if (typedSuperR->getValueType(getContext())->isVectorType()) |
| 956 | return UnknownVal(); |
| 957 | } |
| 958 | |
| 959 | return UndefinedVal(); |
| 960 | } |
Zhongxing Xu | c00346f | 2009-06-25 05:29:39 +0000 | [diff] [blame] | 961 | |
| 962 | QualType Ty = R->getValueType(getContext()); |
| 963 | |
| 964 | // If the region is already cast to another type, use that type to create the |
| 965 | // symbol value. |
| 966 | if (const QualType *p = state->get<RegionCasts>(R)) |
| 967 | Ty = (*p)->getAsPointerType()->getPointeeType(); |
| 968 | |
Ted Kremenek | bb2b433 | 2009-07-02 22:16:42 +0000 | [diff] [blame] | 969 | return ValMgr.getRegionValueSymbolValOrUnknown(R, Ty); |
Zhongxing Xu | c00346f | 2009-06-25 05:29:39 +0000 | [diff] [blame] | 970 | } |
| 971 | |
Zhongxing Xu | 490b0f0 | 2009-06-25 04:50:44 +0000 | [diff] [blame] | 972 | SVal RegionStoreManager::RetrieveField(const GRState* state, |
| 973 | const FieldRegion* R) { |
| 974 | QualType Ty = R->getValueType(getContext()); |
| 975 | |
| 976 | // Check if the region has a binding. |
| 977 | RegionBindingsTy B = GetRegionBindings(state->getStore()); |
Ted Kremenek | 8b2ba31 | 2009-07-01 23:30:34 +0000 | [diff] [blame] | 978 | if (const SVal* V = B.lookup(R)) |
Zhongxing Xu | 490b0f0 | 2009-06-25 04:50:44 +0000 | [diff] [blame] | 979 | return *V; |
| 980 | |
Ted Kremenek | 8b2ba31 | 2009-07-01 23:30:34 +0000 | [diff] [blame] | 981 | const MemRegion* superR = R->getSuperRegion(); |
| 982 | if (const SVal* D = state->get<RegionDefaultValue>(superR)) { |
Zhongxing Xu | 490b0f0 | 2009-06-25 04:50:44 +0000 | [diff] [blame] | 983 | if (D->hasConjuredSymbol()) |
| 984 | return ValMgr.getRegionValueSymbolVal(R); |
| 985 | |
| 986 | if (D->isZeroConstant()) |
| 987 | return ValMgr.makeZeroVal(Ty); |
| 988 | |
| 989 | if (D->isUnknown()) |
| 990 | return *D; |
| 991 | |
| 992 | assert(0 && "Unknown default value"); |
| 993 | } |
| 994 | |
Ted Kremenek | dc14726 | 2009-07-02 22:02:15 +0000 | [diff] [blame] | 995 | // FIXME: Is this correct? Should it be UnknownVal? |
| 996 | if (R->hasHeapStorage()) |
| 997 | return UndefinedVal(); |
| 998 | |
| 999 | if (R->hasStackStorage() && !R->hasParametersStorage()) |
Zhongxing Xu | 490b0f0 | 2009-06-25 04:50:44 +0000 | [diff] [blame] | 1000 | return UndefinedVal(); |
| 1001 | |
| 1002 | // If the region is already cast to another type, use that type to create the |
| 1003 | // symbol value. |
| 1004 | if (const QualType *p = state->get<RegionCasts>(R)) { |
| 1005 | QualType tmp = *p; |
| 1006 | Ty = tmp->getAsPointerType()->getPointeeType(); |
| 1007 | } |
| 1008 | |
Ted Kremenek | bb2b433 | 2009-07-02 22:16:42 +0000 | [diff] [blame] | 1009 | // All other values are symbolic. |
| 1010 | return ValMgr.getRegionValueSymbolValOrUnknown(R, Ty); |
Zhongxing Xu | 490b0f0 | 2009-06-25 04:50:44 +0000 | [diff] [blame] | 1011 | } |
| 1012 | |
Zhongxing Xu | 88c675f | 2009-06-18 06:29:10 +0000 | [diff] [blame] | 1013 | SVal RegionStoreManager::RetrieveStruct(const GRState *state, |
| 1014 | const TypedRegion* R){ |
Zhongxing Xu | a82d8aa | 2009-05-09 03:57:34 +0000 | [diff] [blame] | 1015 | QualType T = R->getValueType(getContext()); |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 1016 | assert(T->isStructureType()); |
| 1017 | |
Zhongxing Xu | b7507d1 | 2009-06-11 07:27:30 +0000 | [diff] [blame] | 1018 | const RecordType* RT = T->getAsStructureType(); |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 1019 | RecordDecl* RD = RT->getDecl(); |
| 1020 | assert(RD->isDefinition()); |
| 1021 | |
| 1022 | llvm::ImmutableList<SVal> StructVal = getBasicVals().getEmptySValList(); |
| 1023 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1024 | // FIXME: We shouldn't use a std::vector. If RecordDecl doesn't have a |
| 1025 | // reverse iterator, we should implement one. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1026 | std::vector<FieldDecl *> Fields(RD->field_begin(), RD->field_end()); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1027 | |
Douglas Gregor | e267ff3 | 2008-12-11 20:41:00 +0000 | [diff] [blame] | 1028 | for (std::vector<FieldDecl *>::reverse_iterator Field = Fields.rbegin(), |
| 1029 | FieldEnd = Fields.rend(); |
| 1030 | Field != FieldEnd; ++Field) { |
| 1031 | FieldRegion* FR = MRMgr.getFieldRegion(*Field, R); |
Zhongxing Xu | 3e001f3 | 2009-05-03 00:27:40 +0000 | [diff] [blame] | 1032 | QualType FTy = (*Field)->getType(); |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1033 | SVal FieldValue = Retrieve(state, loc::MemRegionVal(FR), FTy); |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 1034 | StructVal = getBasicVals().consVals(FieldValue, StructVal); |
| 1035 | } |
| 1036 | |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 1037 | return ValMgr.makeCompoundVal(T, StructVal); |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 1038 | } |
| 1039 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1040 | SVal RegionStoreManager::RetrieveArray(const GRState *state, |
| 1041 | const TypedRegion * R) { |
| 1042 | |
Zhongxing Xu | a82d8aa | 2009-05-09 03:57:34 +0000 | [diff] [blame] | 1043 | QualType T = R->getValueType(getContext()); |
Zhongxing Xu | 3e001f3 | 2009-05-03 00:27:40 +0000 | [diff] [blame] | 1044 | ConstantArrayType* CAT = cast<ConstantArrayType>(T.getTypePtr()); |
| 1045 | |
| 1046 | llvm::ImmutableList<SVal> ArrayVal = getBasicVals().getEmptySValList(); |
Zhongxing Xu | 3e001f3 | 2009-05-03 00:27:40 +0000 | [diff] [blame] | 1047 | llvm::APSInt Size(CAT->getSize(), false); |
Zhongxing Xu | 2ee5214 | 2009-05-11 12:48:56 +0000 | [diff] [blame] | 1048 | llvm::APSInt i = getBasicVals().getZeroWithPtrWidth(false); |
Zhongxing Xu | 3e001f3 | 2009-05-03 00:27:40 +0000 | [diff] [blame] | 1049 | |
| 1050 | for (; i < Size; ++i) { |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 1051 | SVal Idx = ValMgr.makeIntVal(i); |
Zhongxing Xu | 143b2fc | 2009-06-16 09:55:50 +0000 | [diff] [blame] | 1052 | ElementRegion* ER = MRMgr.getElementRegion(CAT->getElementType(), Idx, R, |
| 1053 | getContext()); |
Ted Kremenek | f936f45 | 2009-05-04 06:18:28 +0000 | [diff] [blame] | 1054 | QualType ETy = ER->getElementType(); |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1055 | SVal ElementVal = Retrieve(state, loc::MemRegionVal(ER), ETy); |
Zhongxing Xu | 3e001f3 | 2009-05-03 00:27:40 +0000 | [diff] [blame] | 1056 | ArrayVal = getBasicVals().consVals(ElementVal, ArrayVal); |
| 1057 | } |
| 1058 | |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 1059 | return ValMgr.makeCompoundVal(T, ArrayVal); |
Zhongxing Xu | 3e001f3 | 2009-05-03 00:27:40 +0000 | [diff] [blame] | 1060 | } |
| 1061 | |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1062 | //===----------------------------------------------------------------------===// |
| 1063 | // Binding values to regions. |
| 1064 | //===----------------------------------------------------------------------===// |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 1065 | |
Zhongxing Xu | 9c9ca08 | 2008-12-16 02:36:30 +0000 | [diff] [blame] | 1066 | Store RegionStoreManager::Remove(Store store, Loc L) { |
Ted Kremenek | 0964a06 | 2009-01-21 06:57:53 +0000 | [diff] [blame] | 1067 | const MemRegion* R = 0; |
| 1068 | |
| 1069 | if (isa<loc::MemRegionVal>(L)) |
| 1070 | R = cast<loc::MemRegionVal>(L).getRegion(); |
Ted Kremenek | 0964a06 | 2009-01-21 06:57:53 +0000 | [diff] [blame] | 1071 | |
| 1072 | if (R) { |
| 1073 | RegionBindingsTy B = GetRegionBindings(store); |
| 1074 | return RBFactory.Remove(B, R).getRoot(); |
| 1075 | } |
| 1076 | |
| 1077 | return store; |
Zhongxing Xu | 9c9ca08 | 2008-12-16 02:36:30 +0000 | [diff] [blame] | 1078 | } |
| 1079 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1080 | const GRState *RegionStoreManager::Bind(const GRState *state, Loc L, SVal V) { |
Zhongxing Xu | 87453d1 | 2009-06-28 10:16:11 +0000 | [diff] [blame] | 1081 | if (isa<loc::ConcreteInt>(L)) |
| 1082 | return state; |
| 1083 | |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1084 | // If we get here, the location should be a region. |
| 1085 | const MemRegion* R = cast<loc::MemRegionVal>(L).getRegion(); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1086 | |
| 1087 | // Check if the region is a struct region. |
| 1088 | if (const TypedRegion* TR = dyn_cast<TypedRegion>(R)) |
| 1089 | if (TR->getValueType(getContext())->isStructureType()) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1090 | return BindStruct(state, TR, V); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1091 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1092 | RegionBindingsTy B = GetRegionBindings(state->getStore()); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1093 | |
Zhongxing Xu | e4df9c4 | 2009-06-25 05:52:16 +0000 | [diff] [blame] | 1094 | B = RBFactory.Add(B, R, V); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1095 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1096 | return state->makeWithStore(B.getRoot()); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1097 | } |
| 1098 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1099 | const GRState *RegionStoreManager::BindDecl(const GRState *state, |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1100 | const VarDecl* VD, SVal InitVal) { |
Zhongxing Xu | a4f28ff | 2008-11-13 08:41:36 +0000 | [diff] [blame] | 1101 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1102 | QualType T = VD->getType(); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1103 | VarRegion* VR = MRMgr.getVarRegion(VD); |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 1104 | |
Ted Kremenek | 0964a06 | 2009-01-21 06:57:53 +0000 | [diff] [blame] | 1105 | if (T->isArrayType()) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1106 | return BindArray(state, VR, InitVal); |
Ted Kremenek | 0964a06 | 2009-01-21 06:57:53 +0000 | [diff] [blame] | 1107 | if (T->isStructureType()) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1108 | return BindStruct(state, VR, InitVal); |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 1109 | |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 1110 | return Bind(state, ValMgr.makeLoc(VR), InitVal); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 1111 | } |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 1112 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1113 | // FIXME: this method should be merged into Bind(). |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1114 | const GRState * |
| 1115 | RegionStoreManager::BindCompoundLiteral(const GRState *state, |
| 1116 | const CompoundLiteralExpr* CL, |
| 1117 | SVal V) { |
| 1118 | |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 1119 | CompoundLiteralRegion* R = MRMgr.getCompoundLiteralRegion(CL); |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1120 | return Bind(state, loc::MemRegionVal(R), V); |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 1121 | } |
| 1122 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1123 | const GRState *RegionStoreManager::BindArray(const GRState *state, |
| 1124 | const TypedRegion* R, |
| 1125 | SVal Init) { |
| 1126 | |
Zhongxing Xu | a82d8aa | 2009-05-09 03:57:34 +0000 | [diff] [blame] | 1127 | QualType T = R->getValueType(getContext()); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1128 | ConstantArrayType* CAT = cast<ConstantArrayType>(T.getTypePtr()); |
Zhongxing Xu | 087d6c2 | 2009-06-23 05:23:38 +0000 | [diff] [blame] | 1129 | QualType ElementTy = CAT->getElementType(); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1130 | |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1131 | llvm::APSInt Size(CAT->getSize(), false); |
Zhongxing Xu | 087d6c2 | 2009-06-23 05:23:38 +0000 | [diff] [blame] | 1132 | llvm::APSInt i(llvm::APInt::getNullValue(Size.getBitWidth()), false); |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1133 | |
| 1134 | // Check if the init expr is a StringLiteral. |
| 1135 | if (isa<loc::MemRegionVal>(Init)) { |
| 1136 | const MemRegion* InitR = cast<loc::MemRegionVal>(Init).getRegion(); |
| 1137 | const StringLiteral* S = cast<StringRegion>(InitR)->getStringLiteral(); |
| 1138 | const char* str = S->getStrData(); |
| 1139 | unsigned len = S->getByteLength(); |
| 1140 | unsigned j = 0; |
| 1141 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1142 | // Copy bytes from the string literal into the target array. Trailing bytes |
| 1143 | // in the array that are not covered by the string literal are initialized |
| 1144 | // to zero. |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1145 | for (; i < Size; ++i, ++j) { |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1146 | if (j >= len) |
| 1147 | break; |
| 1148 | |
Zhongxing Xu | 3038c5a | 2009-06-23 06:13:19 +0000 | [diff] [blame] | 1149 | SVal Idx = ValMgr.makeIntVal(i); |
Zhongxing Xu | 087d6c2 | 2009-06-23 05:23:38 +0000 | [diff] [blame] | 1150 | ElementRegion* ER = MRMgr.getElementRegion(ElementTy, Idx,R,getContext()); |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1151 | |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 1152 | SVal V = ValMgr.makeIntVal(str[j], sizeof(char)*8, true); |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1153 | state = Bind(state, loc::MemRegionVal(ER), V); |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1154 | } |
| 1155 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1156 | return state; |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1157 | } |
| 1158 | |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1159 | nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(Init); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1160 | nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); |
| 1161 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1162 | for (; i < Size; ++i, ++VI) { |
Zhongxing Xu | 087d6c2 | 2009-06-23 05:23:38 +0000 | [diff] [blame] | 1163 | // The init list might be shorter than the array length. |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1164 | if (VI == VE) |
| 1165 | break; |
| 1166 | |
Zhongxing Xu | 3038c5a | 2009-06-23 06:13:19 +0000 | [diff] [blame] | 1167 | SVal Idx = ValMgr.makeIntVal(i); |
Zhongxing Xu | 087d6c2 | 2009-06-23 05:23:38 +0000 | [diff] [blame] | 1168 | ElementRegion* ER = MRMgr.getElementRegion(ElementTy, Idx, R, getContext()); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1169 | |
| 1170 | if (CAT->getElementType()->isStructureType()) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1171 | state = BindStruct(state, ER, *VI); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1172 | else |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 1173 | state = Bind(state, ValMgr.makeLoc(ER), *VI); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1174 | } |
| 1175 | |
Zhongxing Xu | e3a765f | 2009-06-24 00:56:31 +0000 | [diff] [blame] | 1176 | // If the init list is shorter than the array length, set the array default |
| 1177 | // value. |
| 1178 | if (i < Size) { |
| 1179 | if (ElementTy->isIntegerType()) { |
Zhongxing Xu | 087d6c2 | 2009-06-23 05:23:38 +0000 | [diff] [blame] | 1180 | SVal V = ValMgr.makeZeroVal(ElementTy); |
Zhongxing Xu | e3a765f | 2009-06-24 00:56:31 +0000 | [diff] [blame] | 1181 | state = setDefaultValue(state, R, V); |
Zhongxing Xu | 087d6c2 | 2009-06-23 05:23:38 +0000 | [diff] [blame] | 1182 | } |
| 1183 | } |
| 1184 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1185 | return state; |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1186 | } |
| 1187 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1188 | const GRState * |
| 1189 | RegionStoreManager::BindStruct(const GRState *state, const TypedRegion* R, |
| 1190 | SVal V) { |
| 1191 | |
| 1192 | if (!Features.supportsFields()) |
| 1193 | return state; |
| 1194 | |
Zhongxing Xu | a82d8aa | 2009-05-09 03:57:34 +0000 | [diff] [blame] | 1195 | QualType T = R->getValueType(getContext()); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1196 | assert(T->isStructureType()); |
| 1197 | |
Zhongxing Xu | b13ecdb | 2009-03-12 03:45:35 +0000 | [diff] [blame] | 1198 | const RecordType* RT = T->getAsRecordType(); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1199 | RecordDecl* RD = RT->getDecl(); |
Zhongxing Xu | c45a825 | 2009-03-11 09:07:35 +0000 | [diff] [blame] | 1200 | |
| 1201 | if (!RD->isDefinition()) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1202 | return state; |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1203 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1204 | // We may get non-CompoundVal accidentally due to imprecise cast logic. |
| 1205 | // Ignore them and kill the field values. |
| 1206 | if (V.isUnknown() || !isa<nonloc::CompoundVal>(V)) |
| 1207 | return KillStruct(state, R); |
Zhongxing Xu | 3f6978a | 2009-06-11 09:11:27 +0000 | [diff] [blame] | 1208 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1209 | nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(V); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1210 | nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); |
Zhongxing Xu | dbdf219 | 2009-06-23 05:43:16 +0000 | [diff] [blame] | 1211 | |
| 1212 | RecordDecl::field_iterator FI, FE; |
| 1213 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1214 | for (FI = RD->field_begin(), FE = RD->field_end(); FI != FE; ++FI, ++VI) { |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1215 | |
Zhongxing Xu | dbdf219 | 2009-06-23 05:43:16 +0000 | [diff] [blame] | 1216 | if (VI == VE) |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1217 | break; |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1218 | |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1219 | QualType FTy = (*FI)->getType(); |
| 1220 | FieldRegion* FR = MRMgr.getFieldRegion(*FI, R); |
| 1221 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1222 | if (Loc::IsLocType(FTy) || FTy->isIntegerType()) |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 1223 | state = Bind(state, ValMgr.makeLoc(FR), *VI); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1224 | else if (FTy->isArrayType()) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1225 | state = BindArray(state, FR, *VI); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1226 | else if (FTy->isStructureType()) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1227 | state = BindStruct(state, FR, *VI); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 1228 | } |
| 1229 | |
Zhongxing Xu | dbdf219 | 2009-06-23 05:43:16 +0000 | [diff] [blame] | 1230 | // There may be fewer values in the initialize list than the fields of struct. |
Zhongxing Xu | 490b0f0 | 2009-06-25 04:50:44 +0000 | [diff] [blame] | 1231 | if (FI != FE) |
| 1232 | state = setDefaultValue(state, R, ValMgr.makeIntVal(0, false)); |
Zhongxing Xu | dbdf219 | 2009-06-23 05:43:16 +0000 | [diff] [blame] | 1233 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1234 | return state; |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 1235 | } |
| 1236 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1237 | const GRState *RegionStoreManager::KillStruct(const GRState *state, |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1238 | const TypedRegion* R){ |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1239 | |
Zhongxing Xu | e4df9c4 | 2009-06-25 05:52:16 +0000 | [diff] [blame] | 1240 | // Set the default value of the struct region to "unknown". |
| 1241 | state = state->set<RegionDefaultValue>(R, UnknownVal()); |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1242 | |
| 1243 | // Remove all bindings for the subregions of the struct. |
Zhongxing Xu | e4df9c4 | 2009-06-25 05:52:16 +0000 | [diff] [blame] | 1244 | Store store = state->getStore(); |
| 1245 | RegionBindingsTy B = GetRegionBindings(store); |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1246 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1247 | const MemRegion* R = I.getKey(); |
| 1248 | if (const SubRegion* subRegion = dyn_cast<SubRegion>(R)) |
| 1249 | if (subRegion->isSubRegionOf(R)) |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 1250 | store = Remove(store, ValMgr.makeLoc(subRegion)); |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1251 | } |
| 1252 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1253 | return state->makeWithStore(store); |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1254 | } |
| 1255 | |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1256 | //===----------------------------------------------------------------------===// |
| 1257 | // Region views. |
| 1258 | //===----------------------------------------------------------------------===// |
| 1259 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1260 | const GRState *RegionStoreManager::AddRegionView(const GRState *state, |
| 1261 | const MemRegion* View, |
| 1262 | const MemRegion* Base) { |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 1263 | |
| 1264 | // First, retrieve the region view of the base region. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1265 | const RegionViews* d = state->get<RegionViewMap>(Base); |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1266 | RegionViews L = d ? *d : RVFactory.GetEmptySet(); |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 1267 | |
| 1268 | // Now add View to the region view. |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1269 | L = RVFactory.Add(L, View); |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 1270 | |
| 1271 | // Create a new state with the new region view. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1272 | return state->set<RegionViewMap>(Base, L); |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 1273 | } |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1274 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1275 | const GRState *RegionStoreManager::RemoveRegionView(const GRState *state, |
| 1276 | const MemRegion* View, |
| 1277 | const MemRegion* Base) { |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1278 | // Retrieve the region view of the base region. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1279 | const RegionViews* d = state->get<RegionViewMap>(Base); |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1280 | |
| 1281 | // If the base region has no view, return. |
| 1282 | if (!d) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1283 | return state; |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1284 | |
| 1285 | // Remove the view. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1286 | return state->set<RegionViewMap>(Base, RVFactory.Remove(*d, View)); |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1287 | } |
Zhongxing Xu | 2079494 | 2009-05-06 08:33:50 +0000 | [diff] [blame] | 1288 | |
Zhongxing Xu | 88c675f | 2009-06-18 06:29:10 +0000 | [diff] [blame] | 1289 | const GRState *RegionStoreManager::setCastType(const GRState *state, |
| 1290 | const MemRegion* R, QualType T) { |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1291 | return state->set<RegionCasts>(R, T); |
Zhongxing Xu | 2079494 | 2009-05-06 08:33:50 +0000 | [diff] [blame] | 1292 | } |
Zhongxing Xu | 264e937 | 2009-05-12 10:10:00 +0000 | [diff] [blame] | 1293 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1294 | const GRState *RegionStoreManager::setDefaultValue(const GRState *state, |
| 1295 | const MemRegion* R, SVal V) { |
| 1296 | return state->set<RegionDefaultValue>(R, V); |
Zhongxing Xu | 264e937 | 2009-05-12 10:10:00 +0000 | [diff] [blame] | 1297 | } |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1298 | |
| 1299 | //===----------------------------------------------------------------------===// |
| 1300 | // State pruning. |
| 1301 | //===----------------------------------------------------------------------===// |
| 1302 | |
| 1303 | static void UpdateLiveSymbols(SVal X, SymbolReaper& SymReaper) { |
| 1304 | if (loc::MemRegionVal *XR = dyn_cast<loc::MemRegionVal>(&X)) { |
| 1305 | const MemRegion *R = XR->getRegion(); |
| 1306 | |
| 1307 | while (R) { |
| 1308 | if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R)) { |
| 1309 | SymReaper.markLive(SR->getSymbol()); |
| 1310 | return; |
| 1311 | } |
| 1312 | |
| 1313 | if (const SubRegion *SR = dyn_cast<SubRegion>(R)) { |
| 1314 | R = SR->getSuperRegion(); |
| 1315 | continue; |
| 1316 | } |
| 1317 | |
| 1318 | break; |
| 1319 | } |
| 1320 | |
| 1321 | return; |
| 1322 | } |
| 1323 | |
| 1324 | for (SVal::symbol_iterator SI=X.symbol_begin(), SE=X.symbol_end();SI!=SE;++SI) |
| 1325 | SymReaper.markLive(*SI); |
| 1326 | } |
| 1327 | |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1328 | Store RegionStoreManager::RemoveDeadBindings(const GRState *state, Stmt* Loc, |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1329 | SymbolReaper& SymReaper, |
| 1330 | llvm::SmallVectorImpl<const MemRegion*>& RegionRoots) |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1331 | { |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1332 | Store store = state->getStore(); |
| 1333 | RegionBindingsTy B = GetRegionBindings(store); |
| 1334 | |
| 1335 | // Lazily constructed backmap from MemRegions to SubRegions. |
| 1336 | typedef llvm::ImmutableSet<const MemRegion*> SubRegionsTy; |
| 1337 | typedef llvm::ImmutableMap<const MemRegion*, SubRegionsTy> SubRegionsMapTy; |
| 1338 | |
| 1339 | // FIXME: As a future optimization we can modifiy BumpPtrAllocator to have |
| 1340 | // the ability to reuse memory. This way we can keep TmpAlloc around as |
| 1341 | // an instance variable of RegionStoreManager (avoiding repeated malloc |
| 1342 | // overhead). |
| 1343 | llvm::BumpPtrAllocator TmpAlloc; |
| 1344 | |
| 1345 | // Factory objects. |
| 1346 | SubRegionsMapTy::Factory SubRegMapF(TmpAlloc); |
| 1347 | SubRegionsTy::Factory SubRegF(TmpAlloc); |
| 1348 | |
| 1349 | // The backmap from regions to subregions. |
| 1350 | SubRegionsMapTy SubRegMap = SubRegMapF.GetEmptyMap(); |
| 1351 | |
| 1352 | // Do a pass over the regions in the store. For VarRegions we check if |
| 1353 | // the variable is still live and if so add it to the list of live roots. |
Ted Kremenek | 67f2853 | 2009-06-17 22:02:04 +0000 | [diff] [blame] | 1354 | // For other regions we populate our region backmap. |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1355 | llvm::SmallVector<const MemRegion*, 10> IntermediateRoots; |
| 1356 | |
| 1357 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
| 1358 | IntermediateRoots.push_back(I.getKey()); |
| 1359 | } |
| 1360 | |
| 1361 | while (!IntermediateRoots.empty()) { |
| 1362 | const MemRegion* R = IntermediateRoots.back(); |
| 1363 | IntermediateRoots.pop_back(); |
| 1364 | |
| 1365 | if (const VarRegion* VR = dyn_cast<VarRegion>(R)) { |
Zhongxing Xu | 7abe019 | 2009-06-30 12:32:59 +0000 | [diff] [blame] | 1366 | if (SymReaper.isLive(Loc, VR->getDecl())) { |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1367 | RegionRoots.push_back(VR); // This is a live "root". |
Zhongxing Xu | 7abe019 | 2009-06-30 12:32:59 +0000 | [diff] [blame] | 1368 | } |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1369 | } |
| 1370 | else if (const SymbolicRegion* SR = dyn_cast<SymbolicRegion>(R)) { |
| 1371 | if (SymReaper.isLive(SR->getSymbol())) |
| 1372 | RegionRoots.push_back(SR); |
| 1373 | } |
| 1374 | else { |
| 1375 | // Get the super region for R. |
Ted Kremenek | 8b2ba31 | 2009-07-01 23:30:34 +0000 | [diff] [blame] | 1376 | const MemRegion* superR = cast<SubRegion>(R)->getSuperRegion(); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1377 | |
| 1378 | // Get the current set of subregions for SuperR. |
Ted Kremenek | 8b2ba31 | 2009-07-01 23:30:34 +0000 | [diff] [blame] | 1379 | const SubRegionsTy* SRptr = SubRegMap.lookup(superR); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1380 | SubRegionsTy SRs = SRptr ? *SRptr : SubRegF.GetEmptySet(); |
| 1381 | |
| 1382 | // Add R to the subregions of SuperR. |
Ted Kremenek | 8b2ba31 | 2009-07-01 23:30:34 +0000 | [diff] [blame] | 1383 | SubRegMap = SubRegMapF.Add(SubRegMap, superR, SubRegF.Add(SRs, R)); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1384 | |
| 1385 | // Super region may be VarRegion or subregion of another VarRegion. Add it |
| 1386 | // to the work list. |
Ted Kremenek | 8b2ba31 | 2009-07-01 23:30:34 +0000 | [diff] [blame] | 1387 | if (isa<SubRegion>(superR)) |
| 1388 | IntermediateRoots.push_back(superR); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1389 | } |
| 1390 | } |
| 1391 | |
| 1392 | // Process the worklist of RegionRoots. This performs a "mark-and-sweep" |
| 1393 | // of the store. We want to find all live symbols and dead regions. |
| 1394 | llvm::SmallPtrSet<const MemRegion*, 10> Marked; |
| 1395 | |
| 1396 | while (!RegionRoots.empty()) { |
| 1397 | // Dequeue the next region on the worklist. |
| 1398 | const MemRegion* R = RegionRoots.back(); |
| 1399 | RegionRoots.pop_back(); |
| 1400 | |
| 1401 | // Check if we have already processed this region. |
| 1402 | if (Marked.count(R)) continue; |
| 1403 | |
| 1404 | // Mark this region as processed. This is needed for termination in case |
| 1405 | // a region is referenced more than once. |
| 1406 | Marked.insert(R); |
| 1407 | |
| 1408 | // Mark the symbol for any live SymbolicRegion as "live". This means we |
| 1409 | // should continue to track that symbol. |
| 1410 | if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R)) |
| 1411 | SymReaper.markLive(SymR->getSymbol()); |
| 1412 | |
| 1413 | // Get the data binding for R (if any). |
| 1414 | RegionBindingsTy::data_type* Xptr = B.lookup(R); |
| 1415 | if (Xptr) { |
| 1416 | SVal X = *Xptr; |
| 1417 | UpdateLiveSymbols(X, SymReaper); // Update the set of live symbols. |
| 1418 | |
Zhongxing Xu | 7abe019 | 2009-06-30 12:32:59 +0000 | [diff] [blame] | 1419 | // If X is a region, then add it to the RegionRoots. |
| 1420 | if (const MemRegion *RX = X.getAsRegion()) { |
| 1421 | RegionRoots.push_back(RX); |
| 1422 | |
| 1423 | // Mark the super region of the RX as live. |
| 1424 | // e.g.: int x; char *y = (char*) &x; if (*y) ... |
| 1425 | // 'y' => element region. 'x' is its super region. |
| 1426 | // We only add one level super region for now. |
Zhongxing Xu | 5ff8e8c | 2009-07-01 02:12:57 +0000 | [diff] [blame] | 1427 | // FIXME: maybe multiple level of super regions should be added. |
Zhongxing Xu | 7abe019 | 2009-06-30 12:32:59 +0000 | [diff] [blame] | 1428 | if (const SubRegion *SR = dyn_cast<SubRegion>(RX)) { |
| 1429 | RegionRoots.push_back(SR->getSuperRegion()); |
| 1430 | } |
| 1431 | } |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1432 | } |
| 1433 | |
| 1434 | // Get the subregions of R. These are RegionRoots as well since they |
| 1435 | // represent values that are also bound to R. |
| 1436 | const SubRegionsTy* SRptr = SubRegMap.lookup(R); |
| 1437 | if (!SRptr) continue; |
| 1438 | SubRegionsTy SR = *SRptr; |
| 1439 | |
| 1440 | for (SubRegionsTy::iterator I=SR.begin(), E=SR.end(); I!=E; ++I) |
| 1441 | RegionRoots.push_back(*I); |
Zhongxing Xu | 7abe019 | 2009-06-30 12:32:59 +0000 | [diff] [blame] | 1442 | |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1443 | } |
| 1444 | |
| 1445 | // We have now scanned the store, marking reachable regions and symbols |
| 1446 | // as live. We now remove all the regions that are dead from the store |
| 1447 | // as well as update DSymbols with the set symbols that are now dead. |
| 1448 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
| 1449 | const MemRegion* R = I.getKey(); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1450 | // If this region live? Is so, none of its symbols are dead. |
| 1451 | if (Marked.count(R)) |
| 1452 | continue; |
| 1453 | |
| 1454 | // Remove this dead region from the store. |
Zhongxing Xu | d91ee27 | 2009-06-23 09:02:15 +0000 | [diff] [blame] | 1455 | store = Remove(store, ValMgr.makeLoc(R)); |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1456 | |
| 1457 | // Mark all non-live symbols that this region references as dead. |
| 1458 | if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R)) |
| 1459 | SymReaper.maybeDead(SymR->getSymbol()); |
| 1460 | |
| 1461 | SVal X = I.getData(); |
| 1462 | SVal::symbol_iterator SI = X.symbol_begin(), SE = X.symbol_end(); |
| 1463 | for (; SI != SE; ++SI) SymReaper.maybeDead(*SI); |
| 1464 | } |
| 1465 | |
| 1466 | return store; |
| 1467 | } |
| 1468 | |
| 1469 | //===----------------------------------------------------------------------===// |
| 1470 | // Utility methods. |
| 1471 | //===----------------------------------------------------------------------===// |
| 1472 | |
Ted Kremenek | 53ba0b6 | 2009-06-24 23:06:47 +0000 | [diff] [blame] | 1473 | void RegionStoreManager::print(Store store, llvm::raw_ostream& OS, |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1474 | const char* nl, const char *sep) { |
Ted Kremenek | 9af46f5 | 2009-06-16 22:36:44 +0000 | [diff] [blame] | 1475 | RegionBindingsTy B = GetRegionBindings(store); |
| 1476 | OS << "Store:" << nl; |
| 1477 | |
| 1478 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
| 1479 | OS << ' '; I.getKey()->print(OS); OS << " : "; |
| 1480 | I.getData().print(OS); OS << nl; |
| 1481 | } |
| 1482 | } |