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 | |
| 32 | // RegionView GDM stuff. |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 33 | typedef llvm::ImmutableList<const MemRegion*> RegionViewTy; |
| 34 | typedef llvm::ImmutableMap<const MemRegion*, RegionViewTy> RegionViewMapTy; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 35 | static int RegionViewMapTyIndex = 0; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 36 | namespace clang { |
| 37 | template<> struct GRStateTrait<RegionViewMapTy> |
| 38 | : public GRStatePartialTrait<RegionViewMapTy> { |
| 39 | static void* GDMIndex() { return &RegionViewMapTyIndex; } |
| 40 | }; |
| 41 | } |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 42 | |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 43 | // RegionExtents GDM stuff. |
| 44 | // Currently RegionExtents are in bytes. We can change this representation when |
| 45 | // there are real requirements. |
| 46 | typedef llvm::ImmutableMap<const MemRegion*, SVal> RegionExtentsTy; |
| 47 | static int RegionExtentsTyIndex = 0; |
| 48 | namespace clang { |
| 49 | template<> struct GRStateTrait<RegionExtentsTy> |
| 50 | : public GRStatePartialTrait<RegionExtentsTy> { |
| 51 | static void* GDMIndex() { return &RegionExtentsTyIndex; } |
| 52 | }; |
| 53 | } |
| 54 | |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 55 | // KillSet GDM stuff. |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 56 | typedef llvm::ImmutableSet<const MemRegion*> RegionKills; |
| 57 | static int RegionKillsIndex = 0; |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 58 | namespace clang { |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 59 | template<> struct GRStateTrait<RegionKills> |
| 60 | : public GRStatePartialTrait<RegionKills> { |
| 61 | static void* GDMIndex() { return &RegionKillsIndex; } |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 62 | }; |
| 63 | } |
| 64 | |
| 65 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 66 | namespace { |
| 67 | |
| 68 | class VISIBILITY_HIDDEN RegionStoreManager : public StoreManager { |
| 69 | RegionBindingsTy::Factory RBFactory; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 70 | RegionViewTy::Factory RVFactory; |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 71 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 72 | GRStateManager& StateMgr; |
| 73 | MemRegionManager MRMgr; |
| 74 | |
| 75 | public: |
| 76 | RegionStoreManager(GRStateManager& mgr) |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 77 | : RBFactory(mgr.getAllocator()), |
| 78 | RVFactory(mgr.getAllocator()), |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 79 | StateMgr(mgr), |
| 80 | MRMgr(StateMgr.getAllocator()) {} |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 81 | |
| 82 | virtual ~RegionStoreManager() {} |
| 83 | |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 84 | MemRegionManager& getRegionManager() { return MRMgr; } |
Ted Kremenek | 4f09027 | 2008-10-27 21:54:31 +0000 | [diff] [blame] | 85 | |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 86 | Store BindCompoundLiteral(Store store, const CompoundLiteralExpr* CL, SVal V); |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 87 | |
Zhongxing Xu | 143bf82 | 2008-10-25 14:18:57 +0000 | [diff] [blame] | 88 | SVal getLValueString(const GRState* St, const StringLiteral* S); |
| 89 | |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 90 | SVal getLValueCompoundLiteral(const GRState* St, const CompoundLiteralExpr*); |
| 91 | |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 92 | SVal getLValueVar(const GRState* St, const VarDecl* VD); |
| 93 | |
| 94 | SVal getLValueIvar(const GRState* St, const ObjCIvarDecl* D, SVal Base); |
| 95 | |
| 96 | SVal getLValueField(const GRState* St, SVal Base, const FieldDecl* D); |
| 97 | |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 98 | SVal getLValueElement(const GRState* St, SVal Base, SVal Offset); |
| 99 | |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 100 | SVal getSizeInElements(const GRState* St, const MemRegion* R); |
| 101 | |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 102 | SVal ArrayToPointer(SVal Array); |
| 103 | |
Zhongxing Xu | cb529b5 | 2008-11-16 07:06:26 +0000 | [diff] [blame] | 104 | std::pair<const GRState*, SVal> |
| 105 | CastRegion(const GRState* St, SVal VoidPtr, QualType CastToTy, Stmt* CastE); |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 106 | |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 107 | SVal Retrieve(const GRState* state, Loc L, QualType T = QualType()); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 108 | |
Zhongxing Xu | 8485ec6 | 2008-10-21 06:27:32 +0000 | [diff] [blame] | 109 | Store Bind(Store St, Loc LV, SVal V); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 110 | |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 111 | Store Remove(Store store, Loc LV) { |
| 112 | // FIXME: Implement. |
| 113 | return store; |
| 114 | } |
| 115 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 116 | Store getInitialStore(); |
Ted Kremenek | 9deb0e3 | 2008-10-24 20:32:16 +0000 | [diff] [blame] | 117 | |
| 118 | /// getSelfRegion - Returns the region for the 'self' (Objective-C) or |
| 119 | /// 'this' object (C++). When used when analyzing a normal function this |
| 120 | /// method returns NULL. |
| 121 | const MemRegion* getSelfRegion(Store) { |
| 122 | assert (false && "Not implemented."); |
| 123 | return 0; |
| 124 | } |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 125 | |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 126 | /// RemoveDeadBindings - Scans the RegionStore of 'state' for dead values. |
| 127 | /// It returns a new Store with these values removed, and populates LSymbols |
| 128 | // and DSymbols with the known set of live and dead symbols respectively. |
| 129 | Store RemoveDeadBindings(const GRState* state, Stmt* Loc, |
| 130 | const LiveVariables& Live, |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 131 | llvm::SmallVectorImpl<const MemRegion*>& RegionRoots, |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 132 | LiveSymbolsTy& LSymbols, DeadSymbolsTy& DSymbols); |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 133 | |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 134 | void UpdateLiveSymbols(SVal X, LiveSymbolsTy& LSymbols); |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 135 | |
Ted Kremenek | 42577d1 | 2008-11-12 19:18:35 +0000 | [diff] [blame] | 136 | Store BindDecl(Store store, const VarDecl* VD, SVal* InitVal, unsigned Count); |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 137 | |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 138 | const GRState* setExtent(const GRState* St, const MemRegion* R, SVal Extent); |
| 139 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 140 | static inline RegionBindingsTy GetRegionBindings(Store store) { |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 141 | return RegionBindingsTy(static_cast<const RegionBindingsTy::TreeTy*>(store)); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 142 | } |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 143 | |
Zhongxing Xu | 5b8b6f2 | 2008-10-24 04:33:15 +0000 | [diff] [blame] | 144 | 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] | 145 | |
| 146 | void iterBindings(Store store, BindingsHandler& f) { |
| 147 | // FIXME: Implement. |
| 148 | } |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 149 | |
| 150 | private: |
| 151 | Loc getVarLoc(const VarDecl* VD) { |
| 152 | return loc::MemRegionVal(MRMgr.getVarRegion(VD)); |
| 153 | } |
| 154 | |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 155 | Store InitializeArray(Store store, const TypedRegion* R, SVal Init); |
| 156 | Store BindArrayToVal(Store store, const TypedRegion* BaseR, SVal V); |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 157 | Store BindArrayToSymVal(Store store, const TypedRegion* BaseR); |
| 158 | |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 159 | Store InitializeStruct(Store store, const TypedRegion* R, SVal Init); |
| 160 | Store BindStructToVal(Store store, const TypedRegion* BaseR, SVal V); |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 161 | Store BindStructToSymVal(Store store, const TypedRegion* BaseR); |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 162 | |
Zhongxing Xu | 0b242ec | 2008-12-04 01:12:41 +0000 | [diff] [blame] | 163 | /// Retrieve the values in a struct and return a CompoundVal, used when doing |
| 164 | /// struct copy: |
| 165 | /// struct s x, y; |
| 166 | /// x = y; |
| 167 | /// y's value is retrieved by this method. |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 168 | SVal RetrieveStruct(Store store, const TypedRegion* R); |
Zhongxing Xu | 0b242ec | 2008-12-04 01:12:41 +0000 | [diff] [blame] | 169 | |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 170 | Store BindStruct(Store store, const TypedRegion* R, SVal V); |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 171 | |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 172 | // Utility methods. |
| 173 | BasicValueFactory& getBasicVals() { return StateMgr.getBasicVals(); } |
| 174 | ASTContext& getContext() { return StateMgr.getContext(); } |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 175 | SymbolManager& getSymbolManager() { return StateMgr.getSymbolManager(); } |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 176 | |
| 177 | const GRState* AddRegionView(const GRState* St, |
| 178 | const MemRegion* View, const MemRegion* Base); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 179 | }; |
| 180 | |
| 181 | } // end anonymous namespace |
| 182 | |
Ted Kremenek | 95c7b00 | 2008-10-24 01:04:59 +0000 | [diff] [blame] | 183 | StoreManager* clang::CreateRegionStoreManager(GRStateManager& StMgr) { |
Zhongxing Xu | 24194ef | 2008-10-24 01:38:55 +0000 | [diff] [blame] | 184 | return new RegionStoreManager(StMgr); |
Ted Kremenek | 95c7b00 | 2008-10-24 01:04:59 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Zhongxing Xu | 143bf82 | 2008-10-25 14:18:57 +0000 | [diff] [blame] | 187 | SVal RegionStoreManager::getLValueString(const GRState* St, |
| 188 | const StringLiteral* S) { |
| 189 | return loc::MemRegionVal(MRMgr.getStringRegion(S)); |
| 190 | } |
| 191 | |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 192 | SVal RegionStoreManager::getLValueVar(const GRState* St, const VarDecl* VD) { |
| 193 | return loc::MemRegionVal(MRMgr.getVarRegion(VD)); |
| 194 | } |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 195 | |
| 196 | SVal RegionStoreManager::getLValueCompoundLiteral(const GRState* St, |
| 197 | const CompoundLiteralExpr* CL) { |
| 198 | return loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL)); |
| 199 | } |
| 200 | |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 201 | SVal RegionStoreManager::getLValueIvar(const GRState* St, const ObjCIvarDecl* D, |
| 202 | SVal Base) { |
| 203 | return UnknownVal(); |
| 204 | } |
| 205 | |
| 206 | SVal RegionStoreManager::getLValueField(const GRState* St, SVal Base, |
| 207 | const FieldDecl* D) { |
| 208 | if (Base.isUnknownOrUndef()) |
| 209 | return Base; |
| 210 | |
| 211 | Loc BaseL = cast<Loc>(Base); |
| 212 | const MemRegion* BaseR = 0; |
| 213 | |
| 214 | switch (BaseL.getSubKind()) { |
| 215 | case loc::MemRegionKind: |
| 216 | BaseR = cast<loc::MemRegionVal>(BaseL).getRegion(); |
| 217 | break; |
| 218 | |
| 219 | case loc::SymbolValKind: |
| 220 | BaseR = MRMgr.getSymbolicRegion(cast<loc::SymbolVal>(&BaseL)->getSymbol()); |
| 221 | break; |
| 222 | |
| 223 | case loc::GotoLabelKind: |
| 224 | case loc::FuncValKind: |
| 225 | // These are anormal cases. Flag an undefined value. |
| 226 | return UndefinedVal(); |
| 227 | |
| 228 | case loc::ConcreteIntKind: |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 229 | // While these seem funny, this can happen through casts. |
| 230 | // FIXME: What we should return is the field offset. For example, |
| 231 | // add the field offset to the integer value. That way funny things |
| 232 | // like this work properly: &(((struct foo *) 0xa)->f) |
| 233 | return Base; |
| 234 | |
| 235 | default: |
Zhongxing Xu | 13d1ee2 | 2008-11-07 08:57:30 +0000 | [diff] [blame] | 236 | assert(0 && "Unhandled Base."); |
Zhongxing Xu | c4bf72c | 2008-10-22 13:44:38 +0000 | [diff] [blame] | 237 | return Base; |
| 238 | } |
| 239 | |
| 240 | return loc::MemRegionVal(MRMgr.getFieldRegion(D, BaseR)); |
| 241 | } |
| 242 | |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 243 | SVal RegionStoreManager::getLValueElement(const GRState* St, |
| 244 | SVal Base, SVal Offset) { |
| 245 | if (Base.isUnknownOrUndef()) |
| 246 | return Base; |
| 247 | |
Zhongxing Xu | 4a1513e | 2008-10-27 12:23:17 +0000 | [diff] [blame] | 248 | if (isa<loc::SymbolVal>(Base)) |
| 249 | return Base; |
| 250 | |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 251 | loc::MemRegionVal& BaseL = cast<loc::MemRegionVal>(Base); |
| 252 | |
Zhongxing Xu | e4d1393 | 2008-11-13 09:48:44 +0000 | [diff] [blame] | 253 | // Pointer of any type can be cast and used as array base. We do not support |
| 254 | // that case yet. |
| 255 | if (!isa<ElementRegion>(BaseL.getRegion())) { |
| 256 | // Record what we have seen in real code. |
| 257 | assert(isa<FieldRegion>(BaseL.getRegion())); |
| 258 | return UnknownVal(); |
| 259 | } |
| 260 | |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 261 | // We expect BaseR is an ElementRegion, not a base VarRegion. |
| 262 | |
| 263 | const ElementRegion* ElemR = cast<ElementRegion>(BaseL.getRegion()); |
| 264 | |
| 265 | SVal Idx = ElemR->getIndex(); |
| 266 | |
| 267 | nonloc::ConcreteInt *CI1, *CI2; |
| 268 | |
| 269 | // Only handle integer indices for now. |
| 270 | if ((CI1 = dyn_cast<nonloc::ConcreteInt>(&Idx)) && |
| 271 | (CI2 = dyn_cast<nonloc::ConcreteInt>(&Offset))) { |
Zhongxing Xu | cc0d0ec | 2008-11-13 09:15:14 +0000 | [diff] [blame] | 272 | |
Sebastian Redl | e95db4f | 2008-11-24 19:35:33 +0000 | [diff] [blame] | 273 | // Temporary SVal to hold a potential signed and extended APSInt. |
Zhongxing Xu | cc0d0ec | 2008-11-13 09:15:14 +0000 | [diff] [blame] | 274 | SVal SignedInt; |
| 275 | |
Sebastian Redl | e95db4f | 2008-11-24 19:35:33 +0000 | [diff] [blame] | 276 | // Index might be unsigned. We have to convert it to signed. It might also |
| 277 | // be less wide than the size. We have to extend it. |
| 278 | if (CI2->getValue().isUnsigned() || |
| 279 | CI2->getValue().getBitWidth() < CI1->getValue().getBitWidth()) { |
Zhongxing Xu | cc0d0ec | 2008-11-13 09:15:14 +0000 | [diff] [blame] | 280 | llvm::APSInt SI = CI2->getValue(); |
Sebastian Redl | ddee68b | 2008-11-24 19:39:40 +0000 | [diff] [blame] | 281 | if (CI2->getValue().getBitWidth() < CI1->getValue().getBitWidth()) |
| 282 | SI.extend(CI1->getValue().getBitWidth()); |
Zhongxing Xu | cc0d0ec | 2008-11-13 09:15:14 +0000 | [diff] [blame] | 283 | SI.setIsSigned(true); |
| 284 | SignedInt = nonloc::ConcreteInt(getBasicVals().getValue(SI)); |
| 285 | CI2 = cast<nonloc::ConcreteInt>(&SignedInt); |
| 286 | } |
| 287 | |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 288 | SVal NewIdx = CI1->EvalBinOp(getBasicVals(), BinaryOperator::Add, *CI2); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 289 | return loc::MemRegionVal(MRMgr.getElementRegion(NewIdx, |
| 290 | ElemR->getSuperRegion())); |
| 291 | } |
| 292 | |
| 293 | return UnknownVal(); |
| 294 | } |
| 295 | |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 296 | SVal RegionStoreManager::getSizeInElements(const GRState* St, |
| 297 | const MemRegion* R) { |
| 298 | if (const VarRegion* VR = dyn_cast<VarRegion>(R)) { |
| 299 | // Get the type of the variable. |
| 300 | QualType T = VR->getType(getContext()); |
| 301 | |
| 302 | // It must be of array type. |
| 303 | const ConstantArrayType* CAT = cast<ConstantArrayType>(T.getTypePtr()); |
| 304 | |
| 305 | // return the size as signed integer. |
| 306 | return NonLoc::MakeVal(getBasicVals(), CAT->getSize(), false); |
| 307 | } |
| 308 | |
| 309 | if (const StringRegion* SR = dyn_cast<StringRegion>(R)) { |
Zhongxing Xu | 6613d08 | 2008-11-24 02:18:56 +0000 | [diff] [blame] | 310 | const StringLiteral* Str = SR->getStringLiteral(); |
Zhongxing Xu | d0fd3b7 | 2008-11-24 02:30:48 +0000 | [diff] [blame] | 311 | // We intentionally made the size value signed because it participates in |
| 312 | // operations with signed indices. |
Zhongxing Xu | 4b89e03 | 2008-11-24 05:16:01 +0000 | [diff] [blame] | 313 | return NonLoc::MakeVal(getBasicVals(), Str->getByteLength() + 1, false); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | if (const AnonTypedRegion* ATR = dyn_cast<AnonTypedRegion>(R)) { |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 317 | GRStateRef state(St, StateMgr); |
| 318 | |
| 319 | // Get the size of the super region in bytes. |
| 320 | RegionExtentsTy::data_type* T |
| 321 | = state.get<RegionExtentsTy>(ATR->getSuperRegion()); |
| 322 | |
| 323 | assert(T && "region extent not exist"); |
| 324 | |
| 325 | // Assume it's ConcreteInt for now. |
| 326 | llvm::APSInt SSize = cast<nonloc::ConcreteInt>(*T).getValue(); |
| 327 | |
| 328 | // Get the size of the element in bits. |
| 329 | QualType ElemTy = cast<PointerType>(ATR->getType(getContext()).getTypePtr()) |
| 330 | ->getPointeeType(); |
| 331 | |
| 332 | uint64_t X = getContext().getTypeSize(ElemTy); |
| 333 | |
| 334 | const llvm::APSInt& ESize = getBasicVals().getValue(X, SSize.getBitWidth(), |
| 335 | false); |
| 336 | |
| 337 | // Calculate the number of elements. |
| 338 | |
| 339 | // FIXME: What do we do with signed-ness problem? Shall we make all APSInts |
| 340 | // signed? |
| 341 | if (SSize.isUnsigned()) |
| 342 | SSize.setIsSigned(true); |
| 343 | |
| 344 | // FIXME: move this operation into BasicVals. |
| 345 | const llvm::APSInt S = |
| 346 | (SSize * getBasicVals().getValue(8, SSize.getBitWidth(), false)) / ESize; |
| 347 | |
| 348 | return NonLoc::MakeVal(getBasicVals(), S); |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | if (const FieldRegion* FR = dyn_cast<FieldRegion>(R)) { |
| 352 | // FIXME: Unsupported yet. |
| 353 | FR = 0; |
| 354 | return UnknownVal(); |
| 355 | } |
Zhongxing Xu | 369f429 | 2008-11-22 13:23:00 +0000 | [diff] [blame] | 356 | |
Zhongxing Xu | e8a964b | 2008-11-22 13:21:46 +0000 | [diff] [blame] | 357 | assert(0 && "Other regions are not supported yet."); |
| 358 | } |
| 359 | |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 360 | // Cast 'pointer to array' to 'pointer to the first element of array'. |
| 361 | |
| 362 | SVal RegionStoreManager::ArrayToPointer(SVal Array) { |
| 363 | const MemRegion* ArrayR = cast<loc::MemRegionVal>(&Array)->getRegion(); |
Zhongxing Xu | 143bf82 | 2008-10-25 14:18:57 +0000 | [diff] [blame] | 364 | |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 365 | nonloc::ConcreteInt Idx(getBasicVals().getZeroWithPtrWidth(false)); |
Zhongxing Xu | 0b7e642 | 2008-10-26 02:23:57 +0000 | [diff] [blame] | 366 | ElementRegion* ER = MRMgr.getElementRegion(Idx, ArrayR); |
| 367 | |
| 368 | return loc::MemRegionVal(ER); |
Zhongxing Xu | b1d542a | 2008-10-24 01:09:32 +0000 | [diff] [blame] | 369 | } |
| 370 | |
Zhongxing Xu | cb529b5 | 2008-11-16 07:06:26 +0000 | [diff] [blame] | 371 | std::pair<const GRState*, SVal> |
| 372 | RegionStoreManager::CastRegion(const GRState* St, SVal VoidPtr, |
| 373 | QualType CastToTy, Stmt* CastE) { |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 374 | if (const AllocaRegion* AR = |
| 375 | dyn_cast<AllocaRegion>(cast<loc::MemRegionVal>(VoidPtr).getRegion())) { |
| 376 | |
| 377 | // Create a new region to attach type information to it. |
| 378 | const AnonTypedRegion* TR = MRMgr.getAnonTypedRegion(CastToTy, AR); |
| 379 | |
| 380 | // Get the pointer to the first element. |
| 381 | nonloc::ConcreteInt Idx(getBasicVals().getZeroWithPtrWidth(false)); |
| 382 | const ElementRegion* ER = MRMgr.getElementRegion(Idx, TR); |
| 383 | |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 384 | // Add a RegionView to base region. |
Zhongxing Xu | 353cbe1 | 2008-11-28 03:55:52 +0000 | [diff] [blame] | 385 | return std::make_pair(AddRegionView(St, TR, AR), loc::MemRegionVal(ER)); |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | // Default case. |
Zhongxing Xu | 353cbe1 | 2008-11-28 03:55:52 +0000 | [diff] [blame] | 389 | return std::make_pair(St, UnknownVal()); |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 390 | } |
| 391 | |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 392 | SVal RegionStoreManager::Retrieve(const GRState* state, Loc L, QualType T) { |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 393 | assert(!isa<UnknownVal>(L) && "location unknown"); |
| 394 | assert(!isa<UndefinedVal>(L) && "location undefined"); |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 395 | Store S = state->getStore(); |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 396 | |
| 397 | switch (L.getSubKind()) { |
| 398 | case loc::MemRegionKind: { |
| 399 | const MemRegion* R = cast<loc::MemRegionVal>(L).getRegion(); |
| 400 | assert(R && "bad region"); |
| 401 | |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 402 | if (const TypedRegion* TR = dyn_cast<TypedRegion>(R)) |
| 403 | if (TR->getType(getContext())->isStructureType()) |
| 404 | return RetrieveStruct(S, TR); |
| 405 | |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 406 | RegionBindingsTy B(static_cast<const RegionBindingsTy::TreeTy*>(S)); |
| 407 | RegionBindingsTy::data_type* V = B.lookup(R); |
| 408 | return V ? *V : UnknownVal(); |
| 409 | } |
| 410 | |
| 411 | case loc::SymbolValKind: |
| 412 | return UnknownVal(); |
| 413 | |
| 414 | case loc::ConcreteIntKind: |
| 415 | return UndefinedVal(); // As in BasicStoreManager. |
| 416 | |
| 417 | case loc::FuncValKind: |
| 418 | return L; |
| 419 | |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 420 | default: |
| 421 | assert(false && "Invalid Location"); |
Ted Kremenek | ab7b32b | 2008-11-19 00:27:37 +0000 | [diff] [blame] | 422 | return L; |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 423 | } |
| 424 | } |
| 425 | |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 426 | SVal RegionStoreManager::RetrieveStruct(Store store, const TypedRegion* R) { |
| 427 | QualType T = R->getType(getContext()); |
| 428 | assert(T->isStructureType()); |
| 429 | |
| 430 | const RecordType* RT = cast<RecordType>(T.getTypePtr()); |
| 431 | RecordDecl* RD = RT->getDecl(); |
| 432 | assert(RD->isDefinition()); |
| 433 | |
| 434 | llvm::ImmutableList<SVal> StructVal = getBasicVals().getEmptySValList(); |
| 435 | |
| 436 | for (int i = RD->getNumMembers() - 1; i >= 0; --i) { |
| 437 | FieldRegion* FR = MRMgr.getFieldRegion(RD->getMember(i), R); |
| 438 | RegionBindingsTy B(static_cast<const RegionBindingsTy::TreeTy*>(store)); |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 439 | RegionBindingsTy::data_type* data = B.lookup(FR); |
Zhongxing Xu | 6e3f01c | 2008-10-31 07:16:08 +0000 | [diff] [blame] | 440 | |
| 441 | SVal FieldValue = data ? *data : UnknownVal(); |
| 442 | |
| 443 | StructVal = getBasicVals().consVals(FieldValue, StructVal); |
| 444 | } |
| 445 | |
| 446 | return NonLoc::MakeCompoundVal(T, StructVal, getBasicVals()); |
| 447 | } |
| 448 | |
Zhongxing Xu | 8485ec6 | 2008-10-21 06:27:32 +0000 | [diff] [blame] | 449 | Store RegionStoreManager::Bind(Store store, Loc LV, SVal V) { |
Zhongxing Xu | 8fe63af | 2008-10-27 09:24:07 +0000 | [diff] [blame] | 450 | if (LV.getSubKind() == loc::SymbolValKind) |
| 451 | return store; |
| 452 | |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 453 | assert(LV.getSubKind() == loc::MemRegionKind); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 454 | |
Ted Kremenek | 993f1c7 | 2008-10-17 20:28:54 +0000 | [diff] [blame] | 455 | const MemRegion* R = cast<loc::MemRegionVal>(LV).getRegion(); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 456 | |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 457 | assert(R); |
| 458 | |
| 459 | if (const TypedRegion* TR = dyn_cast<TypedRegion>(R)) |
| 460 | if (TR->getType(getContext())->isStructureType()) |
| 461 | return BindStruct(store, TR, V); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 462 | |
| 463 | RegionBindingsTy B = GetRegionBindings(store); |
| 464 | return V.isUnknown() |
| 465 | ? RBFactory.Remove(B, R).getRoot() |
| 466 | : RBFactory.Add(B, R, V).getRoot(); |
| 467 | } |
| 468 | |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 469 | Store RegionStoreManager::BindStruct(Store store, const TypedRegion* R, SVal V){ |
| 470 | QualType T = R->getType(getContext()); |
| 471 | assert(T->isStructureType()); |
| 472 | |
| 473 | const RecordType* RT = cast<RecordType>(T.getTypePtr()); |
| 474 | RecordDecl* RD = RT->getDecl(); |
Zhongxing Xu | a4f28ff | 2008-11-13 08:41:36 +0000 | [diff] [blame] | 475 | |
| 476 | if (!RD->isDefinition()) { |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 477 | // This can only occur when a pointer of incomplete struct type is used as a |
Zhongxing Xu | a4f28ff | 2008-11-13 08:41:36 +0000 | [diff] [blame] | 478 | // function argument. |
| 479 | assert(V.isUnknown()); |
| 480 | return store; |
| 481 | } |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 482 | |
| 483 | RegionBindingsTy B = GetRegionBindings(store); |
| 484 | |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 485 | if (isa<UnknownVal>(V)) |
| 486 | return BindStructToVal(store, R, UnknownVal()); |
| 487 | |
Zhongxing Xu | f0dfa8d | 2008-10-31 08:10:01 +0000 | [diff] [blame] | 488 | nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(V); |
| 489 | |
| 490 | nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); |
| 491 | RecordDecl::field_iterator FI = RD->field_begin(), FE = RD->field_end(); |
| 492 | |
| 493 | for (; FI != FE; ++FI, ++VI) { |
| 494 | assert(VI != VE); |
| 495 | |
| 496 | FieldRegion* FR = MRMgr.getFieldRegion(*FI, R); |
| 497 | |
| 498 | B = RBFactory.Add(B, FR, *VI); |
| 499 | } |
| 500 | |
| 501 | return B.getRoot(); |
| 502 | } |
| 503 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 504 | Store RegionStoreManager::getInitialStore() { |
| 505 | typedef LiveVariables::AnalysisDataTy LVDataTy; |
| 506 | LVDataTy& D = StateMgr.getLiveVariables().getAnalysisData(); |
| 507 | |
| 508 | Store St = RBFactory.GetEmptyMap().getRoot(); |
| 509 | |
| 510 | for (LVDataTy::decl_iterator I=D.begin_decl(), E=D.end_decl(); I != E; ++I) { |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 511 | NamedDecl* ND = const_cast<NamedDecl*>(I->first); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 512 | |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 513 | if (VarDecl* VD = dyn_cast<VarDecl>(ND)) { |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 514 | // Punt on static variables for now. |
| 515 | if (VD->getStorageClass() == VarDecl::Static) |
| 516 | continue; |
| 517 | |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 518 | VarRegion* VR = MRMgr.getVarRegion(VD); |
| 519 | |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 520 | QualType T = VD->getType(); |
| 521 | // Only handle pointers and integers for now. |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 522 | if (Loc::IsLocType(T) || T->isIntegerType()) { |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 523 | // Initialize globals and parameters to symbolic values. |
| 524 | // Initialize local variables to undefined. |
Zhongxing Xu | 1c96b24 | 2008-10-17 05:57:07 +0000 | [diff] [blame] | 525 | SVal X = (VD->hasGlobalStorage() || isa<ParmVarDecl>(VD) || |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 526 | isa<ImplicitParamDecl>(VD)) |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 527 | ? SVal::GetSymbolValue(getSymbolManager(), VD) |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 528 | : UndefinedVal(); |
| 529 | |
Zhongxing Xu | 8485ec6 | 2008-10-21 06:27:32 +0000 | [diff] [blame] | 530 | St = Bind(St, getVarLoc(VD), X); |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 531 | } |
| 532 | else if (T->isArrayType()) { |
| 533 | if (VD->hasGlobalStorage()) // Params cannot have array type. |
| 534 | St = BindArrayToSymVal(St, VR); |
| 535 | else |
| 536 | St = BindArrayToVal(St, VR, UndefinedVal()); |
| 537 | } |
| 538 | else if (T->isStructureType()) { |
| 539 | if (VD->hasGlobalStorage() || isa<ParmVarDecl>(VD) || |
| 540 | isa<ImplicitParamDecl>(VD)) |
| 541 | St = BindStructToSymVal(St, VR); |
| 542 | else |
| 543 | St = BindStructToVal(St, VR, UndefinedVal()); |
Zhongxing Xu | 1789275 | 2008-10-08 02:50:44 +0000 | [diff] [blame] | 544 | } |
| 545 | } |
| 546 | } |
| 547 | return St; |
| 548 | } |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 549 | |
Ted Kremenek | 42577d1 | 2008-11-12 19:18:35 +0000 | [diff] [blame] | 550 | Store RegionStoreManager::BindDecl(Store store, const VarDecl* VD, |
| 551 | SVal* InitVal, unsigned Count) { |
| 552 | |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 553 | if (VD->hasGlobalStorage()) { |
| 554 | // Static global variables should not be visited here. |
| 555 | assert(!(VD->getStorageClass() == VarDecl::Static && |
| 556 | VD->isFileVarDecl())); |
| 557 | // Process static variables. |
| 558 | if (VD->getStorageClass() == VarDecl::Static) { |
Ted Kremenek | 42577d1 | 2008-11-12 19:18:35 +0000 | [diff] [blame] | 559 | if (!InitVal) { |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 560 | // Only handle pointer and integer static variables. |
| 561 | |
| 562 | QualType T = VD->getType(); |
| 563 | |
| 564 | if (Loc::IsLocType(T)) |
Zhongxing Xu | 8485ec6 | 2008-10-21 06:27:32 +0000 | [diff] [blame] | 565 | store = Bind(store, getVarLoc(VD), |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 566 | loc::ConcreteInt(getBasicVals().getValue(0, T))); |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 567 | |
| 568 | else if (T->isIntegerType()) |
Zhongxing Xu | 8485ec6 | 2008-10-21 06:27:32 +0000 | [diff] [blame] | 569 | store = Bind(store, getVarLoc(VD), |
Zhongxing Xu | 63123d8 | 2008-11-23 04:30:35 +0000 | [diff] [blame] | 570 | loc::ConcreteInt(getBasicVals().getValue(0, T))); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 571 | |
| 572 | // Other types of static local variables are not handled yet. |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 573 | } else { |
Ted Kremenek | 42577d1 | 2008-11-12 19:18:35 +0000 | [diff] [blame] | 574 | store = Bind(store, getVarLoc(VD), *InitVal); |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 575 | } |
| 576 | } |
| 577 | } else { |
| 578 | // Process local variables. |
| 579 | |
| 580 | QualType T = VD->getType(); |
| 581 | |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 582 | VarRegion* VR = MRMgr.getVarRegion(VD); |
| 583 | |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 584 | if (Loc::IsLocType(T) || T->isIntegerType()) { |
Ted Kremenek | 42577d1 | 2008-11-12 19:18:35 +0000 | [diff] [blame] | 585 | SVal V = InitVal ? *InitVal : UndefinedVal(); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 586 | store = Bind(store, loc::MemRegionVal(VR), V); |
Ted Kremenek | 42577d1 | 2008-11-12 19:18:35 +0000 | [diff] [blame] | 587 | } |
| 588 | else if (T->isArrayType()) { |
| 589 | if (!InitVal) |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 590 | store = BindArrayToVal(store, VR, UndefinedVal()); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 591 | else |
Ted Kremenek | 42577d1 | 2008-11-12 19:18:35 +0000 | [diff] [blame] | 592 | store = InitializeArray(store, VR, *InitVal); |
| 593 | } |
| 594 | else if (T->isStructureType()) { |
| 595 | if (!InitVal) |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 596 | store = BindStructToVal(store, VR, UndefinedVal()); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 597 | else |
Ted Kremenek | 42577d1 | 2008-11-12 19:18:35 +0000 | [diff] [blame] | 598 | store = InitializeStruct(store, VR, *InitVal); |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 599 | } |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 600 | |
| 601 | // Other types of local variables are not handled yet. |
Zhongxing Xu | 53bcdd4 | 2008-10-21 05:29:26 +0000 | [diff] [blame] | 602 | } |
| 603 | return store; |
| 604 | } |
| 605 | |
Zhongxing Xu | f22679e | 2008-11-07 10:38:33 +0000 | [diff] [blame] | 606 | Store RegionStoreManager::BindCompoundLiteral(Store store, |
| 607 | const CompoundLiteralExpr* CL, |
| 608 | SVal V) { |
| 609 | CompoundLiteralRegion* R = MRMgr.getCompoundLiteralRegion(CL); |
| 610 | store = Bind(store, loc::MemRegionVal(R), V); |
| 611 | return store; |
| 612 | } |
| 613 | |
Zhongxing Xu | baf03a7 | 2008-11-24 09:44:56 +0000 | [diff] [blame] | 614 | const GRState* RegionStoreManager::setExtent(const GRState* St, |
| 615 | const MemRegion* R, SVal Extent) { |
| 616 | GRStateRef state(St, StateMgr); |
| 617 | return state.set<RegionExtentsTy>(R, Extent); |
| 618 | } |
| 619 | |
| 620 | |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 621 | void RegionStoreManager::UpdateLiveSymbols(SVal X, LiveSymbolsTy& LSymbols) { |
| 622 | for (SVal::symbol_iterator SI=X.symbol_begin(),SE=X.symbol_end();SI!=SE;++SI) |
| 623 | LSymbols.insert(*SI); |
| 624 | } |
| 625 | |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 626 | Store RegionStoreManager::RemoveDeadBindings(const GRState* state, Stmt* Loc, |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 627 | const LiveVariables& Live, |
| 628 | llvm::SmallVectorImpl<const MemRegion*>& RegionRoots, |
| 629 | LiveSymbolsTy& LSymbols, DeadSymbolsTy& DSymbols) { |
| 630 | |
Ted Kremenek | 2ed14be | 2008-12-05 00:47:52 +0000 | [diff] [blame^] | 631 | Store store = state->getStore(); |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 632 | RegionBindingsTy B = GetRegionBindings(store); |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 633 | |
| 634 | // Lazily constructed backmap from MemRegions to SubRegions. |
| 635 | typedef llvm::ImmutableSet<const MemRegion*> SubRegionsTy; |
| 636 | typedef llvm::ImmutableMap<const MemRegion*, SubRegionsTy> SubRegionsMapTy; |
| 637 | |
| 638 | // FIXME: As a future optimization we can modifiy BumpPtrAllocator to have |
| 639 | // the ability to reuse memory. This way we can keep TmpAlloc around as |
| 640 | // an instance variable of RegionStoreManager (avoiding repeated malloc |
| 641 | // overhead). |
| 642 | llvm::BumpPtrAllocator TmpAlloc; |
| 643 | |
| 644 | // Factory objects. |
| 645 | SubRegionsMapTy::Factory SubRegMapF(TmpAlloc); |
| 646 | SubRegionsTy::Factory SubRegF(TmpAlloc); |
| 647 | |
| 648 | // The backmap from regions to subregions. |
| 649 | SubRegionsMapTy SubRegMap = SubRegMapF.GetEmptyMap(); |
| 650 | |
| 651 | // Do a pass over the regions in the store. For VarRegions we check if |
| 652 | // the variable is still live and if so add it to the list of live roots. |
| 653 | // For other regions we populate our region backmap. |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 654 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 655 | const MemRegion* R = I.getKey(); |
| 656 | if (const VarRegion* VR = dyn_cast<VarRegion>(R)) { |
| 657 | if (Live.isLive(Loc, VR->getDecl())) |
| 658 | RegionRoots.push_back(VR); // This is a live "root". |
| 659 | } |
| 660 | else { |
| 661 | // Get the super region for R. |
| 662 | const MemRegion* SuperR = cast<SubRegion>(R)->getSuperRegion(); |
| 663 | // Get the current set of subregions for SuperR. |
| 664 | const SubRegionsTy* SRptr = SubRegMap.lookup(SuperR); |
| 665 | SubRegionsTy SR = SRptr ? *SRptr : SubRegF.GetEmptySet(); |
| 666 | // Add R to the subregions of SuperR. |
| 667 | SubRegMap = SubRegMapF.Add(SubRegMap, SuperR, SubRegF.Add(SR, R)); |
| 668 | |
| 669 | // Finally, check if SuperR is a VarRegion. We need to do this |
| 670 | // to also mark SuperR as a root (as it may not have a value directly |
| 671 | // bound to it in the store). |
| 672 | if (const VarRegion* VR = dyn_cast<VarRegion>(SuperR)) { |
| 673 | if (Live.isLive(Loc, VR->getDecl())) |
| 674 | RegionRoots.push_back(VR); // This is a live "root". |
| 675 | } |
| 676 | } |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 677 | } |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 678 | |
| 679 | // Process the worklist of RegionRoots. This performs a "mark-and-sweep" |
| 680 | // of the store. We want to find all live symbols and dead regions. |
| 681 | llvm::SmallPtrSet<const MemRegion*, 10> Marked; |
| 682 | |
| 683 | while (!RegionRoots.empty()) { |
| 684 | // Dequeue the next region on the worklist. |
| 685 | const MemRegion* R = RegionRoots.back(); |
| 686 | RegionRoots.pop_back(); |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 687 | |
Ted Kremenek | c48ea6e | 2008-12-04 02:08:27 +0000 | [diff] [blame] | 688 | // Check if we have already processed this region. |
| 689 | if (Marked.count(R)) continue; |
| 690 | |
| 691 | // Mark this region as processed. This is needed for termination in case |
| 692 | // a region is referenced more than once. |
| 693 | Marked.insert(R); |
| 694 | |
| 695 | // Mark the symbol for any live SymbolicRegion as "live". This means we |
| 696 | // should continue to track that symbol. |
| 697 | if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R)) |
| 698 | LSymbols.insert(SymR->getSymbol()); |
| 699 | |
| 700 | // Get the data binding for R (if any). |
| 701 | RegionBindingsTy::data_type* Xptr = B.lookup(R); |
| 702 | if (Xptr) { |
| 703 | SVal X = *Xptr; |
| 704 | UpdateLiveSymbols(X, LSymbols); // Update the set of live symbols. |
| 705 | |
| 706 | // If X is a region, then add it the RegionRoots. |
| 707 | if (loc::MemRegionVal* RegionX = dyn_cast<loc::MemRegionVal>(&X)) |
| 708 | RegionRoots.push_back(RegionX->getRegion()); |
| 709 | } |
| 710 | |
| 711 | // Get the subregions of R. These are RegionRoots as well since they |
| 712 | // represent values that are also bound to R. |
| 713 | const SubRegionsTy* SRptr = SubRegMap.lookup(R); |
| 714 | if (!SRptr) continue; |
| 715 | SubRegionsTy SR = *SRptr; |
| 716 | |
| 717 | for (SubRegionsTy::iterator I=SR.begin(), E=SR.end(); I!=E; ++I) |
| 718 | RegionRoots.push_back(*I); |
| 719 | } |
| 720 | |
| 721 | // We have now scanned the store, marking reachable regions and symbols |
| 722 | // as live. We now remove all the regions that are dead from the store |
| 723 | // as well as update DSymbols with the set symbols that are now dead. |
| 724 | |
| 725 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
| 726 | const MemRegion* R = I.getKey(); |
| 727 | |
| 728 | // If this region live? Is so, none of its symbols are dead. |
| 729 | if (Marked.count(R)) |
| 730 | continue; |
| 731 | |
| 732 | // Remove this dead region from the store. |
| 733 | store = Remove(store, loc::MemRegionVal(R)); |
| 734 | |
| 735 | // Mark all non-live symbols that this region references as dead. |
| 736 | if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R)) { |
| 737 | SymbolID Sym = SymR->getSymbol(); |
| 738 | if (!LSymbols.count(Sym)) DSymbols.insert(Sym); |
| 739 | } |
| 740 | |
| 741 | SVal X = I.getData(); |
| 742 | SVal::symbol_iterator SI = X.symbol_begin(), SE = X.symbol_end(); |
| 743 | for (; SI != SE; ++SI) { if (!LSymbols.count(*SI)) DSymbols.insert(*SI); } |
| 744 | } |
| 745 | |
Zhongxing Xu | 8916d5b | 2008-11-10 09:39:04 +0000 | [diff] [blame] | 746 | return store; |
| 747 | } |
| 748 | |
Zhongxing Xu | a071eb0 | 2008-10-24 06:01:33 +0000 | [diff] [blame] | 749 | void RegionStoreManager::print(Store store, std::ostream& Out, |
| 750 | const char* nl, const char *sep) { |
| 751 | llvm::raw_os_ostream OS(Out); |
| 752 | RegionBindingsTy B = GetRegionBindings(store); |
| 753 | OS << "Store:" << nl; |
| 754 | |
| 755 | for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) { |
| 756 | OS << ' '; I.getKey()->print(OS); OS << " : "; |
| 757 | I.getData().print(OS); OS << nl; |
| 758 | } |
Zhongxing Xu | 5b8b6f2 | 2008-10-24 04:33:15 +0000 | [diff] [blame] | 759 | } |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 760 | |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 761 | Store RegionStoreManager::InitializeArray(Store store, const TypedRegion* R, |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 762 | SVal Init) { |
| 763 | QualType T = R->getType(getContext()); |
| 764 | assert(T->isArrayType()); |
| 765 | |
| 766 | ConstantArrayType* CAT = cast<ConstantArrayType>(T.getTypePtr()); |
| 767 | |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 768 | llvm::APSInt Size(CAT->getSize(), false); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 769 | |
Sebastian Redl | 5003861 | 2008-12-02 16:47:35 +0000 | [diff] [blame] | 770 | llvm::APSInt i = getBasicVals().getValue(0, Size.getBitWidth(), |
| 771 | Size.isUnsigned()); |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 772 | |
| 773 | // Check if the init expr is a StringLiteral. |
| 774 | if (isa<loc::MemRegionVal>(Init)) { |
| 775 | const MemRegion* InitR = cast<loc::MemRegionVal>(Init).getRegion(); |
| 776 | const StringLiteral* S = cast<StringRegion>(InitR)->getStringLiteral(); |
| 777 | const char* str = S->getStrData(); |
| 778 | unsigned len = S->getByteLength(); |
| 779 | unsigned j = 0; |
| 780 | |
| 781 | for (; i < Size; ++i, ++j) { |
| 782 | SVal Idx = NonLoc::MakeVal(getBasicVals(), i); |
| 783 | ElementRegion* ER = MRMgr.getElementRegion(Idx, R); |
| 784 | |
| 785 | // Copy bytes from the string literal into the target array. Trailing |
| 786 | // bytes in the array that are not covered by the string literal are |
| 787 | // initialized to zero. |
| 788 | SVal V = (j < len) |
| 789 | ? NonLoc::MakeVal(getBasicVals(), str[j], sizeof(char)*8, true) |
| 790 | : NonLoc::MakeVal(getBasicVals(), 0, sizeof(char)*8, true); |
| 791 | |
| 792 | store = Bind(store, loc::MemRegionVal(ER), V); |
| 793 | } |
| 794 | |
| 795 | return store; |
| 796 | } |
| 797 | |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 798 | |
| 799 | nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(Init); |
| 800 | |
| 801 | nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); |
| 802 | |
Zhongxing Xu | 6987c7b | 2008-11-30 05:49:49 +0000 | [diff] [blame] | 803 | for (; i < Size; ++i) { |
| 804 | SVal Idx = NonLoc::MakeVal(getBasicVals(), i); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 805 | ElementRegion* ER = MRMgr.getElementRegion(Idx, R); |
| 806 | |
| 807 | store = Bind(store, loc::MemRegionVal(ER), (VI!=VE) ? *VI : UndefinedVal()); |
| 808 | // The init list might be shorter than the array decl. |
| 809 | if (VI != VE) ++VI; |
| 810 | } |
| 811 | |
| 812 | return store; |
| 813 | } |
| 814 | |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 815 | // Bind all elements of the array to some value. |
| 816 | Store RegionStoreManager::BindArrayToVal(Store store, const TypedRegion* BaseR, |
| 817 | SVal V){ |
Zhongxing Xu | ea8a185 | 2008-10-31 11:02:48 +0000 | [diff] [blame] | 818 | QualType T = BaseR->getType(getContext()); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 819 | assert(T->isArrayType()); |
| 820 | |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 821 | // Only handle constant size array for now. |
| 822 | if (ConstantArrayType* CAT=dyn_cast<ConstantArrayType>(T.getTypePtr())) { |
| 823 | |
| 824 | llvm::APInt Size = CAT->getSize(); |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 825 | llvm::APInt i = llvm::APInt::getNullValue(Size.getBitWidth()); |
Zhongxing Xu | 96cb9fb | 2008-11-28 08:41:39 +0000 | [diff] [blame] | 826 | |
Zhongxing Xu | 1a12a0e | 2008-10-31 10:24:47 +0000 | [diff] [blame] | 827 | for (; i != Size; ++i) { |
Zhongxing Xu | 96cb9fb | 2008-11-28 08:41:39 +0000 | [diff] [blame] | 828 | nonloc::ConcreteInt Idx(getBasicVals().getValue(llvm::APSInt(i, false))); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 829 | |
| 830 | ElementRegion* ER = MRMgr.getElementRegion(Idx, BaseR); |
| 831 | |
Zhongxing Xu | 9b6ceb1 | 2008-11-18 13:11:04 +0000 | [diff] [blame] | 832 | if (CAT->getElementType()->isStructureType()) |
| 833 | store = BindStructToVal(store, ER, V); |
| 834 | else |
| 835 | store = Bind(store, loc::MemRegionVal(ER), V); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 836 | } |
| 837 | } |
| 838 | |
| 839 | return store; |
| 840 | } |
| 841 | |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 842 | Store RegionStoreManager::BindArrayToSymVal(Store store, |
| 843 | const TypedRegion* BaseR) { |
| 844 | QualType T = BaseR->getType(getContext()); |
| 845 | assert(T->isArrayType()); |
| 846 | |
| 847 | if (ConstantArrayType* CAT = dyn_cast<ConstantArrayType>(T.getTypePtr())) { |
| 848 | llvm::APInt Size = CAT->getSize(); |
| 849 | llvm::APInt i = llvm::APInt::getNullValue(Size.getBitWidth()); |
| 850 | for (; i != Size; ++i) { |
Zhongxing Xu | 96cb9fb | 2008-11-28 08:41:39 +0000 | [diff] [blame] | 851 | nonloc::ConcreteInt Idx(getBasicVals().getValue(llvm::APSInt(i, false))); |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 852 | |
| 853 | ElementRegion* ER = MRMgr.getElementRegion(Idx, BaseR); |
| 854 | |
| 855 | if (CAT->getElementType()->isStructureType()) { |
| 856 | store = BindStructToSymVal(store, ER); |
| 857 | } |
| 858 | else { |
| 859 | SVal V = SVal::getSymbolValue(getSymbolManager(), BaseR, |
| 860 | &Idx.getValue(), CAT->getElementType()); |
| 861 | store = Bind(store, loc::MemRegionVal(ER), V); |
| 862 | } |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | return store; |
| 867 | } |
| 868 | |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 869 | Store RegionStoreManager::InitializeStruct(Store store, const TypedRegion* R, |
Zhongxing Xu | ea8a185 | 2008-10-31 11:02:48 +0000 | [diff] [blame] | 870 | SVal Init) { |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 871 | QualType T = R->getType(getContext()); |
| 872 | assert(T->isStructureType()); |
| 873 | |
| 874 | RecordType* RT = cast<RecordType>(T.getTypePtr()); |
| 875 | RecordDecl* RD = RT->getDecl(); |
| 876 | assert(RD->isDefinition()); |
| 877 | |
| 878 | nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(Init); |
| 879 | nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end(); |
| 880 | RecordDecl::field_iterator FI = RD->field_begin(), FE = RD->field_end(); |
| 881 | |
| 882 | for (; FI != FE; ++FI) { |
| 883 | QualType FTy = (*FI)->getType(); |
| 884 | FieldRegion* FR = MRMgr.getFieldRegion(*FI, R); |
| 885 | |
| 886 | if (Loc::IsLocType(FTy) || FTy->isIntegerType()) { |
| 887 | if (VI != VE) { |
| 888 | store = Bind(store, loc::MemRegionVal(FR), *VI); |
| 889 | ++VI; |
| 890 | } else |
| 891 | store = Bind(store, loc::MemRegionVal(FR), UndefinedVal()); |
| 892 | } |
| 893 | else if (FTy->isArrayType()) { |
| 894 | if (VI != VE) { |
| 895 | store = InitializeArray(store, FR, *VI); |
| 896 | ++VI; |
| 897 | } else |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 898 | store = BindArrayToVal(store, FR, UndefinedVal()); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 899 | } |
| 900 | else if (FTy->isStructureType()) { |
| 901 | if (VI != VE) { |
| 902 | store = InitializeStruct(store, FR, *VI); |
| 903 | ++VI; |
| 904 | } else |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 905 | store = BindStructToVal(store, FR, UndefinedVal()); |
Zhongxing Xu | af0a844 | 2008-10-31 10:53:01 +0000 | [diff] [blame] | 906 | } |
| 907 | } |
| 908 | return store; |
| 909 | } |
| 910 | |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 911 | // Bind all fields of the struct to some value. |
| 912 | Store RegionStoreManager::BindStructToVal(Store store, const TypedRegion* BaseR, |
| 913 | SVal V) { |
Zhongxing Xu | ea8a185 | 2008-10-31 11:02:48 +0000 | [diff] [blame] | 914 | QualType T = BaseR->getType(getContext()); |
| 915 | assert(T->isStructureType()); |
| 916 | |
| 917 | const RecordType* RT = cast<RecordType>(T.getTypePtr()); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 918 | RecordDecl* RD = RT->getDecl(); |
| 919 | assert(RD->isDefinition()); |
Zhongxing Xu | ea8a185 | 2008-10-31 11:02:48 +0000 | [diff] [blame] | 920 | |
| 921 | RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end(); |
| 922 | |
| 923 | for (; I != E; ++I) { |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 924 | |
| 925 | QualType FTy = (*I)->getType(); |
| 926 | FieldRegion* FR = MRMgr.getFieldRegion(*I, BaseR); |
| 927 | |
| 928 | if (Loc::IsLocType(FTy) || FTy->isIntegerType()) { |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 929 | store = Bind(store, loc::MemRegionVal(FR), V); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 930 | |
| 931 | } else if (FTy->isArrayType()) { |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 932 | store = BindArrayToVal(store, FR, V); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 933 | |
| 934 | } else if (FTy->isStructureType()) { |
Zhongxing Xu | d463d44 | 2008-11-02 12:13:30 +0000 | [diff] [blame] | 935 | store = BindStructToVal(store, FR, V); |
Zhongxing Xu | a82512a | 2008-10-24 08:42:28 +0000 | [diff] [blame] | 936 | } |
| 937 | } |
| 938 | |
| 939 | return store; |
| 940 | } |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 941 | |
Zhongxing Xu | c3a0599 | 2008-11-19 11:06:24 +0000 | [diff] [blame] | 942 | Store RegionStoreManager::BindStructToSymVal(Store store, |
| 943 | const TypedRegion* BaseR) { |
| 944 | QualType T = BaseR->getType(getContext()); |
| 945 | assert(T->isStructureType()); |
| 946 | |
| 947 | const RecordType* RT = cast<RecordType>(T.getTypePtr()); |
| 948 | RecordDecl* RD = RT->getDecl(); |
| 949 | assert(RD->isDefinition()); |
| 950 | |
| 951 | RecordDecl::field_iterator I = RD->field_begin(), E = RD->field_end(); |
| 952 | |
| 953 | for (; I != E; ++I) { |
| 954 | QualType FTy = (*I)->getType(); |
| 955 | FieldRegion* FR = MRMgr.getFieldRegion(*I, BaseR); |
| 956 | |
| 957 | if (Loc::IsLocType(FTy) || FTy->isIntegerType()) { |
| 958 | store = Bind(store, loc::MemRegionVal(FR), |
| 959 | SVal::getSymbolValue(getSymbolManager(), BaseR, *I, FTy)); |
| 960 | } |
| 961 | else if (FTy->isArrayType()) { |
| 962 | store = BindArrayToSymVal(store, FR); |
| 963 | } |
| 964 | else if (FTy->isStructureType()) { |
| 965 | store = BindStructToSymVal(store, FR); |
| 966 | } |
| 967 | } |
| 968 | |
| 969 | return store; |
| 970 | } |
| 971 | |
Zhongxing Xu | dc0a25d | 2008-11-16 04:07:26 +0000 | [diff] [blame] | 972 | const GRState* RegionStoreManager::AddRegionView(const GRState* St, |
| 973 | const MemRegion* View, |
| 974 | const MemRegion* Base) { |
| 975 | GRStateRef state(St, StateMgr); |
| 976 | |
| 977 | // First, retrieve the region view of the base region. |
| 978 | RegionViewMapTy::data_type* d = state.get<RegionViewMapTy>(Base); |
| 979 | RegionViewTy L = d ? *d : RVFactory.GetEmptyList(); |
| 980 | |
| 981 | // Now add View to the region view. |
| 982 | L = RVFactory.Add(View, L); |
| 983 | |
| 984 | // Create a new state with the new region view. |
| 985 | return state.set<RegionViewMapTy>(Base, L); |
| 986 | } |