blob: 2ea2b88df2c6063f96209637ee7c2ad8227b0587 [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"
Zhongxing Xu41fd0182009-05-06 11:51:48 +000021#include "clang/Basic/TargetInfo.h"
Zhongxing Xu17892752008-10-08 02:50:44 +000022
23#include "llvm/ADT/ImmutableMap.h"
Zhongxing Xudc0a25d2008-11-16 04:07:26 +000024#include "llvm/ADT/ImmutableList.h"
Zhongxing Xua071eb02008-10-24 06:01:33 +000025#include "llvm/Support/raw_ostream.h"
Zhongxing Xu17892752008-10-08 02:50:44 +000026#include "llvm/Support/Compiler.h"
27
28using namespace clang;
29
Zhongxing Xubaf03a72008-11-24 09:44:56 +000030// Actual Store type.
Zhongxing Xu1c96b242008-10-17 05:57:07 +000031typedef llvm::ImmutableMap<const MemRegion*, SVal> RegionBindingsTy;
Zhongxing Xubaf03a72008-11-24 09:44:56 +000032
Ted Kremenek50dc1b32008-12-24 01:05:03 +000033//===----------------------------------------------------------------------===//
Ted Kremenek9af46f52009-06-16 22:36:44 +000034// Fine-grained control of RegionStoreManager.
35//===----------------------------------------------------------------------===//
36
37namespace {
38struct VISIBILITY_HIDDEN minimal_features_tag {};
39struct VISIBILITY_HIDDEN maximal_features_tag {};
40
41class VISIBILITY_HIDDEN RegionStoreFeatures {
42 bool SupportsFields;
43 bool SupportsRemaining;
44
45public:
46 RegionStoreFeatures(minimal_features_tag) :
47 SupportsFields(false), SupportsRemaining(false) {}
48
49 RegionStoreFeatures(maximal_features_tag) :
50 SupportsFields(true), SupportsRemaining(false) {}
51
52 void enableFields(bool t) { SupportsFields = t; }
53
54 bool supportsFields() const { return SupportsFields; }
55 bool supportsRemaining() const { return SupportsRemaining; }
56};
57}
58
59//===----------------------------------------------------------------------===//
Ted Kremenek50dc1b32008-12-24 01:05:03 +000060// Region "Views"
61//===----------------------------------------------------------------------===//
62//
63// MemRegions can be layered on top of each other. This GDM entry tracks
64// what are the MemRegions that layer a given MemRegion.
65//
Zhongxing Xu5834ed62009-01-13 01:49:57 +000066typedef llvm::ImmutableSet<const MemRegion*> RegionViews;
Ted Kremenek50dc1b32008-12-24 01:05:03 +000067namespace { class VISIBILITY_HIDDEN RegionViewMap {}; }
68static int RegionViewMapIndex = 0;
Zhongxing Xudc0a25d2008-11-16 04:07:26 +000069namespace clang {
Ted Kremenek50dc1b32008-12-24 01:05:03 +000070 template<> struct GRStateTrait<RegionViewMap>
71 : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*,
72 RegionViews> > {
73
74 static void* GDMIndex() { return &RegionViewMapIndex; }
75 };
Zhongxing Xudc0a25d2008-11-16 04:07:26 +000076}
Zhongxing Xu17892752008-10-08 02:50:44 +000077
Zhongxing Xu20794942009-05-06 08:33:50 +000078// RegionCasts records the current cast type of a region.
79namespace { class VISIBILITY_HIDDEN RegionCasts {}; }
80static int RegionCastsIndex = 0;
81namespace clang {
82 template<> struct GRStateTrait<RegionCasts>
83 : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*,
84 QualType> > {
85 static void* GDMIndex() { return &RegionCastsIndex; }
86 };
87}
88
Ted Kremenek50dc1b32008-12-24 01:05:03 +000089//===----------------------------------------------------------------------===//
90// Region "Extents"
91//===----------------------------------------------------------------------===//
92//
93// MemRegions represent chunks of memory with a size (their "extent"). This
94// GDM entry tracks the extents for regions. Extents are in bytes.
Ted Kremenekd6cfbe42009-01-07 22:18:50 +000095//
Ted Kremenek50dc1b32008-12-24 01:05:03 +000096namespace { class VISIBILITY_HIDDEN RegionExtents {}; }
97static int RegionExtentsIndex = 0;
Zhongxing Xubaf03a72008-11-24 09:44:56 +000098namespace clang {
Ted Kremenek50dc1b32008-12-24 01:05:03 +000099 template<> struct GRStateTrait<RegionExtents>
100 : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, SVal> > {
101 static void* GDMIndex() { return &RegionExtentsIndex; }
102 };
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000103}
104
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000105//===----------------------------------------------------------------------===//
Zhongxing Xu5834ed62009-01-13 01:49:57 +0000106// Regions with default values.
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000107//===----------------------------------------------------------------------===//
108//
Zhongxing Xu5834ed62009-01-13 01:49:57 +0000109// This GDM entry tracks what regions have a default value if they have no bound
110// value and have not been killed.
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000111//
112namespace { class VISIBILITY_HIDDEN RegionDefaultValue {}; }
113static int RegionDefaultValueIndex = 0;
114namespace clang {
115 template<> struct GRStateTrait<RegionDefaultValue>
116 : public GRStatePartialTrait<llvm::ImmutableMap<const MemRegion*, SVal> > {
117 static void* GDMIndex() { return &RegionDefaultValueIndex; }
118 };
119}
120
121//===----------------------------------------------------------------------===//
122// Main RegionStore logic.
123//===----------------------------------------------------------------------===//
Ted Kremenekc48ea6e2008-12-04 02:08:27 +0000124
Zhongxing Xu17892752008-10-08 02:50:44 +0000125namespace {
126
Ted Kremenek59e8f112009-03-03 01:35:36 +0000127class VISIBILITY_HIDDEN RegionStoreSubRegionMap : public SubRegionMap {
128 typedef llvm::DenseMap<const MemRegion*,
129 llvm::ImmutableSet<const MemRegion*> > Map;
130
131 llvm::ImmutableSet<const MemRegion*>::Factory F;
132 Map M;
133
134public:
135 void add(const MemRegion* Parent, const MemRegion* SubRegion) {
136 Map::iterator I = M.find(Parent);
137 M.insert(std::make_pair(Parent,
138 F.Add(I == M.end() ? F.GetEmptySet() : I->second, SubRegion)));
139 }
140
141 ~RegionStoreSubRegionMap() {}
142
Ted Kremenek5dc27462009-03-03 02:51:43 +0000143 bool iterSubRegions(const MemRegion* Parent, Visitor& V) const {
Ted Kremenek59e8f112009-03-03 01:35:36 +0000144 Map::iterator I = M.find(Parent);
145
146 if (I == M.end())
Ted Kremenek5dc27462009-03-03 02:51:43 +0000147 return true;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000148
149 llvm::ImmutableSet<const MemRegion*> S = I->second;
150 for (llvm::ImmutableSet<const MemRegion*>::iterator SI=S.begin(),SE=S.end();
151 SI != SE; ++SI) {
152 if (!V.Visit(Parent, *SI))
Ted Kremenek5dc27462009-03-03 02:51:43 +0000153 return false;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000154 }
Ted Kremenek5dc27462009-03-03 02:51:43 +0000155
156 return true;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000157 }
158};
159
Zhongxing Xu17892752008-10-08 02:50:44 +0000160class VISIBILITY_HIDDEN RegionStoreManager : public StoreManager {
Ted Kremenek9af46f52009-06-16 22:36:44 +0000161 const RegionStoreFeatures Features;
Zhongxing Xu17892752008-10-08 02:50:44 +0000162 RegionBindingsTy::Factory RBFactory;
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000163 RegionViews::Factory RVFactory;
Zhongxing Xudc0a25d2008-11-16 04:07:26 +0000164
Ted Kremenek6fd8f912009-01-22 23:43:57 +0000165 const MemRegion* SelfRegion;
166 const ImplicitParamDecl *SelfDecl;
Zhongxing Xu17892752008-10-08 02:50:44 +0000167
168public:
Ted Kremenek9af46f52009-06-16 22:36:44 +0000169 RegionStoreManager(GRStateManager& mgr, const RegionStoreFeatures &f)
Ted Kremenek48ce7de2009-07-06 20:21:51 +0000170 : StoreManager(mgr, true),
Ted Kremenek9af46f52009-06-16 22:36:44 +0000171 Features(f),
Ted Kremenekd6cfbe42009-01-07 22:18:50 +0000172 RBFactory(mgr.getAllocator()),
Zhongxing Xudc0a25d2008-11-16 04:07:26 +0000173 RVFactory(mgr.getAllocator()),
Ted Kremenekc62abc12009-04-21 21:51:34 +0000174 SelfRegion(0), SelfDecl(0) {
Ted Kremenek6fd8f912009-01-22 23:43:57 +0000175 if (const ObjCMethodDecl* MD =
176 dyn_cast<ObjCMethodDecl>(&StateMgr.getCodeDecl()))
177 SelfDecl = MD->getSelfDecl();
178 }
Zhongxing Xu17892752008-10-08 02:50:44 +0000179
180 virtual ~RegionStoreManager() {}
181
Ted Kremenek14453bf2009-03-03 19:02:42 +0000182 SubRegionMap* getSubRegionMap(const GRState *state);
Ted Kremenek59e8f112009-03-03 01:35:36 +0000183
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000184 /// getLValueString - Returns an SVal representing the lvalue of a
185 /// StringLiteral. Within RegionStore a StringLiteral has an
186 /// associated StringRegion, and the lvalue of a StringLiteral is
187 /// the lvalue of that region.
Ted Kremenek67f28532009-06-17 22:02:04 +0000188 SVal getLValueString(const GRState *state, const StringLiteral* S);
Zhongxing Xu143bf822008-10-25 14:18:57 +0000189
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000190 /// getLValueCompoundLiteral - Returns an SVal representing the
191 /// lvalue of a compound literal. Within RegionStore a compound
192 /// literal has an associated region, and the lvalue of the
193 /// compound literal is the lvalue of that region.
Ted Kremenek67f28532009-06-17 22:02:04 +0000194 SVal getLValueCompoundLiteral(const GRState *state, const CompoundLiteralExpr*);
Zhongxing Xuf22679e2008-11-07 10:38:33 +0000195
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000196 /// getLValueVar - Returns an SVal that represents the lvalue of a
197 /// variable. Within RegionStore a variable has an associated
198 /// VarRegion, and the lvalue of the variable is the lvalue of that region.
Ted Kremenek67f28532009-06-17 22:02:04 +0000199 SVal getLValueVar(const GRState *state, const VarDecl* VD);
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000200
Ted Kremenek67f28532009-06-17 22:02:04 +0000201 SVal getLValueIvar(const GRState *state, const ObjCIvarDecl* D, SVal Base);
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000202
Ted Kremenek67f28532009-06-17 22:02:04 +0000203 SVal getLValueField(const GRState *state, SVal Base, const FieldDecl* D);
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000204
Ted Kremenek67f28532009-06-17 22:02:04 +0000205 SVal getLValueFieldOrIvar(const GRState *state, SVal Base, const Decl* D);
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000206
Ted Kremenek67f28532009-06-17 22:02:04 +0000207 SVal getLValueElement(const GRState *state, QualType elementType,
Ted Kremenekf936f452009-05-04 06:18:28 +0000208 SVal Base, SVal Offset);
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000209
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000210
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000211 /// ArrayToPointer - Emulates the "decay" of an array to a pointer
212 /// type. 'Array' represents the lvalue of the array being decayed
213 /// to a pointer, and the returned SVal represents the decayed
214 /// version of that lvalue (i.e., a pointer to the first element of
215 /// the array). This is called by GRExprEngine when evaluating
216 /// casts from arrays to pointers.
Zhongxing Xuf1d537f2009-03-30 05:55:46 +0000217 SVal ArrayToPointer(Loc Array);
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000218
Ted Kremenek53ba0b62009-06-24 23:06:47 +0000219 SVal EvalBinOp(const GRState *state, BinaryOperator::Opcode Op,Loc L,
Ted Kremenek5c734622009-06-26 00:41:43 +0000220 NonLoc R, QualType resultTy);
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000221
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000222 Store getInitialStore() { return RBFactory.GetEmptyMap().getRoot(); }
Ted Kremenek9deb0e32008-10-24 20:32:16 +0000223
224 /// getSelfRegion - Returns the region for the 'self' (Objective-C) or
225 /// 'this' object (C++). When used when analyzing a normal function this
226 /// method returns NULL.
227 const MemRegion* getSelfRegion(Store) {
Ted Kremenek6fd8f912009-01-22 23:43:57 +0000228 if (!SelfDecl)
229 return 0;
230
231 if (!SelfRegion) {
232 const ObjCMethodDecl *MD = cast<ObjCMethodDecl>(&StateMgr.getCodeDecl());
233 SelfRegion = MRMgr.getObjCObjectRegion(MD->getClassInterface(),
234 MRMgr.getHeapRegion());
235 }
236
237 return SelfRegion;
Ted Kremenek9deb0e32008-10-24 20:32:16 +0000238 }
Ted Kremenek67f28532009-06-17 22:02:04 +0000239
240 //===-------------------------------------------------------------------===//
241 // Binding values to regions.
242 //===-------------------------------------------------------------------===//
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000243
Ted Kremenek67f28532009-06-17 22:02:04 +0000244 const GRState *Bind(const GRState *state, Loc LV, SVal V);
245
246 const GRState *BindCompoundLiteral(const GRState *state,
247 const CompoundLiteralExpr* CL, SVal V);
248
249 const GRState *BindDecl(const GRState *state, const VarDecl* VD, SVal InitVal);
250
251 const GRState *BindDeclWithNoInit(const GRState *state, const VarDecl* VD) {
252 return state;
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000253 }
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000254
Ted Kremenek67f28532009-06-17 22:02:04 +0000255 /// BindStruct - Bind a compound value to a structure.
256 const GRState *BindStruct(const GRState *, const TypedRegion* R, SVal V);
257
258 const GRState *BindArray(const GRState *state, const TypedRegion* R, SVal V);
259
260 /// KillStruct - Set the entire struct to unknown.
261 const GRState *KillStruct(const GRState *state, const TypedRegion* R);
262
263 const GRState *setDefaultValue(const GRState *state, const MemRegion* R, SVal V);
264
265 Store Remove(Store store, Loc LV);
266
267 //===------------------------------------------------------------------===//
268 // Loading values from regions.
269 //===------------------------------------------------------------------===//
270
271 /// The high level logic for this method is this:
272 /// Retrieve (L)
273 /// if L has binding
274 /// return L's binding
275 /// else if L is in killset
276 /// return unknown
277 /// else
278 /// if L is on stack or heap
279 /// return undefined
280 /// else
281 /// return symbolic
282 SVal Retrieve(const GRState *state, Loc L, QualType T = QualType());
Zhongxing Xu490b0f02009-06-25 04:50:44 +0000283
Ted Kremenek5bd2fe32009-07-15 06:09:28 +0000284 SVal RetrieveElement(const GRState *state, const ElementRegion *R);
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000285
Ted Kremenek5bd2fe32009-07-15 06:09:28 +0000286 SVal RetrieveField(const GRState *state, const FieldRegion *R);
287
288 SVal RetrieveObjCIvar(const GRState *state, const ObjCIvarRegion *R);
Ted Kremenek25c54572009-07-20 22:58:02 +0000289
Ted Kremenek9031dd72009-07-21 00:12:07 +0000290 SVal RetrieveVar(const GRState *state, const VarRegion *R);
291
Ted Kremenek25c54572009-07-20 22:58:02 +0000292 SVal RetrieveLazySymbol(const GRState *state, const TypedRegion *R);
293
294 SVal CastRetrievedVal(SVal val, const TypedRegion *R, QualType castTy);
Zhongxing Xu490b0f02009-06-25 04:50:44 +0000295
Ted Kremenek67f28532009-06-17 22:02:04 +0000296 /// Retrieve the values in a struct and return a CompoundVal, used when doing
297 /// struct copy:
298 /// struct s x, y;
299 /// x = y;
300 /// y's value is retrieved by this method.
301 SVal RetrieveStruct(const GRState *St, const TypedRegion* R);
302
303 SVal RetrieveArray(const GRState *St, const TypedRegion* R);
304
305 //===------------------------------------------------------------------===//
306 // State pruning.
307 //===------------------------------------------------------------------===//
308
309 /// RemoveDeadBindings - Scans the RegionStore of 'state' for dead values.
310 /// It returns a new Store with these values removed.
311 Store RemoveDeadBindings(const GRState *state, Stmt* Loc, SymbolReaper& SymReaper,
312 llvm::SmallVectorImpl<const MemRegion*>& RegionRoots);
313
314 //===------------------------------------------------------------------===//
315 // Region "extents".
316 //===------------------------------------------------------------------===//
317
318 const GRState *setExtent(const GRState *state, const MemRegion* R, SVal Extent);
319 SVal getSizeInElements(const GRState *state, const MemRegion* R);
320
321 //===------------------------------------------------------------------===//
322 // Region "views".
323 //===------------------------------------------------------------------===//
324
325 const GRState *AddRegionView(const GRState *state, const MemRegion* View,
326 const MemRegion* Base);
327
328 const GRState *RemoveRegionView(const GRState *state, const MemRegion* View,
329 const MemRegion* Base);
330
331 //===------------------------------------------------------------------===//
332 // Utility methods.
333 //===------------------------------------------------------------------===//
334
Ted Kremenek48ce7de2009-07-06 20:21:51 +0000335 const GRState *setCastType(const GRState *state, const MemRegion* R,
336 QualType T);
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000337
Zhongxing Xu82037252009-07-14 01:12:46 +0000338 const QualType *getCastType(const GRState *state, const MemRegion *R) {
339 return state->get<RegionCasts>(R);
340 }
341
Zhongxing Xu17892752008-10-08 02:50:44 +0000342 static inline RegionBindingsTy GetRegionBindings(Store store) {
Zhongxing Xu9c9ca082008-12-16 02:36:30 +0000343 return RegionBindingsTy(static_cast<const RegionBindingsTy::TreeTy*>(store));
Zhongxing Xu17892752008-10-08 02:50:44 +0000344 }
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000345
Ted Kremenek53ba0b62009-06-24 23:06:47 +0000346 void print(Store store, llvm::raw_ostream& Out, const char* nl,
347 const char *sep);
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000348
349 void iterBindings(Store store, BindingsHandler& f) {
350 // FIXME: Implement.
351 }
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +0000352
Ted Kremenek67f28532009-06-17 22:02:04 +0000353 // FIXME: Remove.
354 BasicValueFactory& getBasicVals() {
355 return StateMgr.getBasicVals();
356 }
357
358 // FIXME: Remove.
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +0000359 ASTContext& getContext() { return StateMgr.getContext(); }
Zhongxing Xu17892752008-10-08 02:50:44 +0000360};
361
362} // end anonymous namespace
363
Zhongxing Xu82037252009-07-14 01:12:46 +0000364static bool isGenericPtr(ASTContext &Ctx, QualType Ty) {
365 if (Ty->isObjCIdType() || Ty->isObjCQualifiedIdType())
366 return true;
367
368 while (true) {
369 Ty = Ctx.getCanonicalType(Ty);
370
371 if (Ty->isVoidType())
372 return true;
373
Ted Kremenek35366a62009-07-17 17:50:17 +0000374 if (const PointerType *PT = Ty->getAsPointerType()) {
Zhongxing Xu82037252009-07-14 01:12:46 +0000375 Ty = PT->getPointeeType();
376 continue;
377 }
378
379 break;
380 }
381
382 return false;
383}
384
Ted Kremenek9af46f52009-06-16 22:36:44 +0000385//===----------------------------------------------------------------------===//
386// RegionStore creation.
387//===----------------------------------------------------------------------===//
388
389StoreManager *clang::CreateRegionStoreManager(GRStateManager& StMgr) {
390 RegionStoreFeatures F = maximal_features_tag();
391 return new RegionStoreManager(StMgr, F);
392}
393
394StoreManager *clang::CreateFieldsOnlyRegionStoreManager(GRStateManager &StMgr) {
395 RegionStoreFeatures F = minimal_features_tag();
396 F.enableFields(true);
397 return new RegionStoreManager(StMgr, F);
Ted Kremenek95c7b002008-10-24 01:04:59 +0000398}
399
Ted Kremenek14453bf2009-03-03 19:02:42 +0000400SubRegionMap* RegionStoreManager::getSubRegionMap(const GRState *state) {
Ted Kremenek59e8f112009-03-03 01:35:36 +0000401 RegionBindingsTy B = GetRegionBindings(state->getStore());
402 RegionStoreSubRegionMap *M = new RegionStoreSubRegionMap();
403
404 for (RegionBindingsTy::iterator I=B.begin(), E=B.end(); I!=E; ++I) {
405 if (const SubRegion* R = dyn_cast<SubRegion>(I.getKey()))
406 M->add(R->getSuperRegion(), R);
407 }
408
Ted Kremenek14453bf2009-03-03 19:02:42 +0000409 return M;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000410}
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000411
Ted Kremenek9af46f52009-06-16 22:36:44 +0000412//===----------------------------------------------------------------------===//
413// getLValueXXX methods.
414//===----------------------------------------------------------------------===//
415
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000416/// getLValueString - Returns an SVal representing the lvalue of a
417/// StringLiteral. Within RegionStore a StringLiteral has an
418/// associated StringRegion, and the lvalue of a StringLiteral is the
419/// lvalue of that region.
Ted Kremenek67f28532009-06-17 22:02:04 +0000420SVal RegionStoreManager::getLValueString(const GRState *St,
Zhongxing Xu143bf822008-10-25 14:18:57 +0000421 const StringLiteral* S) {
422 return loc::MemRegionVal(MRMgr.getStringRegion(S));
423}
424
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000425/// getLValueVar - Returns an SVal that represents the lvalue of a
426/// variable. Within RegionStore a variable has an associated
427/// VarRegion, and the lvalue of the variable is the lvalue of that region.
Ted Kremenek67f28532009-06-17 22:02:04 +0000428SVal RegionStoreManager::getLValueVar(const GRState *St, const VarDecl* VD) {
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000429 return loc::MemRegionVal(MRMgr.getVarRegion(VD));
430}
Zhongxing Xuf22679e2008-11-07 10:38:33 +0000431
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000432/// getLValueCompoundLiteral - Returns an SVal representing the lvalue
433/// of a compound literal. Within RegionStore a compound literal
434/// has an associated region, and the lvalue of the compound literal
435/// is the lvalue of that region.
436SVal
Ted Kremenek67f28532009-06-17 22:02:04 +0000437RegionStoreManager::getLValueCompoundLiteral(const GRState *St,
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000438 const CompoundLiteralExpr* CL) {
Zhongxing Xuf22679e2008-11-07 10:38:33 +0000439 return loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL));
440}
441
Ted Kremenek67f28532009-06-17 22:02:04 +0000442SVal RegionStoreManager::getLValueIvar(const GRState *St, const ObjCIvarDecl* D,
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000443 SVal Base) {
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000444 return getLValueFieldOrIvar(St, Base, D);
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000445}
446
Ted Kremenek67f28532009-06-17 22:02:04 +0000447SVal RegionStoreManager::getLValueField(const GRState *St, SVal Base,
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000448 const FieldDecl* D) {
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000449 return getLValueFieldOrIvar(St, Base, D);
450}
451
Ted Kremenek67f28532009-06-17 22:02:04 +0000452SVal RegionStoreManager::getLValueFieldOrIvar(const GRState *St, SVal Base,
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000453 const Decl* D) {
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000454 if (Base.isUnknownOrUndef())
455 return Base;
456
457 Loc BaseL = cast<Loc>(Base);
458 const MemRegion* BaseR = 0;
459
460 switch (BaseL.getSubKind()) {
461 case loc::MemRegionKind:
462 BaseR = cast<loc::MemRegionVal>(BaseL).getRegion();
463 break;
464
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000465 case loc::GotoLabelKind:
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000466 // These are anormal cases. Flag an undefined value.
467 return UndefinedVal();
468
469 case loc::ConcreteIntKind:
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000470 // While these seem funny, this can happen through casts.
471 // FIXME: What we should return is the field offset. For example,
472 // add the field offset to the integer value. That way funny things
473 // like this work properly: &(((struct foo *) 0xa)->f)
474 return Base;
475
476 default:
Zhongxing Xu13d1ee22008-11-07 08:57:30 +0000477 assert(0 && "Unhandled Base.");
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000478 return Base;
479 }
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000480
481 // NOTE: We must have this check first because ObjCIvarDecl is a subclass
482 // of FieldDecl.
483 if (const ObjCIvarDecl *ID = dyn_cast<ObjCIvarDecl>(D))
484 return loc::MemRegionVal(MRMgr.getObjCIvarRegion(ID, BaseR));
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000485
Ted Kremenek3de2d3c2009-03-05 04:50:08 +0000486 return loc::MemRegionVal(MRMgr.getFieldRegion(cast<FieldDecl>(D), BaseR));
Zhongxing Xuc4bf72c2008-10-22 13:44:38 +0000487}
488
Ted Kremenek67f28532009-06-17 22:02:04 +0000489SVal RegionStoreManager::getLValueElement(const GRState *St,
Ted Kremenekf936f452009-05-04 06:18:28 +0000490 QualType elementType,
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000491 SVal Base, SVal Offset) {
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000492
Ted Kremenekde7ec632009-03-09 22:44:49 +0000493 // If the base is an unknown or undefined value, just return it back.
494 // FIXME: For absolute pointer addresses, we just return that value back as
495 // well, although in reality we should return the offset added to that
496 // value.
497 if (Base.isUnknownOrUndef() || isa<loc::ConcreteInt>(Base))
Zhongxing Xu4a1513e2008-10-27 12:23:17 +0000498 return Base;
499
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000500 // Only handle integer offsets... for now.
501 if (!isa<nonloc::ConcreteInt>(Offset))
Zhongxing Xue4d13932008-11-13 09:48:44 +0000502 return UnknownVal();
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000503
Zhongxing Xuce760782009-05-09 13:20:07 +0000504 const MemRegion* BaseRegion = cast<loc::MemRegionVal>(Base).getRegion();
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000505
506 // Pointer of any type can be cast and used as array base.
507 const ElementRegion *ElemR = dyn_cast<ElementRegion>(BaseRegion);
508
Ted Kremenek46537392009-07-16 01:33:37 +0000509 // Convert the offset to the appropriate size and signedness.
510 Offset = ValMgr.convertToArrayIndex(Offset);
511
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000512 if (!ElemR) {
513 //
514 // If the base region is not an ElementRegion, create one.
515 // This can happen in the following example:
516 //
517 // char *p = __builtin_alloc(10);
518 // p[1] = 8;
519 //
Zhongxing Xuce760782009-05-09 13:20:07 +0000520 // Observe that 'p' binds to an AllocaRegion.
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000521 //
Ted Kremenekf936f452009-05-04 06:18:28 +0000522 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, Offset,
Zhongxing Xu143b2fc2009-06-16 09:55:50 +0000523 BaseRegion, getContext()));
Zhongxing Xue4d13932008-11-13 09:48:44 +0000524 }
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000525
526 SVal BaseIdx = ElemR->getIndex();
527
528 if (!isa<nonloc::ConcreteInt>(BaseIdx))
529 return UnknownVal();
530
531 const llvm::APSInt& BaseIdxI = cast<nonloc::ConcreteInt>(BaseIdx).getValue();
532 const llvm::APSInt& OffI = cast<nonloc::ConcreteInt>(Offset).getValue();
533 assert(BaseIdxI.isSigned());
534
Ted Kremenek46537392009-07-16 01:33:37 +0000535 // Compute the new index.
536 SVal NewIdx = nonloc::ConcreteInt(getBasicVals().getValue(BaseIdxI + OffI));
Ted Kremeneka7ac9442009-01-22 20:27:48 +0000537
Ted Kremenek46537392009-07-16 01:33:37 +0000538 // Construct the new ElementRegion.
539 const MemRegion *ArrayR = ElemR->getSuperRegion();
Zhongxing Xu143b2fc2009-06-16 09:55:50 +0000540 return loc::MemRegionVal(MRMgr.getElementRegion(elementType, NewIdx, ArrayR,
541 getContext()));
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000542}
543
Ted Kremenek9af46f52009-06-16 22:36:44 +0000544//===----------------------------------------------------------------------===//
545// Extents for regions.
546//===----------------------------------------------------------------------===//
547
Ted Kremenek67f28532009-06-17 22:02:04 +0000548SVal RegionStoreManager::getSizeInElements(const GRState *state,
Ted Kremenek7ecbfbc2009-07-10 22:30:06 +0000549 const MemRegion *R) {
550
551 switch (R->getKind()) {
552 case MemRegion::MemSpaceRegionKind:
553 assert(0 && "Cannot index into a MemSpace");
554 return UnknownVal();
555
556 case MemRegion::CodeTextRegionKind:
557 // Technically this can happen if people do funny things with casts.
Ted Kremenek14553ab2009-01-30 00:08:43 +0000558 return UnknownVal();
Ted Kremenek7ecbfbc2009-07-10 22:30:06 +0000559
560 // Not yet handled.
561 case MemRegion::AllocaRegionKind:
562 case MemRegion::CompoundLiteralRegionKind:
563 case MemRegion::ElementRegionKind:
564 case MemRegion::FieldRegionKind:
565 case MemRegion::ObjCIvarRegionKind:
566 case MemRegion::ObjCObjectRegionKind:
567 case MemRegion::SymbolicRegionKind:
568 return UnknownVal();
569
570 case MemRegion::StringRegionKind: {
571 const StringLiteral* Str = cast<StringRegion>(R)->getStringLiteral();
572 // We intentionally made the size value signed because it participates in
573 // operations with signed indices.
574 return ValMgr.makeIntVal(Str->getByteLength()+1, false);
Ted Kremenek14553ab2009-01-30 00:08:43 +0000575 }
Ted Kremenek7ecbfbc2009-07-10 22:30:06 +0000576
577 // TypedViewRegion will soon be removed.
578 case MemRegion::TypedViewRegionKind:
579 return UnknownVal();
Zhongxing Xu20794942009-05-06 08:33:50 +0000580
Ted Kremenek7ecbfbc2009-07-10 22:30:06 +0000581 case MemRegion::VarRegionKind: {
582 const VarRegion* VR = cast<VarRegion>(R);
583 // Get the type of the variable.
584 QualType T = VR->getDesugaredValueType(getContext());
585
586 // FIXME: Handle variable-length arrays.
587 if (isa<VariableArrayType>(T))
588 return UnknownVal();
589
590 if (const ConstantArrayType* CAT = dyn_cast<ConstantArrayType>(T)) {
591 // return the size as signed integer.
592 return ValMgr.makeIntVal(CAT->getSize(), false);
593 }
594
595 const QualType* CastTy = state->get<RegionCasts>(VR);
596
597 // If the VarRegion is cast to other type, compute the size with respect to
598 // that type.
599 if (CastTy) {
600 QualType EleTy =cast<PointerType>(CastTy->getTypePtr())->getPointeeType();
601 QualType VarTy = VR->getValueType(getContext());
602 uint64_t EleSize = getContext().getTypeSize(EleTy);
603 uint64_t VarSize = getContext().getTypeSize(VarTy);
604 assert(VarSize != 0);
605 return ValMgr.makeIntVal(VarSize/EleSize, false);
606 }
607
608 // Clients can use ordinary variables as if they were arrays. These
609 // essentially are arrays of size 1.
610 return ValMgr.makeIntVal(1, false);
Zhongxing Xu41fd0182009-05-06 11:51:48 +0000611 }
Ted Kremenek7ecbfbc2009-07-10 22:30:06 +0000612
613 case MemRegion::BEG_DECL_REGIONS:
614 case MemRegion::END_DECL_REGIONS:
615 case MemRegion::BEG_TYPED_REGIONS:
616 case MemRegion::END_TYPED_REGIONS:
617 assert(0 && "Infeasible region");
618 return UnknownVal();
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000619 }
Ted Kremenek7ecbfbc2009-07-10 22:30:06 +0000620
621 assert(0 && "Unreachable");
Ted Kremeneka21362d2009-01-06 19:12:06 +0000622 return UnknownVal();
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000623}
624
Ted Kremenek67f28532009-06-17 22:02:04 +0000625const GRState *RegionStoreManager::setExtent(const GRState *state,
626 const MemRegion *region,
627 SVal extent) {
628 return state->set<RegionExtents>(region, extent);
Ted Kremenek9af46f52009-06-16 22:36:44 +0000629}
630
631//===----------------------------------------------------------------------===//
632// Location and region casting.
633//===----------------------------------------------------------------------===//
634
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000635/// ArrayToPointer - Emulates the "decay" of an array to a pointer
636/// type. 'Array' represents the lvalue of the array being decayed
637/// to a pointer, and the returned SVal represents the decayed
638/// version of that lvalue (i.e., a pointer to the first element of
639/// the array). This is called by GRExprEngine when evaluating casts
640/// from arrays to pointers.
Zhongxing Xuf1d537f2009-03-30 05:55:46 +0000641SVal RegionStoreManager::ArrayToPointer(Loc Array) {
Ted Kremenekabb042f2008-12-13 19:24:37 +0000642 if (!isa<loc::MemRegionVal>(Array))
643 return UnknownVal();
644
645 const MemRegion* R = cast<loc::MemRegionVal>(&Array)->getRegion();
646 const TypedRegion* ArrayR = dyn_cast<TypedRegion>(R);
647
Ted Kremenekbbee1a72009-01-13 01:03:27 +0000648 if (!ArrayR)
Ted Kremenekabb042f2008-12-13 19:24:37 +0000649 return UnknownVal();
650
Zhongxing Xua82d8aa2009-05-09 03:57:34 +0000651 // Strip off typedefs from the ArrayRegion's ValueType.
652 QualType T = ArrayR->getValueType(getContext())->getDesugaredType();
Ted Kremenekf936f452009-05-04 06:18:28 +0000653 ArrayType *AT = cast<ArrayType>(T);
654 T = AT->getElementType();
655
Ted Kremenek75185b52009-07-16 00:00:11 +0000656 SVal ZeroIdx = ValMgr.makeZeroArrayIndex();
657 ElementRegion* ER = MRMgr.getElementRegion(T, ZeroIdx, ArrayR, getContext());
Zhongxing Xu0b7e6422008-10-26 02:23:57 +0000658
659 return loc::MemRegionVal(ER);
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000660}
661
Ted Kremenek9af46f52009-06-16 22:36:44 +0000662//===----------------------------------------------------------------------===//
663// Pointer arithmetic.
664//===----------------------------------------------------------------------===//
665
Zhongxing Xu262fd032009-05-20 09:00:16 +0000666SVal RegionStoreManager::EvalBinOp(const GRState *state,
Ted Kremenek5c734622009-06-26 00:41:43 +0000667 BinaryOperator::Opcode Op, Loc L, NonLoc R,
668 QualType resultTy) {
Zhongxing Xuc4761f52009-05-09 15:18:12 +0000669 // Assume the base location is MemRegionVal.
Ted Kremenek5dc27462009-03-03 02:51:43 +0000670 if (!isa<loc::MemRegionVal>(L))
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000671 return UnknownVal();
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000672
Zhongxing Xua1718c72009-04-03 07:33:13 +0000673 const MemRegion* MR = cast<loc::MemRegionVal>(L).getRegion();
Zhongxing Xuc4761f52009-05-09 15:18:12 +0000674 const ElementRegion *ER = 0;
Zhongxing Xu262fd032009-05-20 09:00:16 +0000675
Ted Kremenek3bccf082009-07-11 00:58:27 +0000676 switch (MR->getKind()) {
677 case MemRegion::SymbolicRegionKind: {
678 const SymbolicRegion *SR = cast<SymbolicRegion>(MR);
679 QualType T;
680 // If the SymbolicRegion was cast to another type, use that type.
681 if (const QualType *t = state->get<RegionCasts>(SR))
682 T = *t;
683 else {
684 // Otherwise use the symbol's type.
685 SymbolRef Sym = SR->getSymbol();
686 T = Sym->getType(getContext());
687 }
688
Ted Kremenek35366a62009-07-17 17:50:17 +0000689 QualType EleTy = T->getAsPointerType()->getPointeeType();
Ted Kremenek3bccf082009-07-11 00:58:27 +0000690 SVal ZeroIdx = ValMgr.makeZeroArrayIndex();
691 ER = MRMgr.getElementRegion(EleTy, ZeroIdx, SR, getContext());
692 break;
Zhongxing Xu005f07b2009-06-19 04:51:14 +0000693 }
Ted Kremenek3bccf082009-07-11 00:58:27 +0000694 case MemRegion::AllocaRegionKind: {
695 // Get the alloca region's current cast type.
696 const AllocaRegion *AR = cast<AllocaRegion>(MR);
697 QualType T = *(state->get<RegionCasts>(AR));
Ted Kremenek35366a62009-07-17 17:50:17 +0000698 QualType EleTy = T->getAsPointerType()->getPointeeType();
Ted Kremenek3bccf082009-07-11 00:58:27 +0000699 SVal ZeroIdx = ValMgr.makeZeroArrayIndex();
700 ER = MRMgr.getElementRegion(EleTy, ZeroIdx, AR, getContext());
701 break;
702 }
Zhongxing Xua1718c72009-04-03 07:33:13 +0000703
Ted Kremenek3bccf082009-07-11 00:58:27 +0000704 case MemRegion::ElementRegionKind: {
705 ER = cast<ElementRegion>(MR);
706 break;
707 }
708
709 // Not yet handled.
710 case MemRegion::VarRegionKind:
711 case MemRegion::StringRegionKind:
712 case MemRegion::CompoundLiteralRegionKind:
713 case MemRegion::FieldRegionKind:
714 case MemRegion::ObjCObjectRegionKind:
715 case MemRegion::ObjCIvarRegionKind:
716 return UnknownVal();
717
718 // TypedViewRegion will soon be removed.
719 case MemRegion::TypedViewRegionKind:
720 return UnknownVal();
721
722 case MemRegion::CodeTextRegionKind:
723 // Technically this can happen if people do funny things with casts.
724 return UnknownVal();
725
726 case MemRegion::MemSpaceRegionKind:
727 assert(0 && "Cannot perform pointer arithmetic on a MemSpace");
728 return UnknownVal();
729
730 case MemRegion::BEG_DECL_REGIONS:
731 case MemRegion::END_DECL_REGIONS:
732 case MemRegion::BEG_TYPED_REGIONS:
733 case MemRegion::END_TYPED_REGIONS:
734 assert(0 && "Infeasible region");
735 return UnknownVal();
Zhongxing Xu5414a5c2009-06-21 13:24:24 +0000736 }
Zhongxing Xu2b1dc172009-03-11 07:43:49 +0000737
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000738 SVal Idx = ER->getIndex();
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000739 nonloc::ConcreteInt* Base = dyn_cast<nonloc::ConcreteInt>(&Idx);
740 nonloc::ConcreteInt* Offset = dyn_cast<nonloc::ConcreteInt>(&R);
741
742 // Only support concrete integer indexes for now.
743 if (Base && Offset) {
Ted Kremenek46537392009-07-16 01:33:37 +0000744 // FIXME: Should use SValuator here.
745 SVal NewIdx = Base->evalBinOp(ValMgr, Op,
746 cast<nonloc::ConcreteInt>(ValMgr.convertToArrayIndex(*Offset)));
Ted Kremenekf936f452009-05-04 06:18:28 +0000747 const MemRegion* NewER =
Ted Kremenek46537392009-07-16 01:33:37 +0000748 MRMgr.getElementRegion(ER->getElementType(), NewIdx, ER->getSuperRegion(),
749 getContext());
Zhongxing Xud91ee272009-06-23 09:02:15 +0000750 return ValMgr.makeLoc(NewER);
Ted Kremenek5dc27462009-03-03 02:51:43 +0000751 }
752
753 return UnknownVal();
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000754}
755
Ted Kremenek9af46f52009-06-16 22:36:44 +0000756//===----------------------------------------------------------------------===//
757// Loading values from regions.
758//===----------------------------------------------------------------------===//
759
Ted Kremeneka6275a52009-07-15 02:31:43 +0000760static bool IsReinterpreted(QualType RTy, QualType UsedTy, ASTContext &Ctx) {
761 RTy = Ctx.getCanonicalType(RTy);
762 UsedTy = Ctx.getCanonicalType(UsedTy);
763
764 if (RTy == UsedTy)
765 return false;
766
Ted Kremenek25c54572009-07-20 22:58:02 +0000767
768 // Recursively check the types. We basically want to see if a pointer value
769 // is ever reinterpreted as a non-pointer, e.g. void** and intptr_t*
770 // represents a reinterpretation.
771 if (Loc::IsLocType(RTy) && Loc::IsLocType(UsedTy)) {
772 const PointerType *PRTy = RTy->getAsPointerType();
773 const PointerType *PUsedTy = UsedTy->getAsPointerType();
774
775 return PUsedTy && PRTy &&
776 IsReinterpreted(PRTy->getPointeeType(),
777 PUsedTy->getPointeeType(), Ctx);
778 }
779
780 return true;
Ted Kremeneka6275a52009-07-15 02:31:43 +0000781}
782
Ted Kremenek67f28532009-06-17 22:02:04 +0000783SVal RegionStoreManager::Retrieve(const GRState *state, Loc L, QualType T) {
784
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000785 assert(!isa<UnknownVal>(L) && "location unknown");
786 assert(!isa<UndefinedVal>(L) && "location undefined");
787
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000788 // FIXME: Is this even possible? Shouldn't this be treated as a null
789 // dereference at a higher level?
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000790 if (isa<loc::ConcreteInt>(L))
791 return UndefinedVal();
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000792
Ted Kremenek67f28532009-06-17 22:02:04 +0000793 const MemRegion *MR = cast<loc::MemRegionVal>(L).getRegion();
Zhongxing Xua1718c72009-04-03 07:33:13 +0000794
Zhongxing Xu91844122009-05-20 09:18:48 +0000795 // FIXME: return symbolic value for these cases.
Zhongxing Xua1718c72009-04-03 07:33:13 +0000796 // Example:
797 // void f(int* p) { int x = *p; }
Zhongxing Xu91844122009-05-20 09:18:48 +0000798 // char* p = alloca();
799 // read(p);
800 // c = *p;
Ted Kremenek60fbe8f2009-07-14 20:48:22 +0000801 if (isa<AllocaRegion>(MR))
Zhongxing Xua1718c72009-04-03 07:33:13 +0000802 return UnknownVal();
Ted Kremenek60fbe8f2009-07-14 20:48:22 +0000803
804 if (isa<SymbolicRegion>(MR)) {
805 ASTContext &Ctx = getContext();
Zhongxing Xud79bf552009-07-15 05:09:24 +0000806 SVal idx = ValMgr.makeZeroArrayIndex();
Ted Kremeneka6275a52009-07-15 02:31:43 +0000807 assert(!T.isNull());
Ted Kremenek60fbe8f2009-07-14 20:48:22 +0000808 MR = MRMgr.getElementRegion(T, idx, MR, Ctx);
809 }
810
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000811 // FIXME: Perhaps this method should just take a 'const MemRegion*' argument
812 // instead of 'Loc', and have the other Loc cases handled at a higher level.
Ted Kremenek67f28532009-06-17 22:02:04 +0000813 const TypedRegion *R = cast<TypedRegion>(MR);
Ted Kremeneka6275a52009-07-15 02:31:43 +0000814 QualType RTy = R->getValueType(getContext());
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000815
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000816 // FIXME: We should eventually handle funny addressing. e.g.:
817 //
818 // int x = ...;
819 // int *p = &x;
820 // char *q = (char*) p;
821 // char c = *q; // returns the first byte of 'x'.
822 //
823 // Such funny addressing will occur due to layering of regions.
824
Ted Kremeneka6275a52009-07-15 02:31:43 +0000825 ASTContext &Ctx = getContext();
826 if (!T.isNull() && IsReinterpreted(RTy, T, Ctx)) {
Ted Kremenek46537392009-07-16 01:33:37 +0000827 SVal ZeroIdx = ValMgr.makeZeroArrayIndex();
828 R = MRMgr.getElementRegion(T, ZeroIdx, R, Ctx);
Ted Kremeneka6275a52009-07-15 02:31:43 +0000829 RTy = T;
Ted Kremenek41fb0df2009-07-15 04:23:32 +0000830 assert(Ctx.getCanonicalType(RTy) ==
831 Ctx.getCanonicalType(R->getValueType(Ctx)));
Ted Kremeneka6275a52009-07-15 02:31:43 +0000832 }
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000833
Zhongxing Xu1038f9f2009-03-09 09:15:51 +0000834 if (RTy->isStructureType())
Ted Kremenek67f28532009-06-17 22:02:04 +0000835 return RetrieveStruct(state, R);
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000836
837 if (RTy->isArrayType())
Ted Kremenek67f28532009-06-17 22:02:04 +0000838 return RetrieveArray(state, R);
Zhongxing Xu3e001f32009-05-03 00:27:40 +0000839
Zhongxing Xu1038f9f2009-03-09 09:15:51 +0000840 // FIXME: handle Vector types.
841 if (RTy->isVectorType())
Ted Kremenek265a3052009-02-24 02:23:11 +0000842 return UnknownVal();
Zhongxing Xu99c20302009-06-28 14:16:39 +0000843
844 if (const FieldRegion* FR = dyn_cast<FieldRegion>(R))
Ted Kremenek25c54572009-07-20 22:58:02 +0000845 return CastRetrievedVal(RetrieveField(state, FR), FR, T);
Zhongxing Xu99c20302009-06-28 14:16:39 +0000846
847 if (const ElementRegion* ER = dyn_cast<ElementRegion>(R))
Ted Kremenek25c54572009-07-20 22:58:02 +0000848 return CastRetrievedVal(RetrieveElement(state, ER), ER, T);
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000849
Ted Kremenek25c54572009-07-20 22:58:02 +0000850 if (const ObjCIvarRegion *IVR = dyn_cast<ObjCIvarRegion>(R))
851 return CastRetrievedVal(RetrieveObjCIvar(state, IVR), IVR, T);
Ted Kremenek9031dd72009-07-21 00:12:07 +0000852
853 if (const VarRegion *VR = dyn_cast<VarRegion>(R))
854 return CastRetrievedVal(RetrieveVar(state, VR), VR, T);
Ted Kremenek25c54572009-07-20 22:58:02 +0000855
Ted Kremenek67f28532009-06-17 22:02:04 +0000856 RegionBindingsTy B = GetRegionBindings(state->getStore());
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000857 RegionBindingsTy::data_type* V = B.lookup(R);
858
859 // Check if the region has a binding.
860 if (V)
861 return *V;
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000862
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000863 // The location does not have a bound value. This means that it has
864 // the value it had upon its creation and/or entry to the analyzed
865 // function/method. These are either symbolic values or 'undefined'.
866
Ted Kremenek265a3052009-02-24 02:23:11 +0000867
Ted Kremenekbb7c96f2009-06-23 18:17:08 +0000868 if (R->hasHeapOrStackStorage()) {
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000869 // All stack variables are considered to have undefined values
870 // upon creation. All heap allocated blocks are considered to
871 // have undefined values as well unless they are explicitly bound
872 // to specific values.
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000873 return UndefinedVal();
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000874 }
875
Zhongxing Xu88c675f2009-06-18 06:29:10 +0000876 // If the region is already cast to another type, use that type to create the
877 // symbol value.
878 if (const QualType *p = state->get<RegionCasts>(R)) {
879 QualType T = *p;
Ted Kremenek35366a62009-07-17 17:50:17 +0000880 RTy = T->getAsPointerType()->getPointeeType();
Zhongxing Xu88c675f2009-06-18 06:29:10 +0000881 }
882
Ted Kremenekbb2b4332009-07-02 22:16:42 +0000883 // All other values are symbolic.
884 return ValMgr.getRegionValueSymbolValOrUnknown(R, RTy);
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000885}
886
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000887SVal RegionStoreManager::RetrieveElement(const GRState* state,
888 const ElementRegion* R) {
889 // Check if the region has a binding.
890 RegionBindingsTy B = GetRegionBindings(state->getStore());
Ted Kremenek921109a2009-07-01 23:19:52 +0000891 if (const SVal* V = B.lookup(R))
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000892 return *V;
893
Ted Kremenek921109a2009-07-01 23:19:52 +0000894 const MemRegion* superR = R->getSuperRegion();
895
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000896 // Check if the region is an element region of a string literal.
Ted Kremenek921109a2009-07-01 23:19:52 +0000897 if (const StringRegion *StrR=dyn_cast<StringRegion>(superR)) {
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000898 const StringLiteral *Str = StrR->getStringLiteral();
899 SVal Idx = R->getIndex();
900 if (nonloc::ConcreteInt *CI = dyn_cast<nonloc::ConcreteInt>(&Idx)) {
901 int64_t i = CI->getValue().getSExtValue();
902 char c;
903 if (i == Str->getByteLength())
904 c = '\0';
905 else
906 c = Str->getStrData()[i];
907 return ValMgr.makeIntVal(c, getContext().CharTy);
908 }
909 }
910
Zhongxing Xu7abe0192009-06-30 12:32:59 +0000911 // Check if the super region has a default value.
Ted Kremenek921109a2009-07-01 23:19:52 +0000912 if (const SVal *D = state->get<RegionDefaultValue>(superR)) {
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000913 if (D->hasConjuredSymbol())
914 return ValMgr.getRegionValueSymbolVal(R);
915 else
916 return *D;
917 }
918
Zhongxing Xu7abe0192009-06-30 12:32:59 +0000919 // Check if the super region has a binding.
Ted Kremeneka6275a52009-07-15 02:31:43 +0000920 if (const SVal *V = B.lookup(superR)) {
921 if (SymbolRef parentSym = V->getAsSymbol())
922 return ValMgr.getDerivedRegionValueSymbolVal(parentSym, R);
923
924 // Other cases: give up.
Zhongxing Xu8834af32009-07-03 06:11:41 +0000925 return UnknownVal();
Zhongxing Xu7abe0192009-06-30 12:32:59 +0000926 }
Ted Kremenek921109a2009-07-01 23:19:52 +0000927
928 if (R->hasHeapStorage()) {
929 // FIXME: If the region has heap storage and we know nothing special
930 // about its bindings, should we instead return UnknownVal? Seems like
931 // we should only return UndefinedVal in the cases where we know the value
932 // will be undefined.
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000933 return UndefinedVal();
Ted Kremenek921109a2009-07-01 23:19:52 +0000934 }
935
Ted Kremenekdc147262009-07-02 22:02:15 +0000936 if (R->hasStackStorage() && !R->hasParametersStorage()) {
Ted Kremenek921109a2009-07-01 23:19:52 +0000937 // Currently we don't reason specially about Clang-style vectors. Check
938 // if superR is a vector and if so return Unknown.
939 if (const TypedRegion *typedSuperR = dyn_cast<TypedRegion>(superR)) {
940 if (typedSuperR->getValueType(getContext())->isVectorType())
941 return UnknownVal();
942 }
943
944 return UndefinedVal();
945 }
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000946
947 QualType Ty = R->getValueType(getContext());
948
949 // If the region is already cast to another type, use that type to create the
950 // symbol value.
951 if (const QualType *p = state->get<RegionCasts>(R))
Ted Kremenek35366a62009-07-17 17:50:17 +0000952 Ty = (*p)->getAsPointerType()->getPointeeType();
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000953
Ted Kremenekbb2b4332009-07-02 22:16:42 +0000954 return ValMgr.getRegionValueSymbolValOrUnknown(R, Ty);
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000955}
956
Zhongxing Xu490b0f02009-06-25 04:50:44 +0000957SVal RegionStoreManager::RetrieveField(const GRState* state,
958 const FieldRegion* R) {
959 QualType Ty = R->getValueType(getContext());
960
961 // Check if the region has a binding.
962 RegionBindingsTy B = GetRegionBindings(state->getStore());
Ted Kremenek8b2ba312009-07-01 23:30:34 +0000963 if (const SVal* V = B.lookup(R))
Zhongxing Xu490b0f02009-06-25 04:50:44 +0000964 return *V;
965
Ted Kremenek8b2ba312009-07-01 23:30:34 +0000966 const MemRegion* superR = R->getSuperRegion();
967 if (const SVal* D = state->get<RegionDefaultValue>(superR)) {
Zhongxing Xu490b0f02009-06-25 04:50:44 +0000968 if (D->hasConjuredSymbol())
969 return ValMgr.getRegionValueSymbolVal(R);
970
971 if (D->isZeroConstant())
972 return ValMgr.makeZeroVal(Ty);
973
974 if (D->isUnknown())
975 return *D;
976
977 assert(0 && "Unknown default value");
978 }
979
Ted Kremenekdc147262009-07-02 22:02:15 +0000980 // FIXME: Is this correct? Should it be UnknownVal?
981 if (R->hasHeapStorage())
982 return UndefinedVal();
983
984 if (R->hasStackStorage() && !R->hasParametersStorage())
Zhongxing Xu490b0f02009-06-25 04:50:44 +0000985 return UndefinedVal();
986
987 // If the region is already cast to another type, use that type to create the
988 // symbol value.
989 if (const QualType *p = state->get<RegionCasts>(R)) {
990 QualType tmp = *p;
Ted Kremenek35366a62009-07-17 17:50:17 +0000991 Ty = tmp->getAsPointerType()->getPointeeType();
Zhongxing Xu490b0f02009-06-25 04:50:44 +0000992 }
993
Ted Kremenekbb2b4332009-07-02 22:16:42 +0000994 // All other values are symbolic.
995 return ValMgr.getRegionValueSymbolValOrUnknown(R, Ty);
Zhongxing Xu490b0f02009-06-25 04:50:44 +0000996}
997
Ted Kremenek5bd2fe32009-07-15 06:09:28 +0000998SVal RegionStoreManager::RetrieveObjCIvar(const GRState* state,
999 const ObjCIvarRegion* R) {
1000
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001001 // Check if the region has a binding.
1002 RegionBindingsTy B = GetRegionBindings(state->getStore());
1003
1004 if (const SVal* V = B.lookup(R))
1005 return *V;
1006
1007 const MemRegion *superR = R->getSuperRegion();
1008
1009 // Check if the super region has a binding.
1010 if (const SVal *V = B.lookup(superR)) {
1011 if (SymbolRef parentSym = V->getAsSymbol())
1012 return ValMgr.getDerivedRegionValueSymbolVal(parentSym, R);
1013
1014 // Other cases: give up.
1015 return UnknownVal();
1016 }
1017
Ted Kremenek25c54572009-07-20 22:58:02 +00001018 return RetrieveLazySymbol(state, R);
1019}
1020
Ted Kremenek9031dd72009-07-21 00:12:07 +00001021SVal RegionStoreManager::RetrieveVar(const GRState *state,
1022 const VarRegion *R) {
1023
1024 // Check if the region has a binding.
1025 RegionBindingsTy B = GetRegionBindings(state->getStore());
1026
1027 if (const SVal* V = B.lookup(R))
1028 return *V;
1029
1030 // Lazily derive a value for the VarRegion.
1031 const VarDecl *VD = R->getDecl();
1032
1033 if (VD == SelfDecl)
1034 return loc::MemRegionVal(getSelfRegion(0));
1035
1036 if (R->hasGlobalsOrParametersStorage())
1037 return ValMgr.getRegionValueSymbolValOrUnknown(R, VD->getType());
1038
1039 return UndefinedVal();
1040}
1041
Ted Kremenek25c54572009-07-20 22:58:02 +00001042SVal RegionStoreManager::RetrieveLazySymbol(const GRState *state,
1043 const TypedRegion *R) {
1044
1045 QualType valTy = R->getValueType(getContext());
1046
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001047 // If the region is already cast to another type, use that type to create the
1048 // symbol value.
Ted Kremenek25c54572009-07-20 22:58:02 +00001049 if (const QualType *ty = state->get<RegionCasts>(R)) {
1050 if (const PointerType *PT = (*ty)->getAsPointerType()) {
1051 QualType castTy = PT->getPointeeType();
1052
1053 if (!IsReinterpreted(valTy, castTy, getContext()))
1054 valTy = castTy;
1055 }
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001056 }
1057
1058 // All other values are symbolic.
Ted Kremenek25c54572009-07-20 22:58:02 +00001059 return ValMgr.getRegionValueSymbolValOrUnknown(R, valTy);
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001060}
1061
Zhongxing Xu88c675f2009-06-18 06:29:10 +00001062SVal RegionStoreManager::RetrieveStruct(const GRState *state,
1063 const TypedRegion* R){
Zhongxing Xua82d8aa2009-05-09 03:57:34 +00001064 QualType T = R->getValueType(getContext());
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +00001065 assert(T->isStructureType());
1066
Zhongxing Xub7507d12009-06-11 07:27:30 +00001067 const RecordType* RT = T->getAsStructureType();
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +00001068 RecordDecl* RD = RT->getDecl();
1069 assert(RD->isDefinition());
1070
1071 llvm::ImmutableList<SVal> StructVal = getBasicVals().getEmptySValList();
1072
Ted Kremenek67f28532009-06-17 22:02:04 +00001073 // FIXME: We shouldn't use a std::vector. If RecordDecl doesn't have a
1074 // reverse iterator, we should implement one.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001075 std::vector<FieldDecl *> Fields(RD->field_begin(), RD->field_end());
Douglas Gregor44b43212008-12-11 16:49:14 +00001076
Douglas Gregore267ff32008-12-11 20:41:00 +00001077 for (std::vector<FieldDecl *>::reverse_iterator Field = Fields.rbegin(),
1078 FieldEnd = Fields.rend();
1079 Field != FieldEnd; ++Field) {
1080 FieldRegion* FR = MRMgr.getFieldRegion(*Field, R);
Zhongxing Xu3e001f32009-05-03 00:27:40 +00001081 QualType FTy = (*Field)->getType();
Ted Kremenek67f28532009-06-17 22:02:04 +00001082 SVal FieldValue = Retrieve(state, loc::MemRegionVal(FR), FTy);
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +00001083 StructVal = getBasicVals().consVals(FieldValue, StructVal);
1084 }
1085
Zhongxing Xud91ee272009-06-23 09:02:15 +00001086 return ValMgr.makeCompoundVal(T, StructVal);
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +00001087}
1088
Ted Kremenek67f28532009-06-17 22:02:04 +00001089SVal RegionStoreManager::RetrieveArray(const GRState *state,
1090 const TypedRegion * R) {
1091
Zhongxing Xua82d8aa2009-05-09 03:57:34 +00001092 QualType T = R->getValueType(getContext());
Zhongxing Xu3e001f32009-05-03 00:27:40 +00001093 ConstantArrayType* CAT = cast<ConstantArrayType>(T.getTypePtr());
1094
1095 llvm::ImmutableList<SVal> ArrayVal = getBasicVals().getEmptySValList();
Ted Kremenek46537392009-07-16 01:33:37 +00001096 uint64_t size = CAT->getSize().getZExtValue();
1097 for (uint64_t i = 0; i < size; ++i) {
1098 SVal Idx = ValMgr.makeArrayIndex(i);
Zhongxing Xu143b2fc2009-06-16 09:55:50 +00001099 ElementRegion* ER = MRMgr.getElementRegion(CAT->getElementType(), Idx, R,
1100 getContext());
Ted Kremenekf936f452009-05-04 06:18:28 +00001101 QualType ETy = ER->getElementType();
Ted Kremenek67f28532009-06-17 22:02:04 +00001102 SVal ElementVal = Retrieve(state, loc::MemRegionVal(ER), ETy);
Zhongxing Xu3e001f32009-05-03 00:27:40 +00001103 ArrayVal = getBasicVals().consVals(ElementVal, ArrayVal);
1104 }
1105
Zhongxing Xud91ee272009-06-23 09:02:15 +00001106 return ValMgr.makeCompoundVal(T, ArrayVal);
Zhongxing Xu3e001f32009-05-03 00:27:40 +00001107}
1108
Ted Kremenek25c54572009-07-20 22:58:02 +00001109SVal RegionStoreManager::CastRetrievedVal(SVal V, const TypedRegion *R,
1110 QualType castTy) {
1111
Ted Kremenek9031dd72009-07-21 00:12:07 +00001112 if (castTy.isNull())
1113 return V;
1114
1115 ASTContext &Ctx = getContext();
1116 QualType valTy = R->getValueType(Ctx);
1117 castTy = Ctx.getCanonicalType(castTy);
1118
1119
1120 if (valTy == castTy)
Ted Kremenek25c54572009-07-20 22:58:02 +00001121 return V;
1122
1123 return ValMgr.getSValuator().EvalCast(V, castTy);
1124}
1125
Ted Kremenek9af46f52009-06-16 22:36:44 +00001126//===----------------------------------------------------------------------===//
1127// Binding values to regions.
1128//===----------------------------------------------------------------------===//
Zhongxing Xu17892752008-10-08 02:50:44 +00001129
Zhongxing Xu9c9ca082008-12-16 02:36:30 +00001130Store RegionStoreManager::Remove(Store store, Loc L) {
Ted Kremenek0964a062009-01-21 06:57:53 +00001131 const MemRegion* R = 0;
1132
1133 if (isa<loc::MemRegionVal>(L))
1134 R = cast<loc::MemRegionVal>(L).getRegion();
Ted Kremenek0964a062009-01-21 06:57:53 +00001135
1136 if (R) {
1137 RegionBindingsTy B = GetRegionBindings(store);
1138 return RBFactory.Remove(B, R).getRoot();
1139 }
1140
1141 return store;
Zhongxing Xu9c9ca082008-12-16 02:36:30 +00001142}
1143
Ted Kremenek67f28532009-06-17 22:02:04 +00001144const GRState *RegionStoreManager::Bind(const GRState *state, Loc L, SVal V) {
Zhongxing Xu87453d12009-06-28 10:16:11 +00001145 if (isa<loc::ConcreteInt>(L))
1146 return state;
1147
Ted Kremenek9af46f52009-06-16 22:36:44 +00001148 // If we get here, the location should be a region.
1149 const MemRegion* R = cast<loc::MemRegionVal>(L).getRegion();
Ted Kremenek9af46f52009-06-16 22:36:44 +00001150
1151 // Check if the region is a struct region.
1152 if (const TypedRegion* TR = dyn_cast<TypedRegion>(R))
1153 if (TR->getValueType(getContext())->isStructureType())
Ted Kremenek67f28532009-06-17 22:02:04 +00001154 return BindStruct(state, TR, V);
Ted Kremenek9af46f52009-06-16 22:36:44 +00001155
Ted Kremenek67f28532009-06-17 22:02:04 +00001156 RegionBindingsTy B = GetRegionBindings(state->getStore());
Ted Kremenek9af46f52009-06-16 22:36:44 +00001157
Zhongxing Xue4df9c42009-06-25 05:52:16 +00001158 B = RBFactory.Add(B, R, V);
Ted Kremenek9af46f52009-06-16 22:36:44 +00001159
Ted Kremenek67f28532009-06-17 22:02:04 +00001160 return state->makeWithStore(B.getRoot());
Ted Kremenek9af46f52009-06-16 22:36:44 +00001161}
1162
Ted Kremenek67f28532009-06-17 22:02:04 +00001163const GRState *RegionStoreManager::BindDecl(const GRState *state,
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001164 const VarDecl* VD, SVal InitVal) {
Zhongxing Xua4f28ff2008-11-13 08:41:36 +00001165
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001166 QualType T = VD->getType();
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001167 VarRegion* VR = MRMgr.getVarRegion(VD);
Zhongxing Xuf0dfa8d2008-10-31 08:10:01 +00001168
Ted Kremenek0964a062009-01-21 06:57:53 +00001169 if (T->isArrayType())
Ted Kremenek67f28532009-06-17 22:02:04 +00001170 return BindArray(state, VR, InitVal);
Ted Kremenek0964a062009-01-21 06:57:53 +00001171 if (T->isStructureType())
Ted Kremenek67f28532009-06-17 22:02:04 +00001172 return BindStruct(state, VR, InitVal);
Zhongxing Xud463d442008-11-02 12:13:30 +00001173
Zhongxing Xud91ee272009-06-23 09:02:15 +00001174 return Bind(state, ValMgr.makeLoc(VR), InitVal);
Zhongxing Xu17892752008-10-08 02:50:44 +00001175}
Zhongxing Xu53bcdd42008-10-21 05:29:26 +00001176
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001177// FIXME: this method should be merged into Bind().
Ted Kremenek67f28532009-06-17 22:02:04 +00001178const GRState *
1179RegionStoreManager::BindCompoundLiteral(const GRState *state,
1180 const CompoundLiteralExpr* CL,
1181 SVal V) {
1182
Zhongxing Xuf22679e2008-11-07 10:38:33 +00001183 CompoundLiteralRegion* R = MRMgr.getCompoundLiteralRegion(CL);
Ted Kremenek67f28532009-06-17 22:02:04 +00001184 return Bind(state, loc::MemRegionVal(R), V);
Zhongxing Xuf22679e2008-11-07 10:38:33 +00001185}
1186
Ted Kremenek67f28532009-06-17 22:02:04 +00001187const GRState *RegionStoreManager::BindArray(const GRState *state,
Ted Kremenek46537392009-07-16 01:33:37 +00001188 const TypedRegion* R,
Ted Kremenek67f28532009-06-17 22:02:04 +00001189 SVal Init) {
1190
Zhongxing Xua82d8aa2009-05-09 03:57:34 +00001191 QualType T = R->getValueType(getContext());
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001192 ConstantArrayType* CAT = cast<ConstantArrayType>(T.getTypePtr());
Zhongxing Xu087d6c22009-06-23 05:23:38 +00001193 QualType ElementTy = CAT->getElementType();
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001194
Ted Kremenek46537392009-07-16 01:33:37 +00001195 uint64_t size = CAT->getSize().getZExtValue();
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001196
1197 // Check if the init expr is a StringLiteral.
1198 if (isa<loc::MemRegionVal>(Init)) {
1199 const MemRegion* InitR = cast<loc::MemRegionVal>(Init).getRegion();
1200 const StringLiteral* S = cast<StringRegion>(InitR)->getStringLiteral();
1201 const char* str = S->getStrData();
1202 unsigned len = S->getByteLength();
1203 unsigned j = 0;
1204
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001205 // Copy bytes from the string literal into the target array. Trailing bytes
1206 // in the array that are not covered by the string literal are initialized
1207 // to zero.
Ted Kremenek46537392009-07-16 01:33:37 +00001208 for (uint64_t i = 0; i < size; ++i, ++j) {
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001209 if (j >= len)
1210 break;
1211
Ted Kremenek46537392009-07-16 01:33:37 +00001212 SVal Idx = ValMgr.makeArrayIndex(i);
1213 ElementRegion* ER = MRMgr.getElementRegion(ElementTy, Idx, R,
1214 getContext());
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001215
Zhongxing Xud91ee272009-06-23 09:02:15 +00001216 SVal V = ValMgr.makeIntVal(str[j], sizeof(char)*8, true);
Ted Kremenek67f28532009-06-17 22:02:04 +00001217 state = Bind(state, loc::MemRegionVal(ER), V);
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001218 }
1219
Ted Kremenek67f28532009-06-17 22:02:04 +00001220 return state;
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001221 }
1222
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001223 nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(Init);
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001224 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end();
Ted Kremenek46537392009-07-16 01:33:37 +00001225 uint64_t i = 0;
1226
1227 for (; i < size; ++i, ++VI) {
Zhongxing Xu087d6c22009-06-23 05:23:38 +00001228 // The init list might be shorter than the array length.
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001229 if (VI == VE)
1230 break;
1231
Ted Kremenek46537392009-07-16 01:33:37 +00001232 SVal Idx = ValMgr.makeArrayIndex(i);
Zhongxing Xu087d6c22009-06-23 05:23:38 +00001233 ElementRegion* ER = MRMgr.getElementRegion(ElementTy, Idx, R, getContext());
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001234
1235 if (CAT->getElementType()->isStructureType())
Ted Kremenek67f28532009-06-17 22:02:04 +00001236 state = BindStruct(state, ER, *VI);
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001237 else
Zhongxing Xud91ee272009-06-23 09:02:15 +00001238 state = Bind(state, ValMgr.makeLoc(ER), *VI);
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001239 }
1240
Zhongxing Xue3a765f2009-06-24 00:56:31 +00001241 // If the init list is shorter than the array length, set the array default
1242 // value.
Ted Kremenek46537392009-07-16 01:33:37 +00001243 if (i < size) {
Zhongxing Xue3a765f2009-06-24 00:56:31 +00001244 if (ElementTy->isIntegerType()) {
Zhongxing Xu087d6c22009-06-23 05:23:38 +00001245 SVal V = ValMgr.makeZeroVal(ElementTy);
Zhongxing Xue3a765f2009-06-24 00:56:31 +00001246 state = setDefaultValue(state, R, V);
Zhongxing Xu087d6c22009-06-23 05:23:38 +00001247 }
1248 }
1249
Ted Kremenek67f28532009-06-17 22:02:04 +00001250 return state;
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001251}
1252
Ted Kremenek67f28532009-06-17 22:02:04 +00001253const GRState *
1254RegionStoreManager::BindStruct(const GRState *state, const TypedRegion* R,
1255 SVal V) {
1256
1257 if (!Features.supportsFields())
1258 return state;
1259
Zhongxing Xua82d8aa2009-05-09 03:57:34 +00001260 QualType T = R->getValueType(getContext());
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001261 assert(T->isStructureType());
1262
Ted Kremenek35366a62009-07-17 17:50:17 +00001263 const RecordType* RT = T->getAsRecordType();
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001264 RecordDecl* RD = RT->getDecl();
Zhongxing Xuc45a8252009-03-11 09:07:35 +00001265
1266 if (!RD->isDefinition())
Ted Kremenek67f28532009-06-17 22:02:04 +00001267 return state;
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001268
Ted Kremenek67f28532009-06-17 22:02:04 +00001269 // We may get non-CompoundVal accidentally due to imprecise cast logic.
1270 // Ignore them and kill the field values.
1271 if (V.isUnknown() || !isa<nonloc::CompoundVal>(V))
1272 return KillStruct(state, R);
Zhongxing Xu3f6978a2009-06-11 09:11:27 +00001273
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001274 nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(V);
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001275 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end();
Zhongxing Xudbdf2192009-06-23 05:43:16 +00001276
1277 RecordDecl::field_iterator FI, FE;
1278
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001279 for (FI = RD->field_begin(), FE = RD->field_end(); FI != FE; ++FI, ++VI) {
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001280
Zhongxing Xudbdf2192009-06-23 05:43:16 +00001281 if (VI == VE)
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001282 break;
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001283
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001284 QualType FTy = (*FI)->getType();
1285 FieldRegion* FR = MRMgr.getFieldRegion(*FI, R);
1286
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001287 if (Loc::IsLocType(FTy) || FTy->isIntegerType())
Zhongxing Xud91ee272009-06-23 09:02:15 +00001288 state = Bind(state, ValMgr.makeLoc(FR), *VI);
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001289 else if (FTy->isArrayType())
Ted Kremenek67f28532009-06-17 22:02:04 +00001290 state = BindArray(state, FR, *VI);
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001291 else if (FTy->isStructureType())
Ted Kremenek67f28532009-06-17 22:02:04 +00001292 state = BindStruct(state, FR, *VI);
Zhongxing Xua82512a2008-10-24 08:42:28 +00001293 }
1294
Zhongxing Xudbdf2192009-06-23 05:43:16 +00001295 // There may be fewer values in the initialize list than the fields of struct.
Zhongxing Xu490b0f02009-06-25 04:50:44 +00001296 if (FI != FE)
1297 state = setDefaultValue(state, R, ValMgr.makeIntVal(0, false));
Zhongxing Xudbdf2192009-06-23 05:43:16 +00001298
Ted Kremenek67f28532009-06-17 22:02:04 +00001299 return state;
Zhongxing Xuc3a05992008-11-19 11:06:24 +00001300}
1301
Ted Kremenek67f28532009-06-17 22:02:04 +00001302const GRState *RegionStoreManager::KillStruct(const GRState *state,
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001303 const TypedRegion* R){
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001304
Zhongxing Xue4df9c42009-06-25 05:52:16 +00001305 // Set the default value of the struct region to "unknown".
1306 state = state->set<RegionDefaultValue>(R, UnknownVal());
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001307
1308 // Remove all bindings for the subregions of the struct.
Zhongxing Xue4df9c42009-06-25 05:52:16 +00001309 Store store = state->getStore();
1310 RegionBindingsTy B = GetRegionBindings(store);
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001311 for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
Ted Kremenek67f28532009-06-17 22:02:04 +00001312 const MemRegion* R = I.getKey();
1313 if (const SubRegion* subRegion = dyn_cast<SubRegion>(R))
1314 if (subRegion->isSubRegionOf(R))
Zhongxing Xud91ee272009-06-23 09:02:15 +00001315 store = Remove(store, ValMgr.makeLoc(subRegion));
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001316 }
1317
Ted Kremenek67f28532009-06-17 22:02:04 +00001318 return state->makeWithStore(store);
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001319}
1320
Ted Kremenek9af46f52009-06-16 22:36:44 +00001321//===----------------------------------------------------------------------===//
1322// Region views.
1323//===----------------------------------------------------------------------===//
1324
Ted Kremenek67f28532009-06-17 22:02:04 +00001325const GRState *RegionStoreManager::AddRegionView(const GRState *state,
1326 const MemRegion* View,
1327 const MemRegion* Base) {
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001328
1329 // First, retrieve the region view of the base region.
Ted Kremenek67f28532009-06-17 22:02:04 +00001330 const RegionViews* d = state->get<RegionViewMap>(Base);
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001331 RegionViews L = d ? *d : RVFactory.GetEmptySet();
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001332
1333 // Now add View to the region view.
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001334 L = RVFactory.Add(L, View);
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001335
1336 // Create a new state with the new region view.
Ted Kremenek67f28532009-06-17 22:02:04 +00001337 return state->set<RegionViewMap>(Base, L);
Zhongxing Xudc0a25d2008-11-16 04:07:26 +00001338}
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001339
Ted Kremenek67f28532009-06-17 22:02:04 +00001340const GRState *RegionStoreManager::RemoveRegionView(const GRState *state,
1341 const MemRegion* View,
1342 const MemRegion* Base) {
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001343 // Retrieve the region view of the base region.
Ted Kremenek67f28532009-06-17 22:02:04 +00001344 const RegionViews* d = state->get<RegionViewMap>(Base);
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001345
1346 // If the base region has no view, return.
1347 if (!d)
Ted Kremenek67f28532009-06-17 22:02:04 +00001348 return state;
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001349
1350 // Remove the view.
Ted Kremenek67f28532009-06-17 22:02:04 +00001351 return state->set<RegionViewMap>(Base, RVFactory.Remove(*d, View));
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001352}
Zhongxing Xu20794942009-05-06 08:33:50 +00001353
Zhongxing Xu88c675f2009-06-18 06:29:10 +00001354const GRState *RegionStoreManager::setCastType(const GRState *state,
1355 const MemRegion* R, QualType T) {
Zhongxing Xu82037252009-07-14 01:12:46 +00001356 // We do not record generic cast type, since we are using cast type to
1357 // invlidate regions, and generic type is meaningless for invalidating
1358 // regions.
1359 // If the region already has a cast type before, that type is preserved.
1360 // FIXME: is this the right thing to do?
1361 if (isGenericPtr(getContext(), T))
1362 return state;
Ted Kremenek67f28532009-06-17 22:02:04 +00001363 return state->set<RegionCasts>(R, T);
Zhongxing Xu20794942009-05-06 08:33:50 +00001364}
Zhongxing Xu264e9372009-05-12 10:10:00 +00001365
Ted Kremenek67f28532009-06-17 22:02:04 +00001366const GRState *RegionStoreManager::setDefaultValue(const GRState *state,
1367 const MemRegion* R, SVal V) {
1368 return state->set<RegionDefaultValue>(R, V);
Zhongxing Xu264e9372009-05-12 10:10:00 +00001369}
Ted Kremenek9af46f52009-06-16 22:36:44 +00001370
1371//===----------------------------------------------------------------------===//
1372// State pruning.
1373//===----------------------------------------------------------------------===//
1374
1375static void UpdateLiveSymbols(SVal X, SymbolReaper& SymReaper) {
1376 if (loc::MemRegionVal *XR = dyn_cast<loc::MemRegionVal>(&X)) {
1377 const MemRegion *R = XR->getRegion();
1378
1379 while (R) {
1380 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R)) {
1381 SymReaper.markLive(SR->getSymbol());
1382 return;
1383 }
1384
1385 if (const SubRegion *SR = dyn_cast<SubRegion>(R)) {
1386 R = SR->getSuperRegion();
1387 continue;
1388 }
1389
1390 break;
1391 }
1392
1393 return;
1394 }
1395
1396 for (SVal::symbol_iterator SI=X.symbol_begin(), SE=X.symbol_end();SI!=SE;++SI)
1397 SymReaper.markLive(*SI);
1398}
1399
Ted Kremenek67f28532009-06-17 22:02:04 +00001400Store RegionStoreManager::RemoveDeadBindings(const GRState *state, Stmt* Loc,
Ted Kremenek9af46f52009-06-16 22:36:44 +00001401 SymbolReaper& SymReaper,
1402 llvm::SmallVectorImpl<const MemRegion*>& RegionRoots)
Ted Kremenek67f28532009-06-17 22:02:04 +00001403{
Ted Kremenek9af46f52009-06-16 22:36:44 +00001404 Store store = state->getStore();
1405 RegionBindingsTy B = GetRegionBindings(store);
1406
1407 // Lazily constructed backmap from MemRegions to SubRegions.
1408 typedef llvm::ImmutableSet<const MemRegion*> SubRegionsTy;
1409 typedef llvm::ImmutableMap<const MemRegion*, SubRegionsTy> SubRegionsMapTy;
1410
1411 // FIXME: As a future optimization we can modifiy BumpPtrAllocator to have
1412 // the ability to reuse memory. This way we can keep TmpAlloc around as
1413 // an instance variable of RegionStoreManager (avoiding repeated malloc
1414 // overhead).
1415 llvm::BumpPtrAllocator TmpAlloc;
1416
1417 // Factory objects.
1418 SubRegionsMapTy::Factory SubRegMapF(TmpAlloc);
1419 SubRegionsTy::Factory SubRegF(TmpAlloc);
1420
1421 // The backmap from regions to subregions.
1422 SubRegionsMapTy SubRegMap = SubRegMapF.GetEmptyMap();
1423
1424 // Do a pass over the regions in the store. For VarRegions we check if
1425 // the variable is still live and if so add it to the list of live roots.
Ted Kremenek67f28532009-06-17 22:02:04 +00001426 // For other regions we populate our region backmap.
Ted Kremenek9af46f52009-06-16 22:36:44 +00001427 llvm::SmallVector<const MemRegion*, 10> IntermediateRoots;
1428
1429 for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
1430 IntermediateRoots.push_back(I.getKey());
1431 }
1432
1433 while (!IntermediateRoots.empty()) {
1434 const MemRegion* R = IntermediateRoots.back();
1435 IntermediateRoots.pop_back();
1436
1437 if (const VarRegion* VR = dyn_cast<VarRegion>(R)) {
Zhongxing Xu7abe0192009-06-30 12:32:59 +00001438 if (SymReaper.isLive(Loc, VR->getDecl())) {
Ted Kremenek9af46f52009-06-16 22:36:44 +00001439 RegionRoots.push_back(VR); // This is a live "root".
Zhongxing Xu7abe0192009-06-30 12:32:59 +00001440 }
Ted Kremenek9af46f52009-06-16 22:36:44 +00001441 }
1442 else if (const SymbolicRegion* SR = dyn_cast<SymbolicRegion>(R)) {
1443 if (SymReaper.isLive(SR->getSymbol()))
1444 RegionRoots.push_back(SR);
1445 }
1446 else {
1447 // Get the super region for R.
Ted Kremenek8b2ba312009-07-01 23:30:34 +00001448 const MemRegion* superR = cast<SubRegion>(R)->getSuperRegion();
Ted Kremenek9af46f52009-06-16 22:36:44 +00001449
1450 // Get the current set of subregions for SuperR.
Ted Kremenek8b2ba312009-07-01 23:30:34 +00001451 const SubRegionsTy* SRptr = SubRegMap.lookup(superR);
Ted Kremenek9af46f52009-06-16 22:36:44 +00001452 SubRegionsTy SRs = SRptr ? *SRptr : SubRegF.GetEmptySet();
1453
1454 // Add R to the subregions of SuperR.
Ted Kremenek8b2ba312009-07-01 23:30:34 +00001455 SubRegMap = SubRegMapF.Add(SubRegMap, superR, SubRegF.Add(SRs, R));
Ted Kremenek9af46f52009-06-16 22:36:44 +00001456
1457 // Super region may be VarRegion or subregion of another VarRegion. Add it
1458 // to the work list.
Ted Kremenek8b2ba312009-07-01 23:30:34 +00001459 if (isa<SubRegion>(superR))
1460 IntermediateRoots.push_back(superR);
Ted Kremenek9af46f52009-06-16 22:36:44 +00001461 }
1462 }
1463
1464 // Process the worklist of RegionRoots. This performs a "mark-and-sweep"
1465 // of the store. We want to find all live symbols and dead regions.
1466 llvm::SmallPtrSet<const MemRegion*, 10> Marked;
1467
1468 while (!RegionRoots.empty()) {
1469 // Dequeue the next region on the worklist.
1470 const MemRegion* R = RegionRoots.back();
1471 RegionRoots.pop_back();
1472
1473 // Check if we have already processed this region.
1474 if (Marked.count(R)) continue;
1475
1476 // Mark this region as processed. This is needed for termination in case
1477 // a region is referenced more than once.
1478 Marked.insert(R);
1479
1480 // Mark the symbol for any live SymbolicRegion as "live". This means we
1481 // should continue to track that symbol.
1482 if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R))
1483 SymReaper.markLive(SymR->getSymbol());
1484
1485 // Get the data binding for R (if any).
1486 RegionBindingsTy::data_type* Xptr = B.lookup(R);
1487 if (Xptr) {
1488 SVal X = *Xptr;
1489 UpdateLiveSymbols(X, SymReaper); // Update the set of live symbols.
1490
Zhongxing Xu7abe0192009-06-30 12:32:59 +00001491 // If X is a region, then add it to the RegionRoots.
1492 if (const MemRegion *RX = X.getAsRegion()) {
1493 RegionRoots.push_back(RX);
1494
1495 // Mark the super region of the RX as live.
1496 // e.g.: int x; char *y = (char*) &x; if (*y) ...
1497 // 'y' => element region. 'x' is its super region.
1498 // We only add one level super region for now.
Zhongxing Xu5ff8e8c2009-07-01 02:12:57 +00001499 // FIXME: maybe multiple level of super regions should be added.
Zhongxing Xu7abe0192009-06-30 12:32:59 +00001500 if (const SubRegion *SR = dyn_cast<SubRegion>(RX)) {
1501 RegionRoots.push_back(SR->getSuperRegion());
1502 }
1503 }
Ted Kremenek9af46f52009-06-16 22:36:44 +00001504 }
1505
1506 // Get the subregions of R. These are RegionRoots as well since they
1507 // represent values that are also bound to R.
1508 const SubRegionsTy* SRptr = SubRegMap.lookup(R);
1509 if (!SRptr) continue;
1510 SubRegionsTy SR = *SRptr;
1511
1512 for (SubRegionsTy::iterator I=SR.begin(), E=SR.end(); I!=E; ++I)
1513 RegionRoots.push_back(*I);
Zhongxing Xu7abe0192009-06-30 12:32:59 +00001514
Ted Kremenek9af46f52009-06-16 22:36:44 +00001515 }
1516
1517 // We have now scanned the store, marking reachable regions and symbols
1518 // as live. We now remove all the regions that are dead from the store
1519 // as well as update DSymbols with the set symbols that are now dead.
1520 for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I) {
1521 const MemRegion* R = I.getKey();
Ted Kremenek9af46f52009-06-16 22:36:44 +00001522 // If this region live? Is so, none of its symbols are dead.
1523 if (Marked.count(R))
1524 continue;
1525
1526 // Remove this dead region from the store.
Zhongxing Xud91ee272009-06-23 09:02:15 +00001527 store = Remove(store, ValMgr.makeLoc(R));
Ted Kremenek9af46f52009-06-16 22:36:44 +00001528
1529 // Mark all non-live symbols that this region references as dead.
1530 if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(R))
1531 SymReaper.maybeDead(SymR->getSymbol());
1532
1533 SVal X = I.getData();
1534 SVal::symbol_iterator SI = X.symbol_begin(), SE = X.symbol_end();
1535 for (; SI != SE; ++SI) SymReaper.maybeDead(*SI);
1536 }
1537
1538 return store;
1539}
1540
1541//===----------------------------------------------------------------------===//
1542// Utility methods.
1543//===----------------------------------------------------------------------===//
1544
Ted Kremenek53ba0b62009-06-24 23:06:47 +00001545void RegionStoreManager::print(Store store, llvm::raw_ostream& OS,
Ted Kremenek9af46f52009-06-16 22:36:44 +00001546 const char* nl, const char *sep) {
Ted Kremenek9af46f52009-06-16 22:36:44 +00001547 RegionBindingsTy B = GetRegionBindings(store);
1548 OS << "Store:" << nl;
1549
Ted Kremenek6f9b3a42009-07-13 23:53:06 +00001550 for (RegionBindingsTy::iterator I = B.begin(), E = B.end(); I != E; ++I)
1551 OS << ' ' << I.getKey() << " : " << I.getData() << nl;
Ted Kremenek9af46f52009-06-16 22:36:44 +00001552}