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" |
| 21 | |
| 22 | #include "llvm/ADT/ImmutableMap.h" |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/ImmutableList.h" |
Zhongxing Xu | a071eb0 | 2008-10-24 06:01:33 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 25 | #include "llvm/Support/Compiler.h" |
| 26 | |
| 27 | using namespace clang; |
| 28 | |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 29 | // Actual Store type. |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 30 | typedef llvm::ImmutableMap<const MemRegion*, SVal> RegionBindingsTy; |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 31 | |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 32 | //===----------------------------------------------------------------------===// |
| 33 | // Region "Views" |
| 34 | //===----------------------------------------------------------------------===// |
| 35 | // |
| 36 | // MemRegions can be layered on top of each other. This GDM entry tracks |
| 37 | // what are the MemRegions that layer a given MemRegion. |
| 38 | // |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 39 | typedef llvm::ImmutableSet<const MemRegion*> RegionViews; |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 40 | namespace { class VISIBILITY_HIDDEN RegionViewMap {}; } |
| 41 | static int RegionViewMapIndex = 0; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 42 | namespace clang { |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 43 | template<> struct GRStateTrait<RegionViewMap> |
| 44 | : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, |
| 45 | RegionViews> > { |
| 46 | |
| 47 | static void* GDMIndex() { return &RegionViewMapIndex; } |
| 48 | }; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 49 | } |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 50 | |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 51 | //===----------------------------------------------------------------------===// |
| 52 | // Region "Extents" |
| 53 | //===----------------------------------------------------------------------===// |
| 54 | // |
| 55 | // MemRegions represent chunks of memory with a size (their "extent"). This |
| 56 | // GDM entry tracks the extents for regions. Extents are in bytes. |
Ted Kremenek | d6cfbe4 | 2009-01-07 22:18:50 +0000 | [diff] [blame] | 57 | // |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 58 | namespace { class VISIBILITY_HIDDEN RegionExtents {}; } |
| 59 | static int RegionExtentsIndex = 0; |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 60 | namespace clang { |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 61 | template<> struct GRStateTrait<RegionExtents> |
| 62 | : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, SVal> > { |
| 63 | static void* GDMIndex() { return &RegionExtentsIndex; } |
| 64 | }; |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 67 | //===----------------------------------------------------------------------===// |
| 68 | // Region "killsets". |
| 69 | //===----------------------------------------------------------------------===// |
| 70 | // |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 71 | // RegionStore lazily adds value bindings to regions when the analyzer handles |
| 72 | // assignment statements. Killsets track which default values have been |
| 73 | // killed, thus distinguishing between "unknown" values and default |
| 74 | // values. Regions are added to killset only when they are assigned "unknown" |
| 75 | // directly, otherwise we should have their value in the region bindings. |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 76 | // |
| 77 | namespace { class VISIBILITY_HIDDEN RegionKills {}; } |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame] | 78 | static int RegionKillsIndex = 0; |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 79 | namespace clang { |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame] | 80 | template<> struct GRStateTrait<RegionKills> |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 81 | : public GRStatePartialTrait< llvm::ImmutableSet<const MemRegion*> > { |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame] | 82 | static void* GDMIndex() { return &RegionKillsIndex; } |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 83 | }; |
| 84 | } |
| 85 | |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 86 | //===----------------------------------------------------------------------===// |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 87 | // Regions with default values. |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 88 | //===----------------------------------------------------------------------===// |
| 89 | // |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 90 | // This GDM entry tracks what regions have a default value if they have no bound |
| 91 | // value and have not been killed. |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 92 | // |
| 93 | namespace { class VISIBILITY_HIDDEN RegionDefaultValue {}; } |
| 94 | static int RegionDefaultValueIndex = 0; |
| 95 | namespace clang { |
| 96 | template<> struct GRStateTrait<RegionDefaultValue> |
| 97 | : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, SVal> > { |
| 98 | static void* GDMIndex() { return &RegionDefaultValueIndex; } |
| 99 | }; |
| 100 | } |
| 101 | |
| 102 | //===----------------------------------------------------------------------===// |
| 103 | // Main RegionStore logic. |
| 104 | //===----------------------------------------------------------------------===// |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 105 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 106 | namespace { |
| 107 | |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 108 | class VISIBILITY_HIDDEN RegionStoreSubRegionMap : public SubRegionMap { |
| 109 | typedef llvm::DenseMap<const MemRegion*, |
| 110 | llvm::ImmutableSet<const MemRegion*> > Map; |
| 111 | |
| 112 | llvm::ImmutableSet<const MemRegion*>::Factory F; |
| 113 | Map M; |
| 114 | |
| 115 | public: |
| 116 | void add(const MemRegion* Parent, const MemRegion* SubRegion) { |
| 117 | Map::iterator I = M.find(Parent); |
| 118 | M.insert(std::make_pair(Parent, |
| 119 | F.Add(I == M.end() ? F.GetEmptySet() : I->second, SubRegion))); |
| 120 | } |
| 121 | |
| 122 | ~RegionStoreSubRegionMap() {} |
| 123 | |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 124 | bool iterSubRegions(const MemRegion* Parent, Visitor& V) const { |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 125 | Map::iterator I = M.find(Parent); |
| 126 | |
| 127 | if (I == M.end()) |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 128 | return true; |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 129 | |
| 130 | llvm::ImmutableSet<const MemRegion*> S = I->second; |
| 131 | for (llvm::ImmutableSet<const MemRegion*>::iterator SI=S.begin(),SE=S.end(); |
| 132 | SI != SE; ++SI) { |
| 133 | if (!V.Visit(Parent, *SI)) |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 134 | return false; |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 135 | } |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 136 | |
| 137 | return true; |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 138 | } |
| 139 | }; |
| 140 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 141 | class VISIBILITY_HIDDEN RegionStoreManager : public StoreManager { |
| 142 | RegionBindingsTy::Factory RBFactory; |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 143 | RegionViews::Factory RVFactory; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 144 | |
Ted Kremenek | 6fd8f91 | 2009-01-22 23:43:57 +0000 | [diff] [blame] | 145 | const MemRegion* SelfRegion; |
| 146 | const ImplicitParamDecl *SelfDecl; |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 147 | |
| 148 | public: |
| 149 | RegionStoreManager(GRStateManager& mgr) |
Ted Kremenek | c62abc1 | 2009-04-21 21:51:34 +0000 | [diff] [blame] | 150 | : StoreManager(mgr), |
Ted Kremenek | d6cfbe4 | 2009-01-07 22:18:50 +0000 | [diff] [blame] | 151 | RBFactory(mgr.getAllocator()), |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 152 | RVFactory(mgr.getAllocator()), |
Ted Kremenek | c62abc1 | 2009-04-21 21:51:34 +0000 | [diff] [blame] | 153 | SelfRegion(0), SelfDecl(0) { |
Ted Kremenek | 6fd8f91 | 2009-01-22 23:43:57 +0000 | [diff] [blame] | 154 | if (const ObjCMethodDecl* MD = |
| 155 | dyn_cast<ObjCMethodDecl>(&StateMgr.getCodeDecl())) |
| 156 | SelfDecl = MD->getSelfDecl(); |
| 157 | } |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 158 | |
| 159 | virtual ~RegionStoreManager() {} |
| 160 | |
Ted Kremenek | 14453bf | 2009-03-03 19:02:42 +0000 | [diff] [blame] | 161 | SubRegionMap* getSubRegionMap(const GRState *state); |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 162 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 163 | const GRState* BindCompoundLiteral(const GRState* St, |
| 164 | const CompoundLiteralExpr* CL, SVal V); |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 165 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 166 | /// getLValueString - Returns an SVal representing the lvalue of a |
| 167 | /// StringLiteral. Within RegionStore a StringLiteral has an |
| 168 | /// associated StringRegion, and the lvalue of a StringLiteral is |
| 169 | /// the lvalue of that region. |
Zhongxing Xu | 143bf82 | 2008-10-25 14:18:57 +0000 | [diff] [blame] | 170 | SVal getLValueString(const GRState* St, const StringLiteral* S); |
| 171 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 172 | /// getLValueCompoundLiteral - Returns an SVal representing the |
| 173 | /// lvalue of a compound literal. Within RegionStore a compound |
| 174 | /// literal has an associated region, and the lvalue of the |
| 175 | /// compound literal is the lvalue of that region. |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 176 | SVal getLValueCompoundLiteral(const GRState* St, const CompoundLiteralExpr*); |
| 177 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 178 | /// getLValueVar - Returns an SVal that represents the lvalue of a |
| 179 | /// variable. Within RegionStore a variable has an associated |
| 180 | /// VarRegion, and the lvalue of the variable is the lvalue of that region. |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 181 | SVal getLValueVar(const GRState* St, const VarDecl* VD); |
| 182 | |
| 183 | SVal getLValueIvar(const GRState* St, const ObjCIvarDecl* D, SVal Base); |
| 184 | |
| 185 | SVal getLValueField(const GRState* St, SVal Base, const FieldDecl* D); |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 186 | |
| 187 | SVal getLValueFieldOrIvar(const GRState* St, SVal Base, const Decl* D); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 188 | |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 189 | SVal getLValueElement(const GRState* St, SVal Base, SVal Offset); |
| 190 | |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 191 | SVal getSizeInElements(const GRState* St, const MemRegion* R); |
| 192 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 193 | /// ArrayToPointer - Emulates the "decay" of an array to a pointer |
| 194 | /// type. 'Array' represents the lvalue of the array being decayed |
| 195 | /// to a pointer, and the returned SVal represents the decayed |
| 196 | /// version of that lvalue (i.e., a pointer to the first element of |
| 197 | /// the array). This is called by GRExprEngine when evaluating |
| 198 | /// casts from arrays to pointers. |
Zhongxing Xu | f1d537f | 2009-03-30 05:55:46 +0000 | [diff] [blame] | 199 | SVal ArrayToPointer(Loc Array); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 200 | |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 201 | SVal EvalBinOp(BinaryOperator::Opcode Op, Loc L, NonLoc R); |
| 202 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 203 | /// The high level logic for this method is this: |
| 204 | /// Retrieve (L) |
| 205 | /// if L has binding |
| 206 | /// return L's binding |
| 207 | /// else if L is in killset |
| 208 | /// return unknown |
| 209 | /// else |
| 210 | /// if L is on stack or heap |
| 211 | /// return undefined |
| 212 | /// else |
| 213 | /// return symbolic |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame] | 214 | SVal Retrieve(const GRState* state, Loc L, QualType T = QualType()); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 215 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 216 | const GRState* Bind(const GRState* St, Loc LV, SVal V); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 217 | |
Zhongxing Xu | 9c9ca08 | 2008-12-16 02:36:30 +0000 | [diff] [blame] | 218 | Store Remove(Store store, Loc LV); |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 219 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 220 | Store getInitialStore() { return RBFactory.GetEmptyMap().getRoot(); } |
Ted Kremenek | 9deb0e3 | 2008-10-24 20:32:16 +0000 | [diff] [blame] | 221 | |
| 222 | /// getSelfRegion - Returns the region for the 'self' (Objective-C) or |
| 223 | /// 'this' object (C++). When used when analyzing a normal function this |
| 224 | /// method returns NULL. |
| 225 | const MemRegion* getSelfRegion(Store) { |
Ted Kremenek | 6fd8f91 | 2009-01-22 23:43:57 +0000 | [diff] [blame] | 226 | if (!SelfDecl) |
| 227 | return 0; |
| 228 | |
| 229 | if (!SelfRegion) { |
| 230 | const ObjCMethodDecl *MD = cast<ObjCMethodDecl>(&StateMgr.getCodeDecl()); |
| 231 | SelfRegion = MRMgr.getObjCObjectRegion(MD->getClassInterface(), |
| 232 | MRMgr.getHeapRegion()); |
| 233 | } |
| 234 | |
| 235 | return SelfRegion; |
Ted Kremenek | 9deb0e3 | 2008-10-24 20:32:16 +0000 | [diff] [blame] | 236 | } |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 237 | |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame] | 238 | /// RemoveDeadBindings - Scans the RegionStore of 'state' for dead values. |
| 239 | /// It returns a new Store with these values removed, and populates LSymbols |
| 240 | // and DSymbols with the known set of live and dead symbols respectively. |
| 241 | Store RemoveDeadBindings(const GRState* state, Stmt* Loc, |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 242 | SymbolReaper& SymReaper, |
| 243 | llvm::SmallVectorImpl<const MemRegion*>& RegionRoots); |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 244 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 245 | const GRState* BindDecl(const GRState* St, const VarDecl* VD, SVal InitVal); |
| 246 | |
| 247 | const GRState* BindDeclWithNoInit(const GRState* St, const VarDecl* VD) { |
| 248 | return St; |
| 249 | } |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 250 | |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 251 | const GRState* setExtent(const GRState* St, const MemRegion* R, SVal Extent); |
| 252 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 253 | static inline RegionBindingsTy GetRegionBindings(Store store) { |
Zhongxing Xu | 9c9ca08 | 2008-12-16 02:36:30 +0000 | [diff] [blame] | 254 | return RegionBindingsTy(static_cast<const RegionBindingsTy::TreeTy*>(store)); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 255 | } |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 256 | |
Zhongxing Xu | 5b8b6f2 | 2008-10-24 04:33:15 +0000 | [diff] [blame] | 257 | void print(Store store, std::ostream& Out, const char* nl, const char *sep); |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 258 | |
| 259 | void iterBindings(Store store, BindingsHandler& f) { |
| 260 | // FIXME: Implement. |
| 261 | } |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 262 | |
| 263 | private: |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 264 | const GRState* BindArray(const GRState* St, const TypedRegion* R, SVal V); |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 265 | |
Zhongxing Xu | 0b242ec | 2008-12-04 01:12:41 +0000 | [diff] [blame] | 266 | /// Retrieve the values in a struct and return a CompoundVal, used when doing |
| 267 | /// struct copy: |
| 268 | /// struct s x, y; |
| 269 | /// x = y; |
| 270 | /// y's value is retrieved by this method. |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 271 | SVal RetrieveStruct(const GRState* St, const TypedRegion* R); |
Zhongxing Xu | 0b242ec | 2008-12-04 01:12:41 +0000 | [diff] [blame] | 272 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 273 | const GRState* BindStruct(const GRState* St, const TypedRegion* R, SVal V); |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 274 | |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 275 | /// KillStruct - Set the entire struct to unknown. |
| 276 | const GRState* KillStruct(const GRState* St, const TypedRegion* R); |
| 277 | |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 278 | // Utility methods. |
| 279 | BasicValueFactory& getBasicVals() { return StateMgr.getBasicVals(); } |
| 280 | ASTContext& getContext() { return StateMgr.getContext(); } |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 281 | SymbolManager& getSymbolManager() { return StateMgr.getSymbolManager(); } |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 282 | |
| 283 | const GRState* AddRegionView(const GRState* St, |
| 284 | const MemRegion* View, const MemRegion* Base); |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 285 | const GRState* RemoveRegionView(const GRState* St, |
| 286 | const MemRegion* View, const MemRegion* Base); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 287 | }; |
| 288 | |
| 289 | } // end anonymous namespace |
| 290 | |
Ted Kremenek | 95c7b00 | 2008-10-24 01:04:59 +0000 | [diff] [blame] | 291 | StoreManager* clang::CreateRegionStoreManager(GRStateManager& StMgr) { |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 292 | return new RegionStoreManager(StMgr); |
Ted Kremenek | 95c7b00 | 2008-10-24 01:04:59 +0000 | [diff] [blame] | 293 | } |
| 294 | |
Ted Kremenek | 14453bf | 2009-03-03 19:02:42 +0000 | [diff] [blame] | 295 | SubRegionMap* RegionStoreManager::getSubRegionMap(const GRState *state) { |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 296 | RegionBindingsTy B = GetRegionBindings(state->getStore()); |
| 297 | RegionStoreSubRegionMap *M = new RegionStoreSubRegionMap(); |
| 298 | |
| 299 | for (RegionBindingsTy::iterator I=B.begin(), E=B.end(); I!=E; ++I) { |
| 300 | if (const SubRegion* R = dyn_cast<SubRegion>(I.getKey())) |
| 301 | M->add(R->getSuperRegion(), R); |
| 302 | } |
| 303 | |
Ted Kremenek | 14453bf | 2009-03-03 19:02:42 +0000 | [diff] [blame] | 304 | return M; |
Ted Kremenek | 59e8f11 | 2009-03-03 01:35:36 +0000 | [diff] [blame] | 305 | } |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 306 | |
| 307 | /// getLValueString - Returns an SVal representing the lvalue of a |
| 308 | /// StringLiteral. Within RegionStore a StringLiteral has an |
| 309 | /// associated StringRegion, and the lvalue of a StringLiteral is the |
| 310 | /// lvalue of that region. |
Zhongxing Xu | 143bf82 | 2008-10-25 14:18:57 +0000 | [diff] [blame] | 311 | SVal RegionStoreManager::getLValueString(const GRState* St, |
| 312 | const StringLiteral* S) { |
| 313 | return loc::MemRegionVal(MRMgr.getStringRegion(S)); |
| 314 | } |
| 315 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 316 | /// getLValueVar - Returns an SVal that represents the lvalue of a |
| 317 | /// variable. Within RegionStore a variable has an associated |
| 318 | /// VarRegion, and the lvalue of the variable is the lvalue of that region. |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 319 | SVal RegionStoreManager::getLValueVar(const GRState* St, const VarDecl* VD) { |
| 320 | return loc::MemRegionVal(MRMgr.getVarRegion(VD)); |
| 321 | } |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 322 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 323 | /// getLValueCompoundLiteral - Returns an SVal representing the lvalue |
| 324 | /// of a compound literal. Within RegionStore a compound literal |
| 325 | /// has an associated region, and the lvalue of the compound literal |
| 326 | /// is the lvalue of that region. |
| 327 | SVal |
| 328 | RegionStoreManager::getLValueCompoundLiteral(const GRState* St, |
| 329 | const CompoundLiteralExpr* CL) { |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 330 | return loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL)); |
| 331 | } |
| 332 | |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 333 | SVal RegionStoreManager::getLValueIvar(const GRState* St, const ObjCIvarDecl* D, |
| 334 | SVal Base) { |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 335 | return getLValueFieldOrIvar(St, Base, D); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | SVal RegionStoreManager::getLValueField(const GRState* St, SVal Base, |
| 339 | const FieldDecl* D) { |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 340 | return getLValueFieldOrIvar(St, Base, D); |
| 341 | } |
| 342 | |
| 343 | SVal RegionStoreManager::getLValueFieldOrIvar(const GRState* St, SVal Base, |
| 344 | const Decl* D) { |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 345 | if (Base.isUnknownOrUndef()) |
| 346 | return Base; |
| 347 | |
| 348 | Loc BaseL = cast<Loc>(Base); |
| 349 | const MemRegion* BaseR = 0; |
| 350 | |
| 351 | switch (BaseL.getSubKind()) { |
| 352 | case loc::MemRegionKind: |
| 353 | BaseR = cast<loc::MemRegionVal>(BaseL).getRegion(); |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 354 | if (const SymbolicRegion* SR = dyn_cast<SymbolicRegion>(BaseR)) { |
| 355 | SymbolRef Sym = SR->getSymbol(); |
| 356 | BaseR = MRMgr.getTypedViewRegion(Sym->getType(getContext()), SR); |
| 357 | } |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 358 | break; |
| 359 | |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 360 | case loc::GotoLabelKind: |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 361 | // These are anormal cases. Flag an undefined value. |
| 362 | return UndefinedVal(); |
| 363 | |
| 364 | case loc::ConcreteIntKind: |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 365 | // While these seem funny, this can happen through casts. |
| 366 | // FIXME: What we should return is the field offset. For example, |
| 367 | // add the field offset to the integer value. That way funny things |
| 368 | // like this work properly: &(((struct foo *) 0xa)->f) |
| 369 | return Base; |
| 370 | |
| 371 | default: |
Zhongxing Xu | 13d1ee2 | 2008-11-07 08:57:30 +0000 | [diff] [blame] | 372 | assert(0 && "Unhandled Base."); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 373 | return Base; |
| 374 | } |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 375 | |
| 376 | // NOTE: We must have this check first because ObjCIvarDecl is a subclass |
| 377 | // of FieldDecl. |
| 378 | if (const ObjCIvarDecl *ID = dyn_cast<ObjCIvarDecl>(D)) |
| 379 | return loc::MemRegionVal(MRMgr.getObjCIvarRegion(ID, BaseR)); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 380 | |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 381 | return loc::MemRegionVal(MRMgr.getFieldRegion(cast<FieldDecl>(D), BaseR)); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 382 | } |
| 383 | |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 384 | SVal RegionStoreManager::getLValueElement(const GRState* St, |
| 385 | SVal Base, SVal Offset) { |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 386 | |
Ted Kremenek | de7ec63 | 2009-03-09 22:44:49 +0000 | [diff] [blame] | 387 | // If the base is an unknown or undefined value, just return it back. |
| 388 | // FIXME: For absolute pointer addresses, we just return that value back as |
| 389 | // well, although in reality we should return the offset added to that |
| 390 | // value. |
| 391 | if (Base.isUnknownOrUndef() || isa<loc::ConcreteInt>(Base)) |
Zhongxing Xu | 4a1513e | 2008-10-27 12:23:17 +0000 | [diff] [blame] | 392 | return Base; |
| 393 | |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 394 | // Only handle integer offsets... for now. |
| 395 | if (!isa<nonloc::ConcreteInt>(Offset)) |
Zhongxing Xu | e4d1393 | 2008-11-13 09:48:44 +0000 | [diff] [blame] | 396 | return UnknownVal(); |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 397 | |
Zhongxing Xu | a48f737 | 2009-02-06 08:44:27 +0000 | [diff] [blame] | 398 | const TypedRegion* BaseRegion = 0; |
| 399 | |
Zhongxing Xu | 3330dcb | 2009-04-10 06:06:13 +0000 | [diff] [blame] | 400 | const MemRegion* R = cast<loc::MemRegionVal>(Base).getRegion(); |
| 401 | if (const SymbolicRegion* SR = dyn_cast<SymbolicRegion>(R)) { |
| 402 | SymbolRef Sym = SR->getSymbol(); |
Ted Kremenek | e8e8648 | 2009-03-30 22:20:54 +0000 | [diff] [blame] | 403 | BaseRegion = MRMgr.getTypedViewRegion(Sym->getType(getContext()), SR); |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 404 | } |
Zhongxing Xu | 3330dcb | 2009-04-10 06:06:13 +0000 | [diff] [blame] | 405 | else |
| 406 | BaseRegion = cast<TypedRegion>(R); |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 407 | |
| 408 | // Pointer of any type can be cast and used as array base. |
| 409 | const ElementRegion *ElemR = dyn_cast<ElementRegion>(BaseRegion); |
| 410 | |
| 411 | if (!ElemR) { |
| 412 | // |
| 413 | // If the base region is not an ElementRegion, create one. |
| 414 | // This can happen in the following example: |
| 415 | // |
| 416 | // char *p = __builtin_alloc(10); |
| 417 | // p[1] = 8; |
| 418 | // |
Ted Kremenek | 0312c0e | 2009-03-01 05:44:08 +0000 | [diff] [blame] | 419 | // Observe that 'p' binds to an TypedViewRegion<AllocaRegion>. |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 420 | // |
Zhongxing Xu | 5ea2ffc | 2009-02-19 08:37:16 +0000 | [diff] [blame] | 421 | |
| 422 | // Offset might be unsigned. We have to convert it to signed ConcreteInt. |
| 423 | if (nonloc::ConcreteInt* CI = dyn_cast<nonloc::ConcreteInt>(&Offset)) { |
| 424 | const llvm::APSInt& OffI = CI->getValue(); |
| 425 | if (OffI.isUnsigned()) { |
| 426 | llvm::APSInt Tmp = OffI; |
| 427 | Tmp.setIsSigned(true); |
| 428 | Offset = NonLoc::MakeVal(getBasicVals(), Tmp); |
| 429 | } |
| 430 | } |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 431 | return loc::MemRegionVal(MRMgr.getElementRegion(Offset, BaseRegion)); |
Zhongxing Xu | e4d1393 | 2008-11-13 09:48:44 +0000 | [diff] [blame] | 432 | } |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 433 | |
| 434 | SVal BaseIdx = ElemR->getIndex(); |
| 435 | |
| 436 | if (!isa<nonloc::ConcreteInt>(BaseIdx)) |
| 437 | return UnknownVal(); |
| 438 | |
| 439 | const llvm::APSInt& BaseIdxI = cast<nonloc::ConcreteInt>(BaseIdx).getValue(); |
| 440 | const llvm::APSInt& OffI = cast<nonloc::ConcreteInt>(Offset).getValue(); |
| 441 | assert(BaseIdxI.isSigned()); |
| 442 | |
| 443 | // FIXME: This appears to be the assumption of this code. We should review |
| 444 | // whether or not BaseIdxI.getBitWidth() < OffI.getBitWidth(). If it |
| 445 | // can't we need to put a comment here. If it can, we should handle it. |
| 446 | assert(BaseIdxI.getBitWidth() >= OffI.getBitWidth()); |
Zhongxing Xu | e4d1393 | 2008-11-13 09:48:44 +0000 | [diff] [blame] | 447 | |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 448 | const TypedRegion *ArrayR = ElemR->getArrayRegion(); |
| 449 | SVal NewIdx; |
| 450 | |
| 451 | if (OffI.isUnsigned() || OffI.getBitWidth() < BaseIdxI.getBitWidth()) { |
| 452 | // 'Offset' might be unsigned. We have to convert it to signed and |
| 453 | // possibly extend it. |
| 454 | llvm::APSInt Tmp = OffI; |
| 455 | |
| 456 | if (OffI.getBitWidth() < BaseIdxI.getBitWidth()) |
| 457 | Tmp.extend(BaseIdxI.getBitWidth()); |
| 458 | |
| 459 | Tmp.setIsSigned(true); |
| 460 | Tmp += BaseIdxI; // Compute the new offset. |
Zhongxing Xu | 5ea2ffc | 2009-02-19 08:37:16 +0000 | [diff] [blame] | 461 | NewIdx = NonLoc::MakeVal(getBasicVals(), Tmp); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 462 | } |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 463 | else |
| 464 | NewIdx = nonloc::ConcreteInt(getBasicVals().getValue(BaseIdxI + OffI)); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 465 | |
Ted Kremenek | a7ac944 | 2009-01-22 20:27:48 +0000 | [diff] [blame] | 466 | return loc::MemRegionVal(MRMgr.getElementRegion(NewIdx, ArrayR)); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 467 | } |
| 468 | |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 469 | SVal RegionStoreManager::getSizeInElements(const GRState* St, |
| 470 | const MemRegion* R) { |
| 471 | if (const VarRegion* VR = dyn_cast<VarRegion>(R)) { |
| 472 | // Get the type of the variable. |
Ted Kremenek | 14553ab | 2009-01-30 00:08:43 +0000 | [diff] [blame] | 473 | QualType T = VR->getDesugaredRValueType(getContext()); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 474 | |
Ted Kremenek | 14553ab | 2009-01-30 00:08:43 +0000 | [diff] [blame] | 475 | // FIXME: Handle variable-length arrays. |
| 476 | if (isa<VariableArrayType>(T)) |
| 477 | return UnknownVal(); |
| 478 | |
| 479 | if (const ConstantArrayType* CAT = dyn_cast<ConstantArrayType>(T)) { |
| 480 | // return the size as signed integer. |
| 481 | return NonLoc::MakeVal(getBasicVals(), CAT->getSize(), false); |
| 482 | } |
| 483 | |
| 484 | // Clients can use ordinary variables as if they were arrays. These |
| 485 | // essentially are arrays of size 1. |
| 486 | return NonLoc::MakeIntVal(getBasicVals(), 1, false); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | if (const StringRegion* SR = dyn_cast<StringRegion>(R)) { |
Zhongxing Xu | 6613d08 | 2008-11-24 02:18:56 +0000 | [diff] [blame] | 490 | const StringLiteral* Str = SR->getStringLiteral(); |
Zhongxing Xu | d0fd3b7 | 2008-11-24 02:30:48 +0000 | [diff] [blame] | 491 | // We intentionally made the size value signed because it participates in |
| 492 | // operations with signed indices. |
Ted Kremenek | 14553ab | 2009-01-30 00:08:43 +0000 | [diff] [blame] | 493 | return NonLoc::MakeIntVal(getBasicVals(), Str->getByteLength()+1, false); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 494 | } |
| 495 | |
Ted Kremenek | 0312c0e | 2009-03-01 05:44:08 +0000 | [diff] [blame] | 496 | if (const TypedViewRegion* ATR = dyn_cast<TypedViewRegion>(R)) { |
Ted Kremenek | 2e84257 | 2009-01-22 23:56:56 +0000 | [diff] [blame] | 497 | #if 0 |
| 498 | // FIXME: This logic doesn't really work, as we can have all sorts of |
| 499 | // weird cases. For example, this crashes on test case 'rdar-6442306-1.m'. |
| 500 | // The weird cases come in when arbitrary casting comes into play, violating |
| 501 | // any type-safe programming. |
| 502 | |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 503 | GRStateRef state(St, StateMgr); |
| 504 | |
| 505 | // Get the size of the super region in bytes. |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 506 | const SVal* Extent = state.get<RegionExtents>(ATR->getSuperRegion()); |
| 507 | assert(Extent && "region extent not exist"); |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 508 | |
| 509 | // Assume it's ConcreteInt for now. |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 510 | llvm::APSInt SSize = cast<nonloc::ConcreteInt>(*Extent).getValue(); |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 511 | |
| 512 | // Get the size of the element in bits. |
Ted Kremenek | 6eddeb1 | 2008-12-13 21:49:13 +0000 | [diff] [blame] | 513 | QualType LvT = ATR->getLValueType(getContext()); |
| 514 | QualType ElemTy = cast<PointerType>(LvT.getTypePtr())->getPointeeType(); |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 515 | |
| 516 | uint64_t X = getContext().getTypeSize(ElemTy); |
| 517 | |
| 518 | const llvm::APSInt& ESize = getBasicVals().getValue(X, SSize.getBitWidth(), |
| 519 | false); |
| 520 | |
| 521 | // Calculate the number of elements. |
| 522 | |
| 523 | // FIXME: What do we do with signed-ness problem? Shall we make all APSInts |
| 524 | // signed? |
| 525 | if (SSize.isUnsigned()) |
| 526 | SSize.setIsSigned(true); |
| 527 | |
| 528 | // FIXME: move this operation into BasicVals. |
| 529 | const llvm::APSInt S = |
| 530 | (SSize * getBasicVals().getValue(8, SSize.getBitWidth(), false)) / ESize; |
| 531 | |
| 532 | return NonLoc::MakeVal(getBasicVals(), S); |
Ted Kremenek | 2e84257 | 2009-01-22 23:56:56 +0000 | [diff] [blame] | 533 | #else |
| 534 | ATR = ATR; |
| 535 | return UnknownVal(); |
| 536 | #endif |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | if (const FieldRegion* FR = dyn_cast<FieldRegion>(R)) { |
| 540 | // FIXME: Unsupported yet. |
| 541 | FR = 0; |
| 542 | return UnknownVal(); |
| 543 | } |
Zhongxing Xu | 369f429 | 2008-11-22 13:23:00 +0000 | [diff] [blame] | 544 | |
Zhongxing Xu | 02ebefb | 2009-02-06 08:51:30 +0000 | [diff] [blame] | 545 | if (isa<SymbolicRegion>(R)) { |
Zhongxing Xu | a48f737 | 2009-02-06 08:44:27 +0000 | [diff] [blame] | 546 | return UnknownVal(); |
| 547 | } |
| 548 | |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 549 | assert(0 && "Other regions are not supported yet."); |
Ted Kremenek | a21362d | 2009-01-06 19:12:06 +0000 | [diff] [blame] | 550 | return UnknownVal(); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 551 | } |
| 552 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 553 | /// ArrayToPointer - Emulates the "decay" of an array to a pointer |
| 554 | /// type. 'Array' represents the lvalue of the array being decayed |
| 555 | /// to a pointer, and the returned SVal represents the decayed |
| 556 | /// version of that lvalue (i.e., a pointer to the first element of |
| 557 | /// the array). This is called by GRExprEngine when evaluating casts |
| 558 | /// from arrays to pointers. |
Zhongxing Xu | f1d537f | 2009-03-30 05:55:46 +0000 | [diff] [blame] | 559 | SVal RegionStoreManager::ArrayToPointer(Loc Array) { |
Ted Kremenek | abb042f | 2008-12-13 19:24:37 +0000 | [diff] [blame] | 560 | if (!isa<loc::MemRegionVal>(Array)) |
| 561 | return UnknownVal(); |
| 562 | |
| 563 | const MemRegion* R = cast<loc::MemRegionVal>(&Array)->getRegion(); |
| 564 | const TypedRegion* ArrayR = dyn_cast<TypedRegion>(R); |
| 565 | |
Ted Kremenek | bbee1a7 | 2009-01-13 01:03:27 +0000 | [diff] [blame] | 566 | if (!ArrayR) |
Ted Kremenek | abb042f | 2008-12-13 19:24:37 +0000 | [diff] [blame] | 567 | return UnknownVal(); |
| 568 | |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 569 | nonloc::ConcreteInt Idx(getBasicVals().getZeroWithPtrWidth(false)); |
Zhongxing Xu | 0b7e642 | 2008-10-26 02:23:57 +0000 | [diff] [blame] | 570 | ElementRegion* ER = MRMgr.getElementRegion(Idx, ArrayR); |
| 571 | |
| 572 | return loc::MemRegionVal(ER); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 573 | } |
| 574 | |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 575 | SVal RegionStoreManager::EvalBinOp(BinaryOperator::Opcode Op, Loc L, NonLoc R) { |
| 576 | // Assume the base location is MemRegionVal(ElementRegion). |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 577 | if (!isa<loc::MemRegionVal>(L)) |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 578 | return UnknownVal(); |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 579 | |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 580 | const MemRegion* MR = cast<loc::MemRegionVal>(L).getRegion(); |
| 581 | if (isa<SymbolicRegion>(MR)) |
| 582 | return UnknownVal(); |
| 583 | |
| 584 | const TypedRegion* TR = cast<TypedRegion>(MR); |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 585 | |
Zhongxing Xu | 2b1dc17 | 2009-03-11 07:43:49 +0000 | [diff] [blame] | 586 | const ElementRegion* ER = dyn_cast<ElementRegion>(TR); |
| 587 | |
| 588 | if (!ER) { |
| 589 | // If the region is not element region, create one with index 0. This can |
| 590 | // happen in the following example: |
| 591 | // char *p = foo(); |
| 592 | // p += 3; |
| 593 | // Note that p binds to a TypedViewRegion(SymbolicRegion). |
| 594 | nonloc::ConcreteInt Idx(getBasicVals().getZeroWithPtrWidth(false)); |
| 595 | ER = MRMgr.getElementRegion(Idx, TR); |
| 596 | } |
| 597 | |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 598 | SVal Idx = ER->getIndex(); |
| 599 | |
| 600 | nonloc::ConcreteInt* Base = dyn_cast<nonloc::ConcreteInt>(&Idx); |
| 601 | nonloc::ConcreteInt* Offset = dyn_cast<nonloc::ConcreteInt>(&R); |
| 602 | |
| 603 | // Only support concrete integer indexes for now. |
| 604 | if (Base && Offset) { |
Ted Kremenek | 610e81d | 2009-03-13 15:35:24 +0000 | [diff] [blame] | 605 | // FIXME: For now, convert the signedness and bitwidth of offset in case |
| 606 | // they don't match. This can result from pointer arithmetic. In reality, |
| 607 | // we should figure out what are the proper semantics and implement them. |
| 608 | // |
Ted Kremenek | 1060a3c | 2009-03-13 15:39:16 +0000 | [diff] [blame] | 609 | // This addresses the test case test/Analysis/ptr-arith.c |
| 610 | // |
Ted Kremenek | 610e81d | 2009-03-13 15:35:24 +0000 | [diff] [blame] | 611 | nonloc::ConcreteInt OffConverted(getBasicVals().Convert(Base->getValue(), |
| 612 | Offset->getValue())); |
| 613 | SVal NewIdx = Base->EvalBinOp(getBasicVals(), Op, OffConverted); |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 614 | const MemRegion* NewER = MRMgr.getElementRegion(NewIdx, |
| 615 | ER->getArrayRegion()); |
| 616 | return Loc::MakeVal(NewER); |
| 617 | |
Ted Kremenek | 5dc2746 | 2009-03-03 02:51:43 +0000 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | return UnknownVal(); |
Zhongxing Xu | 94aa6c1 | 2009-03-02 07:52:23 +0000 | [diff] [blame] | 621 | } |
| 622 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 623 | SVal RegionStoreManager::Retrieve(const GRState* St, Loc L, QualType T) { |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 624 | assert(!isa<UnknownVal>(L) && "location unknown"); |
| 625 | assert(!isa<UndefinedVal>(L) && "location undefined"); |
| 626 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 627 | // FIXME: Is this even possible? Shouldn't this be treated as a null |
| 628 | // dereference at a higher level? |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 629 | if (isa<loc::ConcreteInt>(L)) |
| 630 | return UndefinedVal(); |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 631 | |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 632 | const MemRegion* MR = cast<loc::MemRegionVal>(L).getRegion(); |
| 633 | |
| 634 | // We return unknown for symbolic region for now. This might be improved. |
| 635 | // Example: |
| 636 | // void f(int* p) { int x = *p; } |
| 637 | if (isa<SymbolicRegion>(MR)) |
| 638 | return UnknownVal(); |
| 639 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 640 | // FIXME: Perhaps this method should just take a 'const MemRegion*' argument |
| 641 | // instead of 'Loc', and have the other Loc cases handled at a higher level. |
Zhongxing Xu | a1718c7 | 2009-04-03 07:33:13 +0000 | [diff] [blame] | 642 | const TypedRegion* R = cast<TypedRegion>(MR); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 643 | assert(R && "bad region"); |
| 644 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 645 | // FIXME: We should eventually handle funny addressing. e.g.: |
| 646 | // |
| 647 | // int x = ...; |
| 648 | // int *p = &x; |
| 649 | // char *q = (char*) p; |
| 650 | // char c = *q; // returns the first byte of 'x'. |
| 651 | // |
| 652 | // Such funny addressing will occur due to layering of regions. |
| 653 | |
Zhongxing Xu | 1038f9f | 2009-03-09 09:15:51 +0000 | [diff] [blame] | 654 | QualType RTy = R->getRValueType(getContext()); |
| 655 | if (RTy->isStructureType()) |
| 656 | return RetrieveStruct(St, R); |
| 657 | // FIXME: handle Vector types. |
| 658 | if (RTy->isVectorType()) |
Ted Kremenek | 265a305 | 2009-02-24 02:23:11 +0000 | [diff] [blame] | 659 | return UnknownVal(); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 660 | |
| 661 | RegionBindingsTy B = GetRegionBindings(St->getStore()); |
| 662 | RegionBindingsTy::data_type* V = B.lookup(R); |
| 663 | |
| 664 | // Check if the region has a binding. |
| 665 | if (V) |
| 666 | return *V; |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 667 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 668 | GRStateRef state(St, StateMgr); |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 669 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 670 | // Check if the region is in killset. |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 671 | if (state.contains<RegionKills>(R)) |
| 672 | return UnknownVal(); |
| 673 | |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 674 | // If the region is an element or field, it may have a default value. |
Zhongxing Xu | 562c4d9 | 2009-01-23 11:22:12 +0000 | [diff] [blame] | 675 | if (isa<ElementRegion>(R) || isa<FieldRegion>(R)) { |
| 676 | const MemRegion* SuperR = cast<SubRegion>(R)->getSuperRegion(); |
| 677 | GRStateTrait<RegionDefaultValue>::lookup_type D = |
| 678 | state.get<RegionDefaultValue>(SuperR); |
| 679 | if (D) |
| 680 | return *D; |
| 681 | } |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 682 | |
| 683 | if (const ObjCIvarRegion *IVR = dyn_cast<ObjCIvarRegion>(R)) { |
| 684 | const MemRegion *SR = IVR->getSuperRegion(); |
| 685 | |
| 686 | // If the super region is 'self' then return the symbol representing |
| 687 | // the value of the ivar upon entry to the method. |
| 688 | if (SR == SelfRegion) { |
| 689 | // FIXME: Do we need to handle the case where the super region |
| 690 | // has a view? We want to canonicalize the bindings. |
Ted Kremenek | 8d7f548 | 2009-04-09 22:22:44 +0000 | [diff] [blame] | 691 | return ValMgr.getRValueSymbolVal(R); |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 692 | } |
| 693 | |
| 694 | // Otherwise, we need a new symbol. For now return Unknown. |
| 695 | return UnknownVal(); |
| 696 | } |
Zhongxing Xu | 562c4d9 | 2009-01-23 11:22:12 +0000 | [diff] [blame] | 697 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 698 | // The location does not have a bound value. This means that it has |
| 699 | // the value it had upon its creation and/or entry to the analyzed |
| 700 | // function/method. These are either symbolic values or 'undefined'. |
| 701 | |
| 702 | // We treat function parameters as symbolic values. |
Ted Kremenek | 6fd8f91 | 2009-01-22 23:43:57 +0000 | [diff] [blame] | 703 | if (const VarRegion* VR = dyn_cast<VarRegion>(R)) { |
| 704 | const VarDecl *VD = VR->getDecl(); |
| 705 | |
Ted Kremenek | cec3525 | 2009-03-04 00:23:05 +0000 | [diff] [blame] | 706 | if (VD == SelfDecl) |
| 707 | return loc::MemRegionVal(getSelfRegion(0)); |
| 708 | |
| 709 | if (isa<ParmVarDecl>(VD) || isa<ImplicitParamDecl>(VD) || |
| 710 | VD->hasGlobalStorage()) { |
Zhongxing Xu | d8895f6 | 2009-02-19 09:56:08 +0000 | [diff] [blame] | 711 | QualType VTy = VD->getType(); |
| 712 | if (Loc::IsLocType(VTy) || VTy->isIntegerType()) |
Ted Kremenek | 8d7f548 | 2009-04-09 22:22:44 +0000 | [diff] [blame] | 713 | return ValMgr.getRValueSymbolVal(VR); |
Zhongxing Xu | d8895f6 | 2009-02-19 09:56:08 +0000 | [diff] [blame] | 714 | else |
| 715 | return UnknownVal(); |
| 716 | } |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 717 | } |
Ted Kremenek | 265a305 | 2009-02-24 02:23:11 +0000 | [diff] [blame] | 718 | |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 719 | if (MRMgr.onStack(R) || MRMgr.onHeap(R)) { |
| 720 | // All stack variables are considered to have undefined values |
| 721 | // upon creation. All heap allocated blocks are considered to |
| 722 | // have undefined values as well unless they are explicitly bound |
| 723 | // to specific values. |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 724 | return UndefinedVal(); |
Ted Kremenek | 869fb4a | 2008-12-24 07:46:32 +0000 | [diff] [blame] | 725 | } |
| 726 | |
Zhongxing Xu | ff8d204 | 2009-03-09 09:31:22 +0000 | [diff] [blame] | 727 | // All other integer values are symbolic. |
| 728 | if (Loc::IsLocType(RTy) || RTy->isIntegerType()) |
Ted Kremenek | 8d7f548 | 2009-04-09 22:22:44 +0000 | [diff] [blame] | 729 | return ValMgr.getRValueSymbolVal(R); |
Zhongxing Xu | ff8d204 | 2009-03-09 09:31:22 +0000 | [diff] [blame] | 730 | else |
| 731 | return UnknownVal(); |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 732 | } |
| 733 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 734 | SVal RegionStoreManager::RetrieveStruct(const GRState* St,const TypedRegion* R){ |
| 735 | |
| 736 | Store store = St->getStore(); |
| 737 | GRStateRef state(St, StateMgr); |
| 738 | |
Ted Kremenek | 6eddeb1 | 2008-12-13 21:49:13 +0000 | [diff] [blame] | 739 | // FIXME: Verify we want getRValueType instead of getLValueType. |
| 740 | QualType T = R->getRValueType(getContext()); |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 741 | assert(T->isStructureType()); |
| 742 | |
| 743 | const RecordType* RT = cast<RecordType>(T.getTypePtr()); |
| 744 | RecordDecl* RD = RT->getDecl(); |
| 745 | assert(RD->isDefinition()); |
| 746 | |
| 747 | llvm::ImmutableList<SVal> StructVal = getBasicVals().getEmptySValList(); |
| 748 | |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 749 | std::vector<FieldDecl *> Fields(RD->field_begin(getContext()), |
| 750 | RD->field_end(getContext())); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 751 | |
Douglas Gregor | e267ff3 | 2008-12-11 20:41:00 +0000 | [diff] [blame] | 752 | for (std::vector<FieldDecl *>::reverse_iterator Field = Fields.rbegin(), |
| 753 | FieldEnd = Fields.rend(); |
| 754 | Field != FieldEnd; ++Field) { |
| 755 | FieldRegion* FR = MRMgr.getFieldRegion(*Field, R); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 756 | RegionBindingsTy B = GetRegionBindings(store); |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 757 | RegionBindingsTy::data_type* data = B.lookup(FR); |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 758 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 759 | SVal FieldValue; |
| 760 | if (data) |
| 761 | FieldValue = *data; |
| 762 | else if (state.contains<RegionKills>(FR)) |
| 763 | FieldValue = UnknownVal(); |
| 764 | else { |
| 765 | if (MRMgr.onStack(FR) || MRMgr.onHeap(FR)) |
| 766 | FieldValue = UndefinedVal(); |
| 767 | else |
Ted Kremenek | 8d7f548 | 2009-04-09 22:22:44 +0000 | [diff] [blame] | 768 | FieldValue = ValMgr.getRValueSymbolVal(FR); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 769 | } |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 770 | |
| 771 | StructVal = getBasicVals().consVals(FieldValue, StructVal); |
| 772 | } |
| 773 | |
| 774 | return NonLoc::MakeCompoundVal(T, StructVal, getBasicVals()); |
| 775 | } |
| 776 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 777 | const GRState* RegionStoreManager::Bind(const GRState* St, Loc L, SVal V) { |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 778 | // If we get here, the location should be a region. |
| 779 | const MemRegion* R = cast<loc::MemRegionVal>(L).getRegion(); |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 780 | assert(R); |
| 781 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 782 | // Check if the region is a struct region. |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 783 | if (const TypedRegion* TR = dyn_cast<TypedRegion>(R)) |
Ted Kremenek | 6eddeb1 | 2008-12-13 21:49:13 +0000 | [diff] [blame] | 784 | // FIXME: Verify we want getRValueType(). |
| 785 | if (TR->getRValueType(getContext())->isStructureType()) |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 786 | return BindStruct(St, TR, V); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 787 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 788 | Store store = St->getStore(); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 789 | RegionBindingsTy B = GetRegionBindings(store); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 790 | |
| 791 | if (V.isUnknown()) { |
| 792 | // Remove the binding. |
| 793 | store = RBFactory.Remove(B, R).getRoot(); |
| 794 | |
| 795 | // Add the region to the killset. |
| 796 | GRStateRef state(St, StateMgr); |
| 797 | St = state.add<RegionKills>(R); |
| 798 | } |
| 799 | else |
| 800 | store = RBFactory.Add(B, R, V).getRoot(); |
| 801 | |
| 802 | return StateMgr.MakeStateWithStore(St, store); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 803 | } |
| 804 | |
Zhongxing Xu | 9c9ca08 | 2008-12-16 02:36:30 +0000 | [diff] [blame] | 805 | Store RegionStoreManager::Remove(Store store, Loc L) { |
Ted Kremenek | 0964a06 | 2009-01-21 06:57:53 +0000 | [diff] [blame] | 806 | const MemRegion* R = 0; |
| 807 | |
| 808 | if (isa<loc::MemRegionVal>(L)) |
| 809 | R = cast<loc::MemRegionVal>(L).getRegion(); |
Ted Kremenek | 0964a06 | 2009-01-21 06:57:53 +0000 | [diff] [blame] | 810 | |
| 811 | if (R) { |
| 812 | RegionBindingsTy B = GetRegionBindings(store); |
| 813 | return RBFactory.Remove(B, R).getRoot(); |
| 814 | } |
| 815 | |
| 816 | return store; |
Zhongxing Xu | 9c9ca08 | 2008-12-16 02:36:30 +0000 | [diff] [blame] | 817 | } |
| 818 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 819 | const GRState* RegionStoreManager::BindDecl(const GRState* St, |
| 820 | const VarDecl* VD, SVal InitVal) { |
Zhongxing Xu | a4f28ff | 2008-11-13 08:41:36 +0000 | [diff] [blame] | 821 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 822 | QualType T = VD->getType(); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 823 | VarRegion* VR = MRMgr.getVarRegion(VD); |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 824 | |
Ted Kremenek | 0964a06 | 2009-01-21 06:57:53 +0000 | [diff] [blame] | 825 | if (T->isArrayType()) |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 826 | return BindArray(St, VR, InitVal); |
Ted Kremenek | 0964a06 | 2009-01-21 06:57:53 +0000 | [diff] [blame] | 827 | if (T->isStructureType()) |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 828 | return BindStruct(St, VR, InitVal); |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 829 | |
Ted Kremenek | 0964a06 | 2009-01-21 06:57:53 +0000 | [diff] [blame] | 830 | return Bind(St, Loc::MakeVal(VR), InitVal); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 831 | } |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 832 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 833 | // FIXME: this method should be merged into Bind(). |
| 834 | const GRState* |
| 835 | RegionStoreManager::BindCompoundLiteral(const GRState* St, |
| 836 | const CompoundLiteralExpr* CL, SVal V) { |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 837 | CompoundLiteralRegion* R = MRMgr.getCompoundLiteralRegion(CL); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 838 | return Bind(St, loc::MemRegionVal(R), V); |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 839 | } |
| 840 | |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 841 | const GRState* RegionStoreManager::setExtent(const GRState* St, |
| 842 | const MemRegion* R, SVal Extent) { |
| 843 | GRStateRef state(St, StateMgr); |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 844 | return state.set<RegionExtents>(R, Extent); |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 848 | static void UpdateLiveSymbols(SVal X, SymbolReaper& SymReaper) { |
Ted Kremenek | 02c4d2d | 2009-03-04 00:11:38 +0000 | [diff] [blame] | 849 | if (loc::MemRegionVal *XR = dyn_cast<loc::MemRegionVal>(&X)) { |
| 850 | const MemRegion *R = XR->getRegion(); |
| 851 | |
| 852 | while (R) { |
| 853 | if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R)) { |
| 854 | SymReaper.markLive(SR->getSymbol()); |
| 855 | return; |
| 856 | } |
| 857 | |
| 858 | if (const SubRegion *SR = dyn_cast<SubRegion>(R)) { |
| 859 | R = SR->getSuperRegion(); |
| 860 | continue; |
| 861 | } |
| 862 | |
| 863 | break; |
| 864 | } |
| 865 | |
| 866 | return; |
| 867 | } |
| 868 | |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 869 | for (SVal::symbol_iterator SI=X.symbol_begin(), SE=X.symbol_end();SI!=SE;++SI) |
| 870 | SymReaper.markLive(*SI); |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 871 | } |
| 872 | |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame] | 873 | Store RegionStoreManager::RemoveDeadBindings(const GRState* state, Stmt* Loc, |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 874 | SymbolReaper& SymReaper, |
| 875 | llvm::SmallVectorImpl<const MemRegion*>& RegionRoots) |
| 876 | { |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 877 | |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame] | 878 | Store store = state->getStore(); |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 879 | RegionBindingsTy B = GetRegionBindings(store); |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 880 | |
| 881 | // Lazily constructed backmap from MemRegions to SubRegions. |
| 882 | typedef llvm::ImmutableSet<const MemRegion*> SubRegionsTy; |
| 883 | typedef llvm::ImmutableMap<const MemRegion*, SubRegionsTy> SubRegionsMapTy; |
| 884 | |
| 885 | // FIXME: As a future optimization we can modifiy BumpPtrAllocator to have |
| 886 | // the ability to reuse memory. This way we can keep TmpAlloc around as |
| 887 | // an instance variable of RegionStoreManager (avoiding repeated malloc |
| 888 | // overhead). |
| 889 | llvm::BumpPtrAllocator TmpAlloc; |
| 890 | |
| 891 | // Factory objects. |
| 892 | SubRegionsMapTy::Factory SubRegMapF(TmpAlloc); |
| 893 | SubRegionsTy::Factory SubRegF(TmpAlloc); |
| 894 | |
| 895 | // The backmap from regions to subregions. |
| 896 | SubRegionsMapTy SubRegMap = SubRegMapF.GetEmptyMap(); |
| 897 | |
| 898 | // Do a pass over the regions in the store. For VarRegions we check if |
| 899 | // the variable is still live and if so add it to the list of live roots. |
| 900 | // For other regions we populate our region backmap. |
Zhongxing Xu | c2fdb07 | 2009-03-18 01:54:31 +0000 | [diff] [blame] | 901 | |
| 902 | llvm::SmallVector<const MemRegion*, 10> IntermediateRoots; |
| 903 | |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 904 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
Zhongxing Xu | c2fdb07 | 2009-03-18 01:54:31 +0000 | [diff] [blame] | 905 | IntermediateRoots.push_back(I.getKey()); |
| 906 | } |
| 907 | |
| 908 | while (!IntermediateRoots.empty()) { |
| 909 | const MemRegion* R = IntermediateRoots.back(); |
| 910 | IntermediateRoots.pop_back(); |
| 911 | |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 912 | if (const VarRegion* VR = dyn_cast<VarRegion>(R)) { |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 913 | if (SymReaper.isLive(Loc, VR->getDecl())) |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 914 | RegionRoots.push_back(VR); // This is a live "root". |
Zhongxing Xu | 5c86b19 | 2009-04-29 09:24:35 +0000 | [diff] [blame^] | 915 | } |
| 916 | else if (const SymbolicRegion* SR = dyn_cast<SymbolicRegion>(R)) { |
| 917 | if (SymReaper.isLive(SR->getSymbol())) |
| 918 | RegionRoots.push_back(SR); |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 919 | } |
| 920 | else { |
| 921 | // Get the super region for R. |
| 922 | const MemRegion* SuperR = cast<SubRegion>(R)->getSuperRegion(); |
Zhongxing Xu | c2fdb07 | 2009-03-18 01:54:31 +0000 | [diff] [blame] | 923 | |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 924 | // Get the current set of subregions for SuperR. |
| 925 | const SubRegionsTy* SRptr = SubRegMap.lookup(SuperR); |
| 926 | SubRegionsTy SR = SRptr ? *SRptr : SubRegF.GetEmptySet(); |
Zhongxing Xu | c2fdb07 | 2009-03-18 01:54:31 +0000 | [diff] [blame] | 927 | |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 928 | // Add R to the subregions of SuperR. |
| 929 | SubRegMap = SubRegMapF.Add(SubRegMap, SuperR, SubRegF.Add(SR, R)); |
Zhongxing Xu | c2fdb07 | 2009-03-18 01:54:31 +0000 | [diff] [blame] | 930 | |
| 931 | // Super region may be VarRegion or subregion of another VarRegion. Add it |
| 932 | // to the work list. |
| 933 | if (isa<SubRegion>(SuperR)) |
| 934 | IntermediateRoots.push_back(SuperR); |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 935 | } |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 936 | } |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 937 | |
| 938 | // Process the worklist of RegionRoots. This performs a "mark-and-sweep" |
| 939 | // of the store. We want to find all live symbols and dead regions. |
| 940 | llvm::SmallPtrSet<const MemRegion*, 10> Marked; |
| 941 | |
| 942 | while (!RegionRoots.empty()) { |
| 943 | // Dequeue the next region on the worklist. |
| 944 | const MemRegion* R = RegionRoots.back(); |
| 945 | RegionRoots.pop_back(); |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 946 | |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 947 | // Check if we have already processed this region. |
| 948 | if (Marked.count(R)) continue; |
| 949 | |
| 950 | // Mark this region as processed. This is needed for termination in case |
| 951 | // a region is referenced more than once. |
| 952 | Marked.insert(R); |
| 953 | |
| 954 | // Mark the symbol for any live SymbolicRegion as "live". This means we |
| 955 | // should continue to track that symbol. |
| 956 | if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R)) |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 957 | SymReaper.markLive(SymR->getSymbol()); |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 958 | |
| 959 | // Get the data binding for R (if any). |
| 960 | RegionBindingsTy::data_type* Xptr = B.lookup(R); |
| 961 | if (Xptr) { |
| 962 | SVal X = *Xptr; |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 963 | UpdateLiveSymbols(X, SymReaper); // Update the set of live symbols. |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 964 | |
| 965 | // If X is a region, then add it the RegionRoots. |
| 966 | if (loc::MemRegionVal* RegionX = dyn_cast<loc::MemRegionVal>(&X)) |
| 967 | RegionRoots.push_back(RegionX->getRegion()); |
| 968 | } |
| 969 | |
| 970 | // Get the subregions of R. These are RegionRoots as well since they |
| 971 | // represent values that are also bound to R. |
| 972 | const SubRegionsTy* SRptr = SubRegMap.lookup(R); |
| 973 | if (!SRptr) continue; |
| 974 | SubRegionsTy SR = *SRptr; |
| 975 | |
| 976 | for (SubRegionsTy::iterator I=SR.begin(), E=SR.end(); I!=E; ++I) |
| 977 | RegionRoots.push_back(*I); |
| 978 | } |
| 979 | |
| 980 | // We have now scanned the store, marking reachable regions and symbols |
| 981 | // as live. We now remove all the regions that are dead from the store |
Ted Kremenek | 3de2d3c | 2009-03-05 04:50:08 +0000 | [diff] [blame] | 982 | // as well as update DSymbols with the set symbols that are now dead. |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 983 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
| 984 | const MemRegion* R = I.getKey(); |
| 985 | |
| 986 | // If this region live? Is so, none of its symbols are dead. |
| 987 | if (Marked.count(R)) |
| 988 | continue; |
| 989 | |
| 990 | // Remove this dead region from the store. |
Zhongxing Xu | 9c9ca08 | 2008-12-16 02:36:30 +0000 | [diff] [blame] | 991 | store = Remove(store, Loc::MakeVal(R)); |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 992 | |
| 993 | // Mark all non-live symbols that this region references as dead. |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 994 | if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R)) |
| 995 | SymReaper.maybeDead(SymR->getSymbol()); |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 996 | |
| 997 | SVal X = I.getData(); |
| 998 | SVal::symbol_iterator SI = X.symbol_begin(), SE = X.symbol_end(); |
Ted Kremenek | 241677a | 2009-01-21 22:26:05 +0000 | [diff] [blame] | 999 | for (; SI != SE; ++SI) SymReaper.maybeDead(*SI); |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 1000 | } |
| 1001 | |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 1002 | return store; |
| 1003 | } |
| 1004 | |
Zhongxing Xu | a071eb0 | 2008-10-24 06:01:33 +0000 | [diff] [blame] | 1005 | void RegionStoreManager::print(Store store, std::ostream& Out, |
| 1006 | const char* nl, const char *sep) { |
| 1007 | llvm::raw_os_ostream OS(Out); |
| 1008 | RegionBindingsTy B = GetRegionBindings(store); |
| 1009 | OS << "Store:" << nl; |
| 1010 | |
| 1011 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
| 1012 | OS << ' '; I.getKey()->print(OS); OS << " : "; |
| 1013 | I.getData().print(OS); OS << nl; |
| 1014 | } |
Zhongxing Xu | 5b8b6f2 | 2008-10-24 04:33:15 +0000 | [diff] [blame] | 1015 | } |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 1016 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1017 | const GRState* RegionStoreManager::BindArray(const GRState* St, |
| 1018 | const TypedRegion* R, SVal Init) { |
Ted Kremenek | 6eddeb1 | 2008-12-13 21:49:13 +0000 | [diff] [blame] | 1019 | |
| 1020 | // FIXME: Verify we should use getLValueType or getRValueType. |
Zhongxing Xu | 2ef9372 | 2008-12-14 03:14:52 +0000 | [diff] [blame] | 1021 | QualType T = R->getRValueType(getContext()); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1022 | assert(T->isArrayType()); |
| 1023 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1024 | // When we are binding the whole array, it always has default value 0. |
| 1025 | GRStateRef state(St, StateMgr); |
Ted Kremenek | 14553ab | 2009-01-30 00:08:43 +0000 | [diff] [blame] | 1026 | St = state.set<RegionDefaultValue>(R, NonLoc::MakeIntVal(getBasicVals(), 0, |
| 1027 | false)); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1028 | |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1029 | ConstantArrayType* CAT = cast<ConstantArrayType>(T.getTypePtr()); |
| 1030 | |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1031 | llvm::APSInt Size(CAT->getSize(), false); |
Sebastian Redl | 1be3da5 | 2009-01-26 19:54:12 +0000 | [diff] [blame] | 1032 | llvm::APSInt i = getBasicVals().getValue(0, Size.getBitWidth(), |
| 1033 | Size.isUnsigned()); |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1034 | |
| 1035 | // Check if the init expr is a StringLiteral. |
| 1036 | if (isa<loc::MemRegionVal>(Init)) { |
| 1037 | const MemRegion* InitR = cast<loc::MemRegionVal>(Init).getRegion(); |
| 1038 | const StringLiteral* S = cast<StringRegion>(InitR)->getStringLiteral(); |
| 1039 | const char* str = S->getStrData(); |
| 1040 | unsigned len = S->getByteLength(); |
| 1041 | unsigned j = 0; |
| 1042 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1043 | // Copy bytes from the string literal into the target array. Trailing bytes |
| 1044 | // in the array that are not covered by the string literal are initialized |
| 1045 | // to zero. |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1046 | for (; i < Size; ++i, ++j) { |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1047 | if (j >= len) |
| 1048 | break; |
| 1049 | |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1050 | SVal Idx = NonLoc::MakeVal(getBasicVals(), i); |
| 1051 | ElementRegion* ER = MRMgr.getElementRegion(Idx, R); |
| 1052 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1053 | SVal V = NonLoc::MakeVal(getBasicVals(), str[j], sizeof(char)*8, true); |
| 1054 | St = Bind(St, loc::MemRegionVal(ER), V); |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1055 | } |
| 1056 | |
Zhongxing Xu | bd4f745 | 2009-03-09 06:49:50 +0000 | [diff] [blame] | 1057 | return St; |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1058 | } |
| 1059 | |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1060 | |
| 1061 | nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(Init); |
| 1062 | |
| 1063 | nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); |
| 1064 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1065 | for (; i < Size; ++i, ++VI) { |
| 1066 | // The init list might be shorter than the array decl. |
| 1067 | if (VI == VE) |
| 1068 | break; |
| 1069 | |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 1070 | SVal Idx = NonLoc::MakeVal(getBasicVals(), i); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1071 | ElementRegion* ER = MRMgr.getElementRegion(Idx, R); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1072 | |
| 1073 | if (CAT->getElementType()->isStructureType()) |
| 1074 | St = BindStruct(St, ER, *VI); |
| 1075 | else |
| 1076 | St = Bind(St, Loc::MakeVal(ER), *VI); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
Zhongxing Xu | bd4f745 | 2009-03-09 06:49:50 +0000 | [diff] [blame] | 1079 | return St; |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 1080 | } |
| 1081 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1082 | const GRState* |
| 1083 | RegionStoreManager::BindStruct(const GRState* St, const TypedRegion* R, SVal V){ |
Ted Kremenek | 6eddeb1 | 2008-12-13 21:49:13 +0000 | [diff] [blame] | 1084 | // FIXME: Verify that we should use getRValueType or getLValueType. |
| 1085 | QualType T = R->getRValueType(getContext()); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1086 | assert(T->isStructureType()); |
| 1087 | |
Zhongxing Xu | b13ecdb | 2009-03-12 03:45:35 +0000 | [diff] [blame] | 1088 | const RecordType* RT = T->getAsRecordType(); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1089 | RecordDecl* RD = RT->getDecl(); |
Zhongxing Xu | c45a825 | 2009-03-11 09:07:35 +0000 | [diff] [blame] | 1090 | |
| 1091 | if (!RD->isDefinition()) |
| 1092 | return St; |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1093 | |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1094 | if (V.isUnknown()) |
| 1095 | return KillStruct(St, R); |
| 1096 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1097 | nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(V); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1098 | nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1099 | RecordDecl::field_iterator FI = RD->field_begin(getContext()), |
| 1100 | FE = RD->field_end(getContext()); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1101 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1102 | for (; FI != FE; ++FI, ++VI) { |
| 1103 | |
| 1104 | // There may be fewer values than fields only when we are initializing a |
| 1105 | // struct decl. In this case, mark the region as having default value. |
| 1106 | if (VI == VE) { |
Zhongxing Xu | 1302016 | 2008-12-24 07:29:24 +0000 | [diff] [blame] | 1107 | GRStateRef state(St, StateMgr); |
Ted Kremenek | 14553ab | 2009-01-30 00:08:43 +0000 | [diff] [blame] | 1108 | const NonLoc& Idx = NonLoc::MakeIntVal(getBasicVals(), 0, false); |
| 1109 | St = state.set<RegionDefaultValue>(R, Idx); |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1110 | break; |
| 1111 | } |
| 1112 | |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 1113 | QualType FTy = (*FI)->getType(); |
| 1114 | FieldRegion* FR = MRMgr.getFieldRegion(*FI, R); |
| 1115 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1116 | if (Loc::IsLocType(FTy) || FTy->isIntegerType()) |
| 1117 | St = Bind(St, Loc::MakeVal(FR), *VI); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 1118 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1119 | else if (FTy->isArrayType()) |
| 1120 | St = BindArray(St, FR, *VI); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 1121 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1122 | else if (FTy->isStructureType()) |
| 1123 | St = BindStruct(St, FR, *VI); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 1124 | } |
| 1125 | |
Zhongxing Xu | 4193eca | 2008-12-20 06:32:12 +0000 | [diff] [blame] | 1126 | return St; |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 1127 | } |
| 1128 | |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1129 | const GRState* RegionStoreManager::KillStruct(const GRState* St, |
| 1130 | const TypedRegion* R){ |
| 1131 | GRStateRef state(St, StateMgr); |
| 1132 | |
| 1133 | // Kill the struct region because it is assigned "unknown". |
| 1134 | St = state.add<RegionKills>(R); |
| 1135 | |
| 1136 | // Set the default value of the struct region to "unknown". |
| 1137 | St = state.set<RegionDefaultValue>(R, UnknownVal()); |
| 1138 | |
| 1139 | Store store = St->getStore(); |
| 1140 | RegionBindingsTy B = GetRegionBindings(store); |
| 1141 | |
| 1142 | // Remove all bindings for the subregions of the struct. |
| 1143 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
| 1144 | const MemRegion* r = I.getKey(); |
| 1145 | if (const SubRegion* sr = dyn_cast<SubRegion>(r)) |
| 1146 | if (sr->isSubRegionOf(R)) |
| 1147 | store = Remove(store, Loc::MakeVal(sr)); |
Zhongxing Xu | 9c2a3db | 2009-01-13 03:07:41 +0000 | [diff] [blame] | 1148 | // FIXME: Maybe we should also remove the bindings for the "views" of the |
| 1149 | // subregions. |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
| 1152 | return StateMgr.MakeStateWithStore(St, store); |
| 1153 | } |
| 1154 | |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 1155 | const GRState* RegionStoreManager::AddRegionView(const GRState* St, |
| 1156 | const MemRegion* View, |
| 1157 | const MemRegion* Base) { |
| 1158 | GRStateRef state(St, StateMgr); |
| 1159 | |
| 1160 | // First, retrieve the region view of the base region. |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 1161 | const RegionViews* d = state.get<RegionViewMap>(Base); |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1162 | RegionViews L = d ? *d : RVFactory.GetEmptySet(); |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 1163 | |
| 1164 | // Now add View to the region view. |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1165 | L = RVFactory.Add(L, View); |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 1166 | |
| 1167 | // Create a new state with the new region view. |
Ted Kremenek | 50dc1b3 | 2008-12-24 01:05:03 +0000 | [diff] [blame] | 1168 | return state.set<RegionViewMap>(Base, L); |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 1169 | } |
Zhongxing Xu | 5834ed6 | 2009-01-13 01:49:57 +0000 | [diff] [blame] | 1170 | |
| 1171 | const GRState* RegionStoreManager::RemoveRegionView(const GRState* St, |
| 1172 | const MemRegion* View, |
| 1173 | const MemRegion* Base) { |
| 1174 | GRStateRef state(St, StateMgr); |
| 1175 | |
| 1176 | // Retrieve the region view of the base region. |
| 1177 | const RegionViews* d = state.get<RegionViewMap>(Base); |
| 1178 | |
| 1179 | // If the base region has no view, return. |
| 1180 | if (!d) |
| 1181 | return St; |
| 1182 | |
| 1183 | // Remove the view. |
| 1184 | RegionViews V = *d; |
| 1185 | V = RVFactory.Remove(V, View); |
| 1186 | |
| 1187 | return state.set<RegionViewMap>(Base, V); |
| 1188 | } |