blob: 145559e8b81a89eb2a43305cd0d332d492b20d98 [file] [log] [blame]
Zhongxing Xu17892752008-10-08 02:50:44 +00001//== 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 Xudc0a25d2008-11-16 04:07:26 +000019#include "clang/Analysis/PathSensitive/GRStateTrait.h"
Zhongxing Xu17892752008-10-08 02:50:44 +000020#include "clang/Analysis/Analyses/LiveVariables.h"
21
22#include "llvm/ADT/ImmutableMap.h"
Zhongxing Xudc0a25d2008-11-16 04:07:26 +000023#include "llvm/ADT/ImmutableList.h"
Zhongxing Xua071eb02008-10-24 06:01:33 +000024#include "llvm/Support/raw_ostream.h"
Zhongxing Xu17892752008-10-08 02:50:44 +000025#include "llvm/Support/Compiler.h"
26
27using namespace clang;
28
Zhongxing Xubaf03a72008-11-24 09:44:56 +000029// Actual Store type.
Zhongxing Xu1c96b242008-10-17 05:57:07 +000030typedef llvm::ImmutableMap<const MemRegion*, SVal> RegionBindingsTy;
Zhongxing Xubaf03a72008-11-24 09:44:56 +000031
Ted Kremenek50dc1b32008-12-24 01:05:03 +000032//===----------------------------------------------------------------------===//
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 Xu5834ed62009-01-13 01:49:57 +000039typedef llvm::ImmutableSet<const MemRegion*> RegionViews;
Ted Kremenek50dc1b32008-12-24 01:05:03 +000040namespace { class VISIBILITY_HIDDEN RegionViewMap {}; }
41static int RegionViewMapIndex = 0;
Zhongxing Xudc0a25d2008-11-16 04:07:26 +000042namespace clang {
Ted Kremenek50dc1b32008-12-24 01:05:03 +000043 template<> struct GRStateTrait<RegionViewMap>
44 : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*,
45 RegionViews> > {
46
47 static void* GDMIndex() { return &RegionViewMapIndex; }
48 };
Zhongxing Xudc0a25d2008-11-16 04:07:26 +000049}
Zhongxing Xu17892752008-10-08 02:50:44 +000050
Ted Kremenek50dc1b32008-12-24 01:05:03 +000051//===----------------------------------------------------------------------===//
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 Kremenekd6cfbe42009-01-07 22:18:50 +000057//
Ted Kremenek50dc1b32008-12-24 01:05:03 +000058namespace { class VISIBILITY_HIDDEN RegionExtents {}; }
59static int RegionExtentsIndex = 0;
Zhongxing Xubaf03a72008-11-24 09:44:56 +000060namespace clang {
Ted Kremenek50dc1b32008-12-24 01:05:03 +000061 template<> struct GRStateTrait<RegionExtents>
62 : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, SVal> > {
63 static void* GDMIndex() { return &RegionExtentsIndex; }
64 };
Zhongxing Xubaf03a72008-11-24 09:44:56 +000065}
66
Ted Kremenek50dc1b32008-12-24 01:05:03 +000067//===----------------------------------------------------------------------===//
68// Region "killsets".
69//===----------------------------------------------------------------------===//
70//
Zhongxing Xu5834ed62009-01-13 01:49:57 +000071// 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 Kremenek50dc1b32008-12-24 01:05:03 +000076//
77namespace { class VISIBILITY_HIDDEN RegionKills {}; }
Ted Kremenek2ed14be2008-12-05 00:47:52 +000078static int RegionKillsIndex = 0;
Ted Kremenekc48ea6e2008-12-04 02:08:27 +000079namespace clang {
Ted Kremenek2ed14be2008-12-05 00:47:52 +000080 template<> struct GRStateTrait<RegionKills>
Ted Kremenek50dc1b32008-12-24 01:05:03 +000081 : public GRStatePartialTrait< llvm::ImmutableSet<const MemRegion*> > {
Ted Kremenek2ed14be2008-12-05 00:47:52 +000082 static void* GDMIndex() { return &RegionKillsIndex; }
Ted Kremenekc48ea6e2008-12-04 02:08:27 +000083 };
84}
85
Ted Kremenek50dc1b32008-12-24 01:05:03 +000086//===----------------------------------------------------------------------===//
Zhongxing Xu5834ed62009-01-13 01:49:57 +000087// Regions with default values.
Ted Kremenek50dc1b32008-12-24 01:05:03 +000088//===----------------------------------------------------------------------===//
89//
Zhongxing Xu5834ed62009-01-13 01:49:57 +000090// This GDM entry tracks what regions have a default value if they have no bound
91// value and have not been killed.
Ted Kremenek50dc1b32008-12-24 01:05:03 +000092//
93namespace { class VISIBILITY_HIDDEN RegionDefaultValue {}; }
94static int RegionDefaultValueIndex = 0;
95namespace 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 Kremenekc48ea6e2008-12-04 02:08:27 +0000105
Zhongxing Xu17892752008-10-08 02:50:44 +0000106namespace {
107
Ted Kremenek59e8f112009-03-03 01:35:36 +0000108class 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
115public:
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 Kremenek5dc27462009-03-03 02:51:43 +0000124 bool iterSubRegions(const MemRegion* Parent, Visitor& V) const {
Ted Kremenek59e8f112009-03-03 01:35:36 +0000125 Map::iterator I = M.find(Parent);
126
127 if (I == M.end())
Ted Kremenek5dc27462009-03-03 02:51:43 +0000128 return true;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000129
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 Kremenek5dc27462009-03-03 02:51:43 +0000134 return false;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000135 }
Ted Kremenek5dc27462009-03-03 02:51:43 +0000136
137 return true;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000138 }
139};
140
Zhongxing Xu17892752008-10-08 02:50:44 +0000141class VISIBILITY_HIDDEN RegionStoreManager : public StoreManager {
142 RegionBindingsTy::Factory RBFactory;
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000143 RegionViews::Factory RVFactory;
Zhongxing Xudc0a25d2008-11-16 04:07:26 +0000144
Ted Kremenek6fd8f912009-01-22 23:43:57 +0000145 const MemRegion* SelfRegion;
146 const ImplicitParamDecl *SelfDecl;
Zhongxing Xu17892752008-10-08 02:50:44 +0000147
148public:
149 RegionStoreManager(GRStateManager& mgr)
Ted Kremenekc62abc12009-04-21 21:51:34 +0000150 : StoreManager(mgr),
Ted Kremenekd6cfbe42009-01-07 22:18:50 +0000151 RBFactory(mgr.getAllocator()),
Zhongxing Xudc0a25d2008-11-16 04:07:26 +0000152 RVFactory(mgr.getAllocator()),
Ted Kremenekc62abc12009-04-21 21:51:34 +0000153 SelfRegion(0), SelfDecl(0) {
Ted Kremenek6fd8f912009-01-22 23:43:57 +0000154 if (const ObjCMethodDecl* MD =
155 dyn_cast<ObjCMethodDecl>(&StateMgr.getCodeDecl()))
156 SelfDecl = MD->getSelfDecl();
157 }
Zhongxing Xu17892752008-10-08 02:50:44 +0000158
159 virtual ~RegionStoreManager() {}
160
Ted Kremenek14453bf2009-03-03 19:02:42 +0000161 SubRegionMap* getSubRegionMap(const GRState *state);
Ted Kremenek59e8f112009-03-03 01:35:36 +0000162
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000163 const GRState* BindCompoundLiteral(const GRState* St,
164 const CompoundLiteralExpr* CL, SVal V);
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000165
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000166 /// 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 Xu143bf822008-10-25 14:18:57 +0000170 SVal getLValueString(const GRState* St, const StringLiteral* S);
171
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000172 /// 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 Xuf22679e2008-11-07 10:38:33 +0000176 SVal getLValueCompoundLiteral(const GRState* St, const CompoundLiteralExpr*);
177
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000178 /// 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 Xuc4bf72c2008-10-22 13:44:38 +0000181 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 Kremenek3de2d3c2009-03-05 04:50:08 +0000186
187 SVal getLValueFieldOrIvar(const GRState* St, SVal Base, const Decl* D);
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000188
Ted Kremenekf936f452009-05-04 06:18:28 +0000189 SVal getLValueElement(const GRState* St, QualType elementType,
190 SVal Base, SVal Offset);
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000191
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000192 SVal getSizeInElements(const GRState* St, const MemRegion* R);
193
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000194 /// ArrayToPointer - Emulates the "decay" of an array to a pointer
195 /// type. 'Array' represents the lvalue of the array being decayed
196 /// to a pointer, and the returned SVal represents the decayed
197 /// version of that lvalue (i.e., a pointer to the first element of
198 /// the array). This is called by GRExprEngine when evaluating
199 /// casts from arrays to pointers.
Zhongxing Xuf1d537f2009-03-30 05:55:46 +0000200 SVal ArrayToPointer(Loc Array);
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000201
Zhongxing Xu88980592009-05-06 02:42:32 +0000202 CastResult CastRegion(const GRState* state, const MemRegion* R,
203 QualType CastToTy);
204
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000205 SVal EvalBinOp(BinaryOperator::Opcode Op, Loc L, NonLoc R);
206
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000207 /// The high level logic for this method is this:
208 /// Retrieve (L)
209 /// if L has binding
210 /// return L's binding
211 /// else if L is in killset
212 /// return unknown
213 /// else
214 /// if L is on stack or heap
215 /// return undefined
216 /// else
217 /// return symbolic
Ted Kremenek2ed14be2008-12-05 00:47:52 +0000218 SVal Retrieve(const GRState* state, Loc L, QualType T = QualType());
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000219
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000220 const GRState* Bind(const GRState* St, Loc LV, SVal V);
Zhongxing Xu17892752008-10-08 02:50:44 +0000221
Zhongxing Xu9c9ca082008-12-16 02:36:30 +0000222 Store Remove(Store store, Loc LV);
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000223
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000224 Store getInitialStore() { return RBFactory.GetEmptyMap().getRoot(); }
Ted Kremenek9deb0e32008-10-24 20:32:16 +0000225
226 /// getSelfRegion - Returns the region for the 'self' (Objective-C) or
227 /// 'this' object (C++). When used when analyzing a normal function this
228 /// method returns NULL.
229 const MemRegion* getSelfRegion(Store) {
Ted Kremenek6fd8f912009-01-22 23:43:57 +0000230 if (!SelfDecl)
231 return 0;
232
233 if (!SelfRegion) {
234 const ObjCMethodDecl *MD = cast<ObjCMethodDecl>(&StateMgr.getCodeDecl());
235 SelfRegion = MRMgr.getObjCObjectRegion(MD->getClassInterface(),
236 MRMgr.getHeapRegion());
237 }
238
239 return SelfRegion;
Ted Kremenek9deb0e32008-10-24 20:32:16 +0000240 }
Ted Kremenekc48ea6e2008-12-04 02:08:27 +0000241
Ted Kremenek2ed14be2008-12-05 00:47:52 +0000242 /// RemoveDeadBindings - Scans the RegionStore of 'state' for dead values.
243 /// It returns a new Store with these values removed, and populates LSymbols
244 // and DSymbols with the known set of live and dead symbols respectively.
245 Store RemoveDeadBindings(const GRState* state, Stmt* Loc,
Ted Kremenek241677a2009-01-21 22:26:05 +0000246 SymbolReaper& SymReaper,
247 llvm::SmallVectorImpl<const MemRegion*>& RegionRoots);
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000248
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000249 const GRState* BindDecl(const GRState* St, const VarDecl* VD, SVal InitVal);
250
251 const GRState* BindDeclWithNoInit(const GRState* St, const VarDecl* VD) {
252 return St;
253 }
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000254
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000255 const GRState* setExtent(const GRState* St, const MemRegion* R, SVal Extent);
256
Zhongxing Xu17892752008-10-08 02:50:44 +0000257 static inline RegionBindingsTy GetRegionBindings(Store store) {
Zhongxing Xu9c9ca082008-12-16 02:36:30 +0000258 return RegionBindingsTy(static_cast<const RegionBindingsTy::TreeTy*>(store));
Zhongxing Xu17892752008-10-08 02:50:44 +0000259 }
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000260
Zhongxing Xu5b8b6f22008-10-24 04:33:15 +0000261 void print(Store store, std::ostream& Out, const char* nl, const char *sep);
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000262
263 void iterBindings(Store store, BindingsHandler& f) {
264 // FIXME: Implement.
265 }
Zhongxing Xua82512a2008-10-24 08:42:28 +0000266
267private:
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000268 const GRState* BindArray(const GRState* St, const TypedRegion* R, SVal V);
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +0000269
Zhongxing Xu0b242ec2008-12-04 01:12:41 +0000270 /// Retrieve the values in a struct and return a CompoundVal, used when doing
271 /// struct copy:
272 /// struct s x, y;
273 /// x = y;
274 /// y's value is retrieved by this method.
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000275 SVal RetrieveStruct(const GRState* St, const TypedRegion* R);
Zhongxing Xu0b242ec2008-12-04 01:12:41 +0000276
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000277 SVal RetrieveArray(const GRState* St, const TypedRegion* R);
278
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000279 const GRState* BindStruct(const GRState* St, const TypedRegion* R, SVal V);
Zhongxing Xu63123d82008-11-23 04:30:35 +0000280
Zhongxing Xu5834ed62009-01-13 01:49:57 +0000281 /// KillStruct - Set the entire struct to unknown.
282 const GRState* KillStruct(const GRState* St, const TypedRegion* R);
283
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +0000284 // Utility methods.
285 BasicValueFactory& getBasicVals() { return StateMgr.getBasicVals(); }
286 ASTContext& getContext() { return StateMgr.getContext(); }
Zhongxing Xu63123d82008-11-23 04:30:35 +0000287 SymbolManager& getSymbolManager() { return StateMgr.getSymbolManager(); }
Zhongxing Xudc0a25d2008-11-16 04:07:26 +0000288
289 const GRState* AddRegionView(const GRState* St,
290 const MemRegion* View, const MemRegion* Base);
Zhongxing Xu5834ed62009-01-13 01:49:57 +0000291 const GRState* RemoveRegionView(const GRState* St,
292 const MemRegion* View, const MemRegion* Base);
Zhongxing Xu17892752008-10-08 02:50:44 +0000293};
294
295} // end anonymous namespace
296
Ted Kremenek95c7b002008-10-24 01:04:59 +0000297StoreManager* clang::CreateRegionStoreManager(GRStateManager& StMgr) {
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000298 return new RegionStoreManager(StMgr);
Ted Kremenek95c7b002008-10-24 01:04:59 +0000299}
300
Ted Kremenek14453bf2009-03-03 19:02:42 +0000301SubRegionMap* RegionStoreManager::getSubRegionMap(const GRState *state) {
Ted Kremenek59e8f112009-03-03 01:35:36 +0000302 RegionBindingsTy B = GetRegionBindings(state->getStore());
303 RegionStoreSubRegionMap *M = new RegionStoreSubRegionMap();
304
305 for (RegionBindingsTy::iterator I=B.begin(), E=B.end(); I!=E; ++I) {
306 if (const SubRegion* R = dyn_cast<SubRegion>(I.getKey()))
307 M->add(R->getSuperRegion(), R);
308 }
309
Ted Kremenek14453bf2009-03-03 19:02:42 +0000310 return M;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000311}
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000312
313/// getLValueString - Returns an SVal representing the lvalue of a
314/// StringLiteral. Within RegionStore a StringLiteral has an
315/// associated StringRegion, and the lvalue of a StringLiteral is the
316/// lvalue of that region.
Zhongxing Xu143bf822008-10-25 14:18:57 +0000317SVal RegionStoreManager::getLValueString(const GRState* St,
318 const StringLiteral* S) {
319 return loc::MemRegionVal(MRMgr.getStringRegion(S));
320}
321
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000322/// getLValueVar - Returns an SVal that represents the lvalue of a
323/// variable. Within RegionStore a variable has an associated
324/// VarRegion, and the lvalue of the variable is the lvalue of that region.
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000325SVal RegionStoreManager::getLValueVar(const GRState* St, const VarDecl* VD) {
326 return loc::MemRegionVal(MRMgr.getVarRegion(VD));
327}
Zhongxing Xuf22679e2008-11-07 10:38:33 +0000328
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000329/// getLValueCompoundLiteral - Returns an SVal representing the lvalue
330/// of a compound literal. Within RegionStore a compound literal
331/// has an associated region, and the lvalue of the compound literal
332/// is the lvalue of that region.
333SVal
334RegionStoreManager::getLValueCompoundLiteral(const GRState* St,
335 const CompoundLiteralExpr* CL) {
Zhongxing Xuf22679e2008-11-07 10:38:33 +0000336 return loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL));
337}
338
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000339SVal RegionStoreManager::getLValueIvar(const GRState* St, const ObjCIvarDecl* D,
340 SVal Base) {
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000341 return getLValueFieldOrIvar(St, Base, D);
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000342}
343
344SVal RegionStoreManager::getLValueField(const GRState* St, SVal Base,
345 const FieldDecl* D) {
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000346 return getLValueFieldOrIvar(St, Base, D);
347}
348
349SVal RegionStoreManager::getLValueFieldOrIvar(const GRState* St, SVal Base,
350 const Decl* D) {
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000351 if (Base.isUnknownOrUndef())
352 return Base;
353
354 Loc BaseL = cast<Loc>(Base);
355 const MemRegion* BaseR = 0;
356
357 switch (BaseL.getSubKind()) {
358 case loc::MemRegionKind:
359 BaseR = cast<loc::MemRegionVal>(BaseL).getRegion();
Zhongxing Xua1718c72009-04-03 07:33:13 +0000360 if (const SymbolicRegion* SR = dyn_cast<SymbolicRegion>(BaseR)) {
361 SymbolRef Sym = SR->getSymbol();
362 BaseR = MRMgr.getTypedViewRegion(Sym->getType(getContext()), SR);
363 }
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000364 break;
365
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000366 case loc::GotoLabelKind:
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000367 // These are anormal cases. Flag an undefined value.
368 return UndefinedVal();
369
370 case loc::ConcreteIntKind:
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000371 // While these seem funny, this can happen through casts.
372 // FIXME: What we should return is the field offset. For example,
373 // add the field offset to the integer value. That way funny things
374 // like this work properly: &(((struct foo *) 0xa)->f)
375 return Base;
376
377 default:
Zhongxing Xu13d1ee22008-11-07 08:57:30 +0000378 assert(0 && "Unhandled Base.");
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000379 return Base;
380 }
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000381
382 // NOTE: We must have this check first because ObjCIvarDecl is a subclass
383 // of FieldDecl.
384 if (const ObjCIvarDecl *ID = dyn_cast<ObjCIvarDecl>(D))
385 return loc::MemRegionVal(MRMgr.getObjCIvarRegion(ID, BaseR));
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000386
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000387 return loc::MemRegionVal(MRMgr.getFieldRegion(cast<FieldDecl>(D), BaseR));
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000388}
389
Ted Kremenekf936f452009-05-04 06:18:28 +0000390SVal RegionStoreManager::getLValueElement(const GRState* St,
391 QualType elementType,
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000392 SVal Base, SVal Offset) {
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000393
Ted Kremenekde7ec632009-03-09 22:44:49 +0000394 // If the base is an unknown or undefined value, just return it back.
395 // FIXME: For absolute pointer addresses, we just return that value back as
396 // well, although in reality we should return the offset added to that
397 // value.
398 if (Base.isUnknownOrUndef() || isa<loc::ConcreteInt>(Base))
Zhongxing Xu4a1513e2008-10-27 12:23:17 +0000399 return Base;
400
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000401 // Only handle integer offsets... for now.
402 if (!isa<nonloc::ConcreteInt>(Offset))
Zhongxing Xue4d13932008-11-13 09:48:44 +0000403 return UnknownVal();
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000404
Zhongxing Xua48f7372009-02-06 08:44:27 +0000405 const TypedRegion* BaseRegion = 0;
406
Zhongxing Xu3330dcb2009-04-10 06:06:13 +0000407 const MemRegion* R = cast<loc::MemRegionVal>(Base).getRegion();
408 if (const SymbolicRegion* SR = dyn_cast<SymbolicRegion>(R)) {
409 SymbolRef Sym = SR->getSymbol();
Ted Kremeneke8e86482009-03-30 22:20:54 +0000410 BaseRegion = MRMgr.getTypedViewRegion(Sym->getType(getContext()), SR);
Zhongxing Xua1718c72009-04-03 07:33:13 +0000411 }
Zhongxing Xu3330dcb2009-04-10 06:06:13 +0000412 else
413 BaseRegion = cast<TypedRegion>(R);
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000414
415 // Pointer of any type can be cast and used as array base.
416 const ElementRegion *ElemR = dyn_cast<ElementRegion>(BaseRegion);
417
418 if (!ElemR) {
419 //
420 // If the base region is not an ElementRegion, create one.
421 // This can happen in the following example:
422 //
423 // char *p = __builtin_alloc(10);
424 // p[1] = 8;
425 //
Ted Kremenek0312c0e2009-03-01 05:44:08 +0000426 // Observe that 'p' binds to an TypedViewRegion<AllocaRegion>.
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000427 //
Zhongxing Xu5ea2ffc2009-02-19 08:37:16 +0000428
429 // Offset might be unsigned. We have to convert it to signed ConcreteInt.
430 if (nonloc::ConcreteInt* CI = dyn_cast<nonloc::ConcreteInt>(&Offset)) {
431 const llvm::APSInt& OffI = CI->getValue();
432 if (OffI.isUnsigned()) {
433 llvm::APSInt Tmp = OffI;
434 Tmp.setIsSigned(true);
435 Offset = NonLoc::MakeVal(getBasicVals(), Tmp);
436 }
437 }
Ted Kremenekf936f452009-05-04 06:18:28 +0000438 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
439 BaseRegion));
Zhongxing Xue4d13932008-11-13 09:48:44 +0000440 }
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000441
442 SVal BaseIdx = ElemR->getIndex();
443
444 if (!isa<nonloc::ConcreteInt>(BaseIdx))
445 return UnknownVal();
446
447 const llvm::APSInt& BaseIdxI = cast<nonloc::ConcreteInt>(BaseIdx).getValue();
448 const llvm::APSInt& OffI = cast<nonloc::ConcreteInt>(Offset).getValue();
449 assert(BaseIdxI.isSigned());
450
451 // FIXME: This appears to be the assumption of this code. We should review
452 // whether or not BaseIdxI.getBitWidth() < OffI.getBitWidth(). If it
453 // can't we need to put a comment here. If it can, we should handle it.
454 assert(BaseIdxI.getBitWidth() >= OffI.getBitWidth());
Zhongxing Xue4d13932008-11-13 09:48:44 +0000455
Ted Kremenekf936f452009-05-04 06:18:28 +0000456 const TypedRegion *ArrayR = cast<TypedRegion>(ElemR->getSuperRegion());
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000457 SVal NewIdx;
458
459 if (OffI.isUnsigned() || OffI.getBitWidth() < BaseIdxI.getBitWidth()) {
460 // 'Offset' might be unsigned. We have to convert it to signed and
461 // possibly extend it.
462 llvm::APSInt Tmp = OffI;
463
464 if (OffI.getBitWidth() < BaseIdxI.getBitWidth())
465 Tmp.extend(BaseIdxI.getBitWidth());
466
467 Tmp.setIsSigned(true);
468 Tmp += BaseIdxI; // Compute the new offset.
Zhongxing Xu5ea2ffc2009-02-19 08:37:16 +0000469 NewIdx = NonLoc::MakeVal(getBasicVals(), Tmp);
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000470 }
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000471 else
472 NewIdx = nonloc::ConcreteInt(getBasicVals().getValue(BaseIdxI + OffI));
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000473
Ted Kremenekf936f452009-05-04 06:18:28 +0000474 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, NewIdx, ArrayR));
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000475}
476
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000477SVal RegionStoreManager::getSizeInElements(const GRState* St,
478 const MemRegion* R) {
479 if (const VarRegion* VR = dyn_cast<VarRegion>(R)) {
480 // Get the type of the variable.
Ted Kremenek14553ab2009-01-30 00:08:43 +0000481 QualType T = VR->getDesugaredRValueType(getContext());
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000482
Ted Kremenek14553ab2009-01-30 00:08:43 +0000483 // FIXME: Handle variable-length arrays.
484 if (isa<VariableArrayType>(T))
485 return UnknownVal();
486
487 if (const ConstantArrayType* CAT = dyn_cast<ConstantArrayType>(T)) {
488 // return the size as signed integer.
489 return NonLoc::MakeVal(getBasicVals(), CAT->getSize(), false);
490 }
491
492 // Clients can use ordinary variables as if they were arrays. These
493 // essentially are arrays of size 1.
494 return NonLoc::MakeIntVal(getBasicVals(), 1, false);
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000495 }
496
497 if (const StringRegion* SR = dyn_cast<StringRegion>(R)) {
Zhongxing Xu6613d082008-11-24 02:18:56 +0000498 const StringLiteral* Str = SR->getStringLiteral();
Zhongxing Xud0fd3b72008-11-24 02:30:48 +0000499 // We intentionally made the size value signed because it participates in
500 // operations with signed indices.
Ted Kremenek14553ab2009-01-30 00:08:43 +0000501 return NonLoc::MakeIntVal(getBasicVals(), Str->getByteLength()+1, false);
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000502 }
503
Ted Kremenek0312c0e2009-03-01 05:44:08 +0000504 if (const TypedViewRegion* ATR = dyn_cast<TypedViewRegion>(R)) {
Ted Kremenek2e842572009-01-22 23:56:56 +0000505#if 0
506 // FIXME: This logic doesn't really work, as we can have all sorts of
507 // weird cases. For example, this crashes on test case 'rdar-6442306-1.m'.
508 // The weird cases come in when arbitrary casting comes into play, violating
509 // any type-safe programming.
510
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000511 GRStateRef state(St, StateMgr);
512
513 // Get the size of the super region in bytes.
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000514 const SVal* Extent = state.get<RegionExtents>(ATR->getSuperRegion());
515 assert(Extent && "region extent not exist");
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000516
517 // Assume it's ConcreteInt for now.
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000518 llvm::APSInt SSize = cast<nonloc::ConcreteInt>(*Extent).getValue();
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000519
520 // Get the size of the element in bits.
Ted Kremenek6eddeb12008-12-13 21:49:13 +0000521 QualType LvT = ATR->getLValueType(getContext());
522 QualType ElemTy = cast<PointerType>(LvT.getTypePtr())->getPointeeType();
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000523
524 uint64_t X = getContext().getTypeSize(ElemTy);
525
526 const llvm::APSInt& ESize = getBasicVals().getValue(X, SSize.getBitWidth(),
527 false);
528
529 // Calculate the number of elements.
530
531 // FIXME: What do we do with signed-ness problem? Shall we make all APSInts
532 // signed?
533 if (SSize.isUnsigned())
534 SSize.setIsSigned(true);
535
536 // FIXME: move this operation into BasicVals.
537 const llvm::APSInt S =
538 (SSize * getBasicVals().getValue(8, SSize.getBitWidth(), false)) / ESize;
539
540 return NonLoc::MakeVal(getBasicVals(), S);
Ted Kremenek2e842572009-01-22 23:56:56 +0000541#else
542 ATR = ATR;
543 return UnknownVal();
544#endif
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000545 }
546
547 if (const FieldRegion* FR = dyn_cast<FieldRegion>(R)) {
548 // FIXME: Unsupported yet.
549 FR = 0;
550 return UnknownVal();
551 }
Zhongxing Xu369f4292008-11-22 13:23:00 +0000552
Zhongxing Xu02ebefb2009-02-06 08:51:30 +0000553 if (isa<SymbolicRegion>(R)) {
Zhongxing Xua48f7372009-02-06 08:44:27 +0000554 return UnknownVal();
555 }
556
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000557 assert(0 && "Other regions are not supported yet.");
Ted Kremeneka21362d2009-01-06 19:12:06 +0000558 return UnknownVal();
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000559}
560
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000561/// ArrayToPointer - Emulates the "decay" of an array to a pointer
562/// type. 'Array' represents the lvalue of the array being decayed
563/// to a pointer, and the returned SVal represents the decayed
564/// version of that lvalue (i.e., a pointer to the first element of
565/// the array). This is called by GRExprEngine when evaluating casts
566/// from arrays to pointers.
Zhongxing Xuf1d537f2009-03-30 05:55:46 +0000567SVal RegionStoreManager::ArrayToPointer(Loc Array) {
Ted Kremenekabb042f2008-12-13 19:24:37 +0000568 if (!isa<loc::MemRegionVal>(Array))
569 return UnknownVal();
570
571 const MemRegion* R = cast<loc::MemRegionVal>(&Array)->getRegion();
572 const TypedRegion* ArrayR = dyn_cast<TypedRegion>(R);
573
Ted Kremenekbbee1a72009-01-13 01:03:27 +0000574 if (!ArrayR)
Ted Kremenekabb042f2008-12-13 19:24:37 +0000575 return UnknownVal();
576
Ted Kremenekf936f452009-05-04 06:18:28 +0000577 // Strip off typedefs from the ArrayRegion's RvalueType.
578 QualType T = ArrayR->getRValueType(getContext())->getDesugaredType();
579 ArrayType *AT = cast<ArrayType>(T);
580 T = AT->getElementType();
581
Zhongxing Xu63123d82008-11-23 04:30:35 +0000582 nonloc::ConcreteInt Idx(getBasicVals().getZeroWithPtrWidth(false));
Ted Kremenekf936f452009-05-04 06:18:28 +0000583 ElementRegion* ER = MRMgr.getElementRegion(T, Idx, ArrayR);
Zhongxing Xu0b7e6422008-10-26 02:23:57 +0000584
585 return loc::MemRegionVal(ER);
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000586}
587
Zhongxing Xu88980592009-05-06 02:42:32 +0000588RegionStoreManager::CastResult
589RegionStoreManager::CastRegion(const GRState* state, const MemRegion* R,
590 QualType CastToTy) {
591
592 ASTContext& Ctx = StateMgr.getContext();
593
594 // We need to know the real type of CastToTy.
595 QualType ToTy = Ctx.getCanonicalType(CastToTy);
596
597 // Check cast to ObjCQualifiedID type.
598 if (isa<ObjCQualifiedIdType>(ToTy)) {
599 // FIXME: Record the type information aside.
600 return CastResult(state, R);
601 }
602
603 // CodeTextRegion should be cast to only function pointer type.
604 if (isa<CodeTextRegion>(R)) {
605 assert(CastToTy->isFunctionPointerType() || CastToTy->isBlockPointerType());
606 return CastResult(state, R);
607 }
608
609 // Assume we are casting from pointer to pointer. Other cases are handled
610 // elsewhere.
611 QualType PointeeTy = cast<PointerType>(ToTy.getTypePtr())->getPointeeType();
612
613 // Return the same region if the region types are compatible.
614 if (const TypedRegion* TR = dyn_cast<TypedRegion>(R)) {
615 QualType Ta = Ctx.getCanonicalType(TR->getLValueType(Ctx));
616
617 if (Ta == ToTy)
618 return CastResult(state, R);
619 }
620
621 // Process region cast according to the kind of the region being cast.
622
623
624 // FIXME: Need to handle arbitrary downcasts.
625 // FIXME: Handle the case where a TypedViewRegion (layering a SymbolicRegion
626 // or an AllocaRegion is cast to another view, thus causing the memory
627 // to be re-used for a different purpose.
628
629 if (isa<SymbolicRegion>(R) || isa<AllocaRegion>(R)) {
630 const MemRegion* ViewR = MRMgr.getTypedViewRegion(CastToTy, R);
631 return CastResult(AddRegionView(state, ViewR, R), ViewR);
632 }
633
634 // VarRegion, ElementRegion, and FieldRegion has an inherent type. Normally
635 // they should not be cast. We only layer an ElementRegion when the cast-to
636 // pointee type is of smaller size. In other cases, we return the original
637 // VarRegion.
638 if (isa<VarRegion>(R) || isa<ElementRegion>(R) || isa<FieldRegion>(R)
639 || isa<ObjCIvarRegion>(R) || isa<CompoundLiteralRegion>(R)) {
640 // FIXME: create an ElementRegion when the size of the pointee type is
641 // smaller than the region.
Zhongxing Xu88980592009-05-06 02:42:32 +0000642 return CastResult(state, R);
643 }
644
645 if (isa<TypedViewRegion>(R)) {
646 const MemRegion* ViewR = MRMgr.getTypedViewRegion(CastToTy, R);
647 return CastResult(state, ViewR);
648 }
649
650 if (isa<ObjCObjectRegion>(R)) {
651 return CastResult(state, R);
652 }
653
654 assert(0 && "Unprocessed region.");
655}
656
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000657SVal RegionStoreManager::EvalBinOp(BinaryOperator::Opcode Op, Loc L, NonLoc R) {
658 // Assume the base location is MemRegionVal(ElementRegion).
Ted Kremenek5dc27462009-03-03 02:51:43 +0000659 if (!isa<loc::MemRegionVal>(L))
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000660 return UnknownVal();
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000661
Zhongxing Xua1718c72009-04-03 07:33:13 +0000662 const MemRegion* MR = cast<loc::MemRegionVal>(L).getRegion();
663 if (isa<SymbolicRegion>(MR))
664 return UnknownVal();
665
666 const TypedRegion* TR = cast<TypedRegion>(MR);
Zhongxing Xu2b1dc172009-03-11 07:43:49 +0000667 const ElementRegion* ER = dyn_cast<ElementRegion>(TR);
668
669 if (!ER) {
670 // If the region is not element region, create one with index 0. This can
671 // happen in the following example:
672 // char *p = foo();
673 // p += 3;
674 // Note that p binds to a TypedViewRegion(SymbolicRegion).
675 nonloc::ConcreteInt Idx(getBasicVals().getZeroWithPtrWidth(false));
Ted Kremenekf936f452009-05-04 06:18:28 +0000676 ER = MRMgr.getElementRegion(TR->getRValueType(getContext()), Idx, TR);
Zhongxing Xu2b1dc172009-03-11 07:43:49 +0000677 }
678
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000679 SVal Idx = ER->getIndex();
680
681 nonloc::ConcreteInt* Base = dyn_cast<nonloc::ConcreteInt>(&Idx);
682 nonloc::ConcreteInt* Offset = dyn_cast<nonloc::ConcreteInt>(&R);
683
684 // Only support concrete integer indexes for now.
685 if (Base && Offset) {
Ted Kremenek610e81d2009-03-13 15:35:24 +0000686 // FIXME: For now, convert the signedness and bitwidth of offset in case
687 // they don't match. This can result from pointer arithmetic. In reality,
688 // we should figure out what are the proper semantics and implement them.
689 //
Ted Kremenek1060a3c2009-03-13 15:39:16 +0000690 // This addresses the test case test/Analysis/ptr-arith.c
691 //
Ted Kremenek610e81d2009-03-13 15:35:24 +0000692 nonloc::ConcreteInt OffConverted(getBasicVals().Convert(Base->getValue(),
693 Offset->getValue()));
694 SVal NewIdx = Base->EvalBinOp(getBasicVals(), Op, OffConverted);
Ted Kremenekf936f452009-05-04 06:18:28 +0000695 const MemRegion* NewER =
696 MRMgr.getElementRegion(ER->getElementType(), NewIdx,
697 cast<TypedRegion>(ER->getSuperRegion()));
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000698 return Loc::MakeVal(NewER);
699
Ted Kremenek5dc27462009-03-03 02:51:43 +0000700 }
701
702 return UnknownVal();
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000703}
704
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000705SVal RegionStoreManager::Retrieve(const GRState* St, Loc L, QualType T) {
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000706 assert(!isa<UnknownVal>(L) && "location unknown");
707 assert(!isa<UndefinedVal>(L) && "location undefined");
708
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000709 // FIXME: Is this even possible? Shouldn't this be treated as a null
710 // dereference at a higher level?
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000711 if (isa<loc::ConcreteInt>(L))
712 return UndefinedVal();
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000713
Zhongxing Xua1718c72009-04-03 07:33:13 +0000714 const MemRegion* MR = cast<loc::MemRegionVal>(L).getRegion();
715
716 // We return unknown for symbolic region for now. This might be improved.
717 // Example:
718 // void f(int* p) { int x = *p; }
719 if (isa<SymbolicRegion>(MR))
720 return UnknownVal();
721
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000722 // FIXME: Perhaps this method should just take a 'const MemRegion*' argument
723 // instead of 'Loc', and have the other Loc cases handled at a higher level.
Zhongxing Xua1718c72009-04-03 07:33:13 +0000724 const TypedRegion* R = cast<TypedRegion>(MR);
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000725 assert(R && "bad region");
726
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000727 // FIXME: We should eventually handle funny addressing. e.g.:
728 //
729 // int x = ...;
730 // int *p = &x;
731 // char *q = (char*) p;
732 // char c = *q; // returns the first byte of 'x'.
733 //
734 // Such funny addressing will occur due to layering of regions.
735
Zhongxing Xu1038f9f2009-03-09 09:15:51 +0000736 QualType RTy = R->getRValueType(getContext());
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000737
Zhongxing Xu1038f9f2009-03-09 09:15:51 +0000738 if (RTy->isStructureType())
739 return RetrieveStruct(St, R);
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000740
741 if (RTy->isArrayType())
742 return RetrieveArray(St, R);
743
Zhongxing Xu1038f9f2009-03-09 09:15:51 +0000744 // FIXME: handle Vector types.
745 if (RTy->isVectorType())
Ted Kremenek265a3052009-02-24 02:23:11 +0000746 return UnknownVal();
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000747
748 RegionBindingsTy B = GetRegionBindings(St->getStore());
749 RegionBindingsTy::data_type* V = B.lookup(R);
750
751 // Check if the region has a binding.
752 if (V)
753 return *V;
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000754
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000755 GRStateRef state(St, StateMgr);
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000756
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000757 // Check if the region is in killset.
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000758 if (state.contains<RegionKills>(R))
759 return UnknownVal();
760
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000761 // If the region is an element or field, it may have a default value.
Zhongxing Xu562c4d92009-01-23 11:22:12 +0000762 if (isa<ElementRegion>(R) || isa<FieldRegion>(R)) {
763 const MemRegion* SuperR = cast<SubRegion>(R)->getSuperRegion();
764 GRStateTrait<RegionDefaultValue>::lookup_type D =
765 state.get<RegionDefaultValue>(SuperR);
766 if (D)
767 return *D;
768 }
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000769
770 if (const ObjCIvarRegion *IVR = dyn_cast<ObjCIvarRegion>(R)) {
771 const MemRegion *SR = IVR->getSuperRegion();
772
773 // If the super region is 'self' then return the symbol representing
774 // the value of the ivar upon entry to the method.
775 if (SR == SelfRegion) {
776 // FIXME: Do we need to handle the case where the super region
777 // has a view? We want to canonicalize the bindings.
Ted Kremenek8d7f5482009-04-09 22:22:44 +0000778 return ValMgr.getRValueSymbolVal(R);
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000779 }
780
781 // Otherwise, we need a new symbol. For now return Unknown.
782 return UnknownVal();
783 }
Zhongxing Xu562c4d92009-01-23 11:22:12 +0000784
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000785 // The location does not have a bound value. This means that it has
786 // the value it had upon its creation and/or entry to the analyzed
787 // function/method. These are either symbolic values or 'undefined'.
788
789 // We treat function parameters as symbolic values.
Ted Kremenek6fd8f912009-01-22 23:43:57 +0000790 if (const VarRegion* VR = dyn_cast<VarRegion>(R)) {
791 const VarDecl *VD = VR->getDecl();
792
Ted Kremenekcec35252009-03-04 00:23:05 +0000793 if (VD == SelfDecl)
794 return loc::MemRegionVal(getSelfRegion(0));
795
796 if (isa<ParmVarDecl>(VD) || isa<ImplicitParamDecl>(VD) ||
797 VD->hasGlobalStorage()) {
Zhongxing Xud8895f62009-02-19 09:56:08 +0000798 QualType VTy = VD->getType();
799 if (Loc::IsLocType(VTy) || VTy->isIntegerType())
Ted Kremenek8d7f5482009-04-09 22:22:44 +0000800 return ValMgr.getRValueSymbolVal(VR);
Zhongxing Xud8895f62009-02-19 09:56:08 +0000801 else
802 return UnknownVal();
803 }
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000804 }
Ted Kremenek265a3052009-02-24 02:23:11 +0000805
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000806 if (MRMgr.onStack(R) || MRMgr.onHeap(R)) {
807 // All stack variables are considered to have undefined values
808 // upon creation. All heap allocated blocks are considered to
809 // have undefined values as well unless they are explicitly bound
810 // to specific values.
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000811 return UndefinedVal();
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000812 }
813
Zhongxing Xuff8d2042009-03-09 09:31:22 +0000814 // All other integer values are symbolic.
815 if (Loc::IsLocType(RTy) || RTy->isIntegerType())
Ted Kremenek8d7f5482009-04-09 22:22:44 +0000816 return ValMgr.getRValueSymbolVal(R);
Zhongxing Xuff8d2042009-03-09 09:31:22 +0000817 else
818 return UnknownVal();
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000819}
820
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000821SVal RegionStoreManager::RetrieveStruct(const GRState* St,const TypedRegion* R){
Ted Kremenek6eddeb12008-12-13 21:49:13 +0000822 // FIXME: Verify we want getRValueType instead of getLValueType.
823 QualType T = R->getRValueType(getContext());
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +0000824 assert(T->isStructureType());
825
826 const RecordType* RT = cast<RecordType>(T.getTypePtr());
827 RecordDecl* RD = RT->getDecl();
828 assert(RD->isDefinition());
829
830 llvm::ImmutableList<SVal> StructVal = getBasicVals().getEmptySValList();
831
Douglas Gregor6ab35242009-04-09 21:40:53 +0000832 std::vector<FieldDecl *> Fields(RD->field_begin(getContext()),
833 RD->field_end(getContext()));
Douglas Gregor44b43212008-12-11 16:49:14 +0000834
Douglas Gregore267ff32008-12-11 20:41:00 +0000835 for (std::vector<FieldDecl *>::reverse_iterator Field = Fields.rbegin(),
836 FieldEnd = Fields.rend();
837 Field != FieldEnd; ++Field) {
838 FieldRegion* FR = MRMgr.getFieldRegion(*Field, R);
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000839 QualType FTy = (*Field)->getType();
840 SVal FieldValue = Retrieve(St, loc::MemRegionVal(FR), FTy);
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +0000841 StructVal = getBasicVals().consVals(FieldValue, StructVal);
842 }
843
844 return NonLoc::MakeCompoundVal(T, StructVal, getBasicVals());
845}
846
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000847SVal RegionStoreManager::RetrieveArray(const GRState* St, const TypedRegion* R){
848 QualType T = R->getRValueType(getContext());
849 ConstantArrayType* CAT = cast<ConstantArrayType>(T.getTypePtr());
850
851 llvm::ImmutableList<SVal> ArrayVal = getBasicVals().getEmptySValList();
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000852 llvm::APSInt Size(CAT->getSize(), false);
853 llvm::APSInt i = getBasicVals().getValue(0, Size.getBitWidth(),
854 Size.isUnsigned());
855
856 for (; i < Size; ++i) {
857 SVal Idx = NonLoc::MakeVal(getBasicVals(), i);
Ted Kremenekf936f452009-05-04 06:18:28 +0000858 ElementRegion* ER = MRMgr.getElementRegion(R->getRValueType(getContext()),
859 Idx, R);
860 QualType ETy = ER->getElementType();
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000861 SVal ElementVal = Retrieve(St, loc::MemRegionVal(ER), ETy);
862 ArrayVal = getBasicVals().consVals(ElementVal, ArrayVal);
863 }
864
865 return NonLoc::MakeCompoundVal(T, ArrayVal, getBasicVals());
866}
867
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000868const GRState* RegionStoreManager::Bind(const GRState* St, Loc L, SVal V) {
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000869 // If we get here, the location should be a region.
870 const MemRegion* R = cast<loc::MemRegionVal>(L).getRegion();
Zhongxing Xuf0dfa8d2008-10-31 08:10:01 +0000871 assert(R);
872
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000873 // Check if the region is a struct region.
Zhongxing Xuf0dfa8d2008-10-31 08:10:01 +0000874 if (const TypedRegion* TR = dyn_cast<TypedRegion>(R))
Ted Kremenek6eddeb12008-12-13 21:49:13 +0000875 // FIXME: Verify we want getRValueType().
876 if (TR->getRValueType(getContext())->isStructureType())
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000877 return BindStruct(St, TR, V);
Zhongxing Xu17892752008-10-08 02:50:44 +0000878
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000879 Store store = St->getStore();
Zhongxing Xu17892752008-10-08 02:50:44 +0000880 RegionBindingsTy B = GetRegionBindings(store);
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000881
882 if (V.isUnknown()) {
883 // Remove the binding.
884 store = RBFactory.Remove(B, R).getRoot();
885
886 // Add the region to the killset.
887 GRStateRef state(St, StateMgr);
888 St = state.add<RegionKills>(R);
889 }
890 else
891 store = RBFactory.Add(B, R, V).getRoot();
892
893 return StateMgr.MakeStateWithStore(St, store);
Zhongxing Xu17892752008-10-08 02:50:44 +0000894}
895
Zhongxing Xu9c9ca082008-12-16 02:36:30 +0000896Store RegionStoreManager::Remove(Store store, Loc L) {
Ted Kremenek0964a062009-01-21 06:57:53 +0000897 const MemRegion* R = 0;
898
899 if (isa<loc::MemRegionVal>(L))
900 R = cast<loc::MemRegionVal>(L).getRegion();
Ted Kremenek0964a062009-01-21 06:57:53 +0000901
902 if (R) {
903 RegionBindingsTy B = GetRegionBindings(store);
904 return RBFactory.Remove(B, R).getRoot();
905 }
906
907 return store;
Zhongxing Xu9c9ca082008-12-16 02:36:30 +0000908}
909
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000910const GRState* RegionStoreManager::BindDecl(const GRState* St,
911 const VarDecl* VD, SVal InitVal) {
Zhongxing Xua4f28ff2008-11-13 08:41:36 +0000912
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000913 QualType T = VD->getType();
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000914 VarRegion* VR = MRMgr.getVarRegion(VD);
Zhongxing Xuf0dfa8d2008-10-31 08:10:01 +0000915
Ted Kremenek0964a062009-01-21 06:57:53 +0000916 if (T->isArrayType())
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000917 return BindArray(St, VR, InitVal);
Ted Kremenek0964a062009-01-21 06:57:53 +0000918 if (T->isStructureType())
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000919 return BindStruct(St, VR, InitVal);
Zhongxing Xud463d442008-11-02 12:13:30 +0000920
Ted Kremenek0964a062009-01-21 06:57:53 +0000921 return Bind(St, Loc::MakeVal(VR), InitVal);
Zhongxing Xu17892752008-10-08 02:50:44 +0000922}
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000923
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000924// FIXME: this method should be merged into Bind().
925const GRState*
926RegionStoreManager::BindCompoundLiteral(const GRState* St,
927 const CompoundLiteralExpr* CL, SVal V) {
Zhongxing Xuf22679e2008-11-07 10:38:33 +0000928 CompoundLiteralRegion* R = MRMgr.getCompoundLiteralRegion(CL);
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000929 return Bind(St, loc::MemRegionVal(R), V);
Zhongxing Xuf22679e2008-11-07 10:38:33 +0000930}
931
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000932const GRState* RegionStoreManager::setExtent(const GRState* St,
933 const MemRegion* R, SVal Extent) {
934 GRStateRef state(St, StateMgr);
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000935 return state.set<RegionExtents>(R, Extent);
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000936}
937
938
Ted Kremenek241677a2009-01-21 22:26:05 +0000939static void UpdateLiveSymbols(SVal X, SymbolReaper& SymReaper) {
Ted Kremenek02c4d2d2009-03-04 00:11:38 +0000940 if (loc::MemRegionVal *XR = dyn_cast<loc::MemRegionVal>(&X)) {
941 const MemRegion *R = XR->getRegion();
942
943 while (R) {
944 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R)) {
945 SymReaper.markLive(SR->getSymbol());
946 return;
947 }
948
949 if (const SubRegion *SR = dyn_cast<SubRegion>(R)) {
950 R = SR->getSuperRegion();
951 continue;
952 }
953
954 break;
955 }
956
957 return;
958 }
959
Ted Kremenek241677a2009-01-21 22:26:05 +0000960 for (SVal::symbol_iterator SI=X.symbol_begin(), SE=X.symbol_end();SI!=SE;++SI)
961 SymReaper.markLive(*SI);
Ted Kremenekc48ea6e2008-12-04 02:08:27 +0000962}
963
Ted Kremenek2ed14be2008-12-05 00:47:52 +0000964Store RegionStoreManager::RemoveDeadBindings(const GRState* state, Stmt* Loc,
Ted Kremenek241677a2009-01-21 22:26:05 +0000965 SymbolReaper& SymReaper,
966 llvm::SmallVectorImpl<const MemRegion*>& RegionRoots)
967{
Zhongxing Xu8916d5b2008-11-10 09:39:04 +0000968
Ted Kremenek2ed14be2008-12-05 00:47:52 +0000969 Store store = state->getStore();
Zhongxing Xu8916d5b2008-11-10 09:39:04 +0000970 RegionBindingsTy B = GetRegionBindings(store);
Ted Kremenekc48ea6e2008-12-04 02:08:27 +0000971
972 // Lazily constructed backmap from MemRegions to SubRegions.
973 typedef llvm::ImmutableSet<const MemRegion*> SubRegionsTy;
974 typedef llvm::ImmutableMap<const MemRegion*, SubRegionsTy> SubRegionsMapTy;
975
976 // FIXME: As a future optimization we can modifiy BumpPtrAllocator to have
977 // the ability to reuse memory. This way we can keep TmpAlloc around as
978 // an instance variable of RegionStoreManager (avoiding repeated malloc
979 // overhead).
980 llvm::BumpPtrAllocator TmpAlloc;
981
982 // Factory objects.
983 SubRegionsMapTy::Factory SubRegMapF(TmpAlloc);
984 SubRegionsTy::Factory SubRegF(TmpAlloc);
985
986 // The backmap from regions to subregions.
987 SubRegionsMapTy SubRegMap = SubRegMapF.GetEmptyMap();
988
989 // Do a pass over the regions in the store. For VarRegions we check if
990 // the variable is still live and if so add it to the list of live roots.
991 // For other regions we populate our region backmap.
Zhongxing Xuc2fdb072009-03-18 01:54:31 +0000992
993 llvm::SmallVector<const MemRegion*, 10> IntermediateRoots;
994
Zhongxing Xu8916d5b2008-11-10 09:39:04 +0000995 for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
Zhongxing Xuc2fdb072009-03-18 01:54:31 +0000996 IntermediateRoots.push_back(I.getKey());
997 }
998
999 while (!IntermediateRoots.empty()) {
1000 const MemRegion* R = IntermediateRoots.back();
1001 IntermediateRoots.pop_back();
1002
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001003 if (const VarRegion* VR = dyn_cast<VarRegion>(R)) {
Ted Kremenek241677a2009-01-21 22:26:05 +00001004 if (SymReaper.isLive(Loc, VR->getDecl()))
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001005 RegionRoots.push_back(VR); // This is a live "root".
Zhongxing Xu5c86b192009-04-29 09:24:35 +00001006 }
1007 else if (const SymbolicRegion* SR = dyn_cast<SymbolicRegion>(R)) {
1008 if (SymReaper.isLive(SR->getSymbol()))
1009 RegionRoots.push_back(SR);
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001010 }
1011 else {
1012 // Get the super region for R.
1013 const MemRegion* SuperR = cast<SubRegion>(R)->getSuperRegion();
Zhongxing Xuc2fdb072009-03-18 01:54:31 +00001014
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001015 // Get the current set of subregions for SuperR.
1016 const SubRegionsTy* SRptr = SubRegMap.lookup(SuperR);
1017 SubRegionsTy SR = SRptr ? *SRptr : SubRegF.GetEmptySet();
Zhongxing Xuc2fdb072009-03-18 01:54:31 +00001018
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001019 // Add R to the subregions of SuperR.
1020 SubRegMap = SubRegMapF.Add(SubRegMap, SuperR, SubRegF.Add(SR, R));
Zhongxing Xuc2fdb072009-03-18 01:54:31 +00001021
1022 // Super region may be VarRegion or subregion of another VarRegion. Add it
1023 // to the work list.
1024 if (isa<SubRegion>(SuperR))
1025 IntermediateRoots.push_back(SuperR);
Ted Kremenek3de2d3c2009-03-05 04:50:08 +00001026 }
Zhongxing Xu8916d5b2008-11-10 09:39:04 +00001027 }
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001028
1029 // Process the worklist of RegionRoots. This performs a "mark-and-sweep"
1030 // of the store. We want to find all live symbols and dead regions.
1031 llvm::SmallPtrSet<const MemRegion*, 10> Marked;
1032
1033 while (!RegionRoots.empty()) {
1034 // Dequeue the next region on the worklist.
1035 const MemRegion* R = RegionRoots.back();
1036 RegionRoots.pop_back();
Zhongxing Xu8916d5b2008-11-10 09:39:04 +00001037
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001038 // Check if we have already processed this region.
1039 if (Marked.count(R)) continue;
1040
1041 // Mark this region as processed. This is needed for termination in case
1042 // a region is referenced more than once.
1043 Marked.insert(R);
1044
1045 // Mark the symbol for any live SymbolicRegion as "live". This means we
1046 // should continue to track that symbol.
1047 if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R))
Ted Kremenek241677a2009-01-21 22:26:05 +00001048 SymReaper.markLive(SymR->getSymbol());
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001049
1050 // Get the data binding for R (if any).
1051 RegionBindingsTy::data_type* Xptr = B.lookup(R);
1052 if (Xptr) {
1053 SVal X = *Xptr;
Ted Kremenek241677a2009-01-21 22:26:05 +00001054 UpdateLiveSymbols(X, SymReaper); // Update the set of live symbols.
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001055
1056 // If X is a region, then add it the RegionRoots.
1057 if (loc::MemRegionVal* RegionX = dyn_cast<loc::MemRegionVal>(&X))
1058 RegionRoots.push_back(RegionX->getRegion());
1059 }
1060
1061 // Get the subregions of R. These are RegionRoots as well since they
1062 // represent values that are also bound to R.
1063 const SubRegionsTy* SRptr = SubRegMap.lookup(R);
1064 if (!SRptr) continue;
1065 SubRegionsTy SR = *SRptr;
1066
1067 for (SubRegionsTy::iterator I=SR.begin(), E=SR.end(); I!=E; ++I)
1068 RegionRoots.push_back(*I);
1069 }
1070
1071 // We have now scanned the store, marking reachable regions and symbols
1072 // as live. We now remove all the regions that are dead from the store
Ted Kremenek3de2d3c2009-03-05 04:50:08 +00001073 // as well as update DSymbols with the set symbols that are now dead.
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001074 for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
1075 const MemRegion* R = I.getKey();
1076
1077 // If this region live? Is so, none of its symbols are dead.
1078 if (Marked.count(R))
1079 continue;
1080
1081 // Remove this dead region from the store.
Zhongxing Xu9c9ca082008-12-16 02:36:30 +00001082 store = Remove(store, Loc::MakeVal(R));
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001083
1084 // Mark all non-live symbols that this region references as dead.
Ted Kremenek241677a2009-01-21 22:26:05 +00001085 if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R))
1086 SymReaper.maybeDead(SymR->getSymbol());
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001087
1088 SVal X = I.getData();
1089 SVal::symbol_iterator SI = X.symbol_begin(), SE = X.symbol_end();
Ted Kremenek241677a2009-01-21 22:26:05 +00001090 for (; SI != SE; ++SI) SymReaper.maybeDead(*SI);
Ted Kremenekc48ea6e2008-12-04 02:08:27 +00001091 }
1092
Zhongxing Xu8916d5b2008-11-10 09:39:04 +00001093 return store;
1094}
1095
Zhongxing Xua071eb02008-10-24 06:01:33 +00001096void RegionStoreManager::print(Store store, std::ostream& Out,
1097 const char* nl, const char *sep) {
1098 llvm::raw_os_ostream OS(Out);
1099 RegionBindingsTy B = GetRegionBindings(store);
1100 OS << "Store:" << nl;
1101
1102 for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
1103 OS << ' '; I.getKey()->print(OS); OS << " : ";
1104 I.getData().print(OS); OS << nl;
1105 }
Zhongxing Xu5b8b6f22008-10-24 04:33:15 +00001106}
Zhongxing Xua82512a2008-10-24 08:42:28 +00001107
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001108const GRState* RegionStoreManager::BindArray(const GRState* St,
1109 const TypedRegion* R, SVal Init) {
Ted Kremenek6eddeb12008-12-13 21:49:13 +00001110
1111 // FIXME: Verify we should use getLValueType or getRValueType.
Zhongxing Xu2ef93722008-12-14 03:14:52 +00001112 QualType T = R->getRValueType(getContext());
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001113 assert(T->isArrayType());
1114
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001115 // When we are binding the whole array, it always has default value 0.
1116 GRStateRef state(St, StateMgr);
Ted Kremenek14553ab2009-01-30 00:08:43 +00001117 St = state.set<RegionDefaultValue>(R, NonLoc::MakeIntVal(getBasicVals(), 0,
1118 false));
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001119
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001120 ConstantArrayType* CAT = cast<ConstantArrayType>(T.getTypePtr());
1121
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001122 llvm::APSInt Size(CAT->getSize(), false);
Sebastian Redl1be3da52009-01-26 19:54:12 +00001123 llvm::APSInt i = getBasicVals().getValue(0, Size.getBitWidth(),
1124 Size.isUnsigned());
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001125
1126 // Check if the init expr is a StringLiteral.
1127 if (isa<loc::MemRegionVal>(Init)) {
1128 const MemRegion* InitR = cast<loc::MemRegionVal>(Init).getRegion();
1129 const StringLiteral* S = cast<StringRegion>(InitR)->getStringLiteral();
1130 const char* str = S->getStrData();
1131 unsigned len = S->getByteLength();
1132 unsigned j = 0;
1133
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001134 // Copy bytes from the string literal into the target array. Trailing bytes
1135 // in the array that are not covered by the string literal are initialized
1136 // to zero.
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001137 for (; i < Size; ++i, ++j) {
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001138 if (j >= len)
1139 break;
1140
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001141 SVal Idx = NonLoc::MakeVal(getBasicVals(), i);
Ted Kremenekf936f452009-05-04 06:18:28 +00001142 ElementRegion* ER =
1143 MRMgr.getElementRegion(cast<ArrayType>(T)->getElementType(),
1144 Idx, R);
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001145
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001146 SVal V = NonLoc::MakeVal(getBasicVals(), str[j], sizeof(char)*8, true);
1147 St = Bind(St, loc::MemRegionVal(ER), V);
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001148 }
1149
Zhongxing Xubd4f7452009-03-09 06:49:50 +00001150 return St;
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001151 }
1152
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001153 nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(Init);
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001154 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end();
1155
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001156 for (; i < Size; ++i, ++VI) {
1157 // The init list might be shorter than the array decl.
1158 if (VI == VE)
1159 break;
1160
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001161 SVal Idx = NonLoc::MakeVal(getBasicVals(), i);
Ted Kremenekf936f452009-05-04 06:18:28 +00001162 ElementRegion* ER =
1163 MRMgr.getElementRegion(cast<ArrayType>(T)->getElementType(),
1164 Idx, R);
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001165
1166 if (CAT->getElementType()->isStructureType())
1167 St = BindStruct(St, ER, *VI);
1168 else
1169 St = Bind(St, Loc::MakeVal(ER), *VI);
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001170 }
1171
Zhongxing Xubd4f7452009-03-09 06:49:50 +00001172 return St;
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001173}
1174
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001175const GRState*
1176RegionStoreManager::BindStruct(const GRState* St, const TypedRegion* R, SVal V){
Ted Kremenek6eddeb12008-12-13 21:49:13 +00001177 // FIXME: Verify that we should use getRValueType or getLValueType.
1178 QualType T = R->getRValueType(getContext());
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001179 assert(T->isStructureType());
1180
Zhongxing Xub13ecdb2009-03-12 03:45:35 +00001181 const RecordType* RT = T->getAsRecordType();
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001182 RecordDecl* RD = RT->getDecl();
Zhongxing Xuc45a8252009-03-11 09:07:35 +00001183
1184 if (!RD->isDefinition())
1185 return St;
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001186
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001187 if (V.isUnknown())
1188 return KillStruct(St, R);
1189
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001190 nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(V);
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001191 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end();
Douglas Gregor6ab35242009-04-09 21:40:53 +00001192 RecordDecl::field_iterator FI = RD->field_begin(getContext()),
1193 FE = RD->field_end(getContext());
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001194
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001195 for (; FI != FE; ++FI, ++VI) {
1196
1197 // There may be fewer values than fields only when we are initializing a
1198 // struct decl. In this case, mark the region as having default value.
1199 if (VI == VE) {
Zhongxing Xu13020162008-12-24 07:29:24 +00001200 GRStateRef state(St, StateMgr);
Ted Kremenek14553ab2009-01-30 00:08:43 +00001201 const NonLoc& Idx = NonLoc::MakeIntVal(getBasicVals(), 0, false);
1202 St = state.set<RegionDefaultValue>(R, Idx);
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001203 break;
1204 }
1205
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001206 QualType FTy = (*FI)->getType();
1207 FieldRegion* FR = MRMgr.getFieldRegion(*FI, R);
1208
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001209 if (Loc::IsLocType(FTy) || FTy->isIntegerType())
1210 St = Bind(St, Loc::MakeVal(FR), *VI);
Zhongxing Xua82512a2008-10-24 08:42:28 +00001211
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001212 else if (FTy->isArrayType())
1213 St = BindArray(St, FR, *VI);
Zhongxing Xua82512a2008-10-24 08:42:28 +00001214
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001215 else if (FTy->isStructureType())
1216 St = BindStruct(St, FR, *VI);
Zhongxing Xua82512a2008-10-24 08:42:28 +00001217 }
1218
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001219 return St;
Zhongxing Xuc3a05992008-11-19 11:06:24 +00001220}
1221
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001222const GRState* RegionStoreManager::KillStruct(const GRState* St,
1223 const TypedRegion* R){
1224 GRStateRef state(St, StateMgr);
1225
1226 // Kill the struct region because it is assigned "unknown".
1227 St = state.add<RegionKills>(R);
1228
1229 // Set the default value of the struct region to "unknown".
1230 St = state.set<RegionDefaultValue>(R, UnknownVal());
1231
1232 Store store = St->getStore();
1233 RegionBindingsTy B = GetRegionBindings(store);
1234
1235 // Remove all bindings for the subregions of the struct.
1236 for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
1237 const MemRegion* r = I.getKey();
1238 if (const SubRegion* sr = dyn_cast<SubRegion>(r))
1239 if (sr->isSubRegionOf(R))
1240 store = Remove(store, Loc::MakeVal(sr));
Zhongxing Xu9c2a3db2009-01-13 03:07:41 +00001241 // FIXME: Maybe we should also remove the bindings for the "views" of the
1242 // subregions.
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001243 }
1244
1245 return StateMgr.MakeStateWithStore(St, store);
1246}
1247
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001248const GRState* RegionStoreManager::AddRegionView(const GRState* St,
1249 const MemRegion* View,
1250 const MemRegion* Base) {
1251 GRStateRef state(St, StateMgr);
1252
1253 // First, retrieve the region view of the base region.
Ted Kremenek50dc1b32008-12-24 01:05:03 +00001254 const RegionViews* d = state.get<RegionViewMap>(Base);
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001255 RegionViews L = d ? *d : RVFactory.GetEmptySet();
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001256
1257 // Now add View to the region view.
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001258 L = RVFactory.Add(L, View);
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001259
1260 // Create a new state with the new region view.
Ted Kremenek50dc1b32008-12-24 01:05:03 +00001261 return state.set<RegionViewMap>(Base, L);
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001262}
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001263
1264const GRState* RegionStoreManager::RemoveRegionView(const GRState* St,
1265 const MemRegion* View,
1266 const MemRegion* Base) {
1267 GRStateRef state(St, StateMgr);
1268
1269 // Retrieve the region view of the base region.
1270 const RegionViews* d = state.get<RegionViewMap>(Base);
1271
1272 // If the base region has no view, return.
1273 if (!d)
1274 return St;
1275
1276 // Remove the view.
1277 RegionViews V = *d;
1278 V = RVFactory.Remove(V, View);
1279
1280 return state.set<RegionViewMap>(Base, V);
1281}