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