blob: e5b1bca5d8fd70b691f956175fe6a6436bf9904f [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//===----------------------------------------------------------------------===//
Zhongxing Xu3ed04d32010-01-18 08:54:31 +000017#include "clang/AST/CharUnits.h"
Zhongxing Xuc5063572010-03-16 13:14:16 +000018#include "clang/AST/DeclCXX.h"
19#include "clang/AST/ExprCXX.h"
Ted Kremenek66d51422010-04-09 20:26:58 +000020#include "clang/Analysis/Analyses/LiveVariables.h"
21#include "clang/Analysis/AnalysisContext.h"
22#include "clang/Basic/TargetInfo.h"
23#include "clang/Checker/PathSensitive/GRState.h"
24#include "clang/Checker/PathSensitive/GRStateTrait.h"
25#include "clang/Checker/PathSensitive/MemRegion.h"
Zhongxing Xudc0a25d2008-11-16 04:07:26 +000026#include "llvm/ADT/ImmutableList.h"
Ted Kremenek66d51422010-04-09 20:26:58 +000027#include "llvm/ADT/ImmutableMap.h"
28#include "llvm/ADT/Optional.h"
Zhongxing Xua071eb02008-10-24 06:01:33 +000029#include "llvm/Support/raw_ostream.h"
Zhongxing Xu17892752008-10-08 02:50:44 +000030
31using namespace clang;
Ted Kremenek66d51422010-04-09 20:26:58 +000032using llvm::Optional;
Zhongxing Xu17892752008-10-08 02:50:44 +000033
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +000034//===----------------------------------------------------------------------===//
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +000035// Representation of binding keys.
36//===----------------------------------------------------------------------===//
37
38namespace {
Ted Kremeneke393f4a2010-02-03 03:06:46 +000039class BindingKey {
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +000040public:
Ted Kremeneke393f4a2010-02-03 03:06:46 +000041 enum Kind { Direct = 0x0, Default = 0x1 };
42private:
43 llvm ::PointerIntPair<const MemRegion*, 1> P;
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +000044 uint64_t Offset;
45
Ted Kremeneke393f4a2010-02-03 03:06:46 +000046 explicit BindingKey(const MemRegion *r, uint64_t offset, Kind k)
Jordy Rosee7011172010-08-16 01:15:17 +000047 : P(r, (unsigned) k), Offset(offset) {}
Ted Kremeneke393f4a2010-02-03 03:06:46 +000048public:
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +000049
Ted Kremeneke393f4a2010-02-03 03:06:46 +000050 bool isDirect() const { return P.getInt() == Direct; }
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +000051
Ted Kremeneke393f4a2010-02-03 03:06:46 +000052 const MemRegion *getRegion() const { return P.getPointer(); }
53 uint64_t getOffset() const { return Offset; }
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +000054
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +000055 void Profile(llvm::FoldingSetNodeID& ID) const {
Ted Kremeneke393f4a2010-02-03 03:06:46 +000056 ID.AddPointer(P.getOpaqueValue());
57 ID.AddInteger(Offset);
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +000058 }
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +000059
Ted Kremeneke393f4a2010-02-03 03:06:46 +000060 static BindingKey Make(const MemRegion *R, Kind k);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +000061
Ted Kremeneke393f4a2010-02-03 03:06:46 +000062 bool operator<(const BindingKey &X) const {
63 if (P.getOpaqueValue() < X.P.getOpaqueValue())
64 return true;
65 if (P.getOpaqueValue() > X.P.getOpaqueValue())
66 return false;
67 return Offset < X.Offset;
68 }
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +000069
Ted Kremeneke393f4a2010-02-03 03:06:46 +000070 bool operator==(const BindingKey &X) const {
71 return P.getOpaqueValue() == X.P.getOpaqueValue() &&
72 Offset == X.Offset;
73 }
Jordy Rosee7011172010-08-16 01:15:17 +000074
Jordy Rosed5addb42010-08-16 20:53:01 +000075 bool isValid() const {
Jordy Rosee7011172010-08-16 01:15:17 +000076 return getRegion() != NULL;
77 }
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +000078};
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +000079} // end anonymous namespace
80
Zhongxing Xudc015e52010-08-21 12:24:38 +000081BindingKey BindingKey::Make(const MemRegion *R, Kind k) {
82 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) {
83 const RegionRawOffset &O = ER->getAsArrayOffset();
84
85 // FIXME: There are some ElementRegions for which we cannot compute
86 // raw offsets yet, including regions with symbolic offsets. These will be
87 // ignored by the store.
88 return BindingKey(O.getRegion(), O.getByteOffset(), k);
89 }
90
91 return BindingKey(R, 0, k);
92}
93
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +000094namespace llvm {
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +000095 static inline
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +000096 llvm::raw_ostream& operator<<(llvm::raw_ostream& os, BindingKey K) {
Ted Kremeneke393f4a2010-02-03 03:06:46 +000097 os << '(' << K.getRegion() << ',' << K.getOffset()
98 << ',' << (K.isDirect() ? "direct" : "default")
99 << ')';
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +0000100 return os;
101 }
102} // end llvm namespace
103
104//===----------------------------------------------------------------------===//
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000105// Actual Store type.
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +0000106//===----------------------------------------------------------------------===//
107
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000108typedef llvm::ImmutableMap<BindingKey, SVal> RegionBindings;
Zhongxing Xubaf03a72008-11-24 09:44:56 +0000109
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000110//===----------------------------------------------------------------------===//
Ted Kremenek9af46f52009-06-16 22:36:44 +0000111// Fine-grained control of RegionStoreManager.
112//===----------------------------------------------------------------------===//
113
114namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000115struct minimal_features_tag {};
116struct maximal_features_tag {};
Mike Stump1eb44332009-09-09 15:08:12 +0000117
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000118class RegionStoreFeatures {
Ted Kremenek9af46f52009-06-16 22:36:44 +0000119 bool SupportsFields;
Ted Kremenek9af46f52009-06-16 22:36:44 +0000120public:
121 RegionStoreFeatures(minimal_features_tag) :
Ted Kremenek0752d6d2010-08-20 06:06:41 +0000122 SupportsFields(false) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000123
Ted Kremenek9af46f52009-06-16 22:36:44 +0000124 RegionStoreFeatures(maximal_features_tag) :
Ted Kremenek0752d6d2010-08-20 06:06:41 +0000125 SupportsFields(true) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000126
Ted Kremenek9af46f52009-06-16 22:36:44 +0000127 void enableFields(bool t) { SupportsFields = t; }
Mike Stump1eb44332009-09-09 15:08:12 +0000128
Ted Kremenek9af46f52009-06-16 22:36:44 +0000129 bool supportsFields() const { return SupportsFields; }
Ted Kremenek9af46f52009-06-16 22:36:44 +0000130};
131}
132
133//===----------------------------------------------------------------------===//
Ted Kremenek50dc1b32008-12-24 01:05:03 +0000134// Main RegionStore logic.
135//===----------------------------------------------------------------------===//
Ted Kremenekc48ea6e2008-12-04 02:08:27 +0000136
Zhongxing Xu17892752008-10-08 02:50:44 +0000137namespace {
Mike Stump1eb44332009-09-09 15:08:12 +0000138
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000139class RegionStoreSubRegionMap : public SubRegionMap {
Ted Kremenekdf165012010-02-02 22:38:47 +0000140public:
141 typedef llvm::ImmutableSet<const MemRegion*> Set;
142 typedef llvm::DenseMap<const MemRegion*, Set> Map;
143private:
144 Set::Factory F;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000145 Map M;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000146public:
Ted Kremenekd8c01922009-08-05 19:09:24 +0000147 bool add(const MemRegion* Parent, const MemRegion* SubRegion) {
Ted Kremenek59e8f112009-03-03 01:35:36 +0000148 Map::iterator I = M.find(Parent);
Ted Kremenekd8c01922009-08-05 19:09:24 +0000149
150 if (I == M.end()) {
Ted Kremenek3baf6722010-11-24 00:54:37 +0000151 M.insert(std::make_pair(Parent, F.add(F.getEmptySet(), SubRegion)));
Ted Kremenekd8c01922009-08-05 19:09:24 +0000152 return true;
153 }
154
Ted Kremenek3baf6722010-11-24 00:54:37 +0000155 I->second = F.add(I->second, SubRegion);
Ted Kremenekd8c01922009-08-05 19:09:24 +0000156 return false;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000157 }
Mike Stump1eb44332009-09-09 15:08:12 +0000158
Ted Kremeneka5e81f12009-08-06 01:20:57 +0000159 void process(llvm::SmallVectorImpl<const SubRegion*> &WL, const SubRegion *R);
Mike Stump1eb44332009-09-09 15:08:12 +0000160
Ted Kremenek59e8f112009-03-03 01:35:36 +0000161 ~RegionStoreSubRegionMap() {}
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000162
Ted Kremenekdf165012010-02-02 22:38:47 +0000163 const Set *getSubRegions(const MemRegion *Parent) const {
164 Map::const_iterator I = M.find(Parent);
165 return I == M.end() ? NULL : &I->second;
166 }
Mike Stump1eb44332009-09-09 15:08:12 +0000167
Ted Kremenek5dc27462009-03-03 02:51:43 +0000168 bool iterSubRegions(const MemRegion* Parent, Visitor& V) const {
Jeffrey Yasskin3958b502009-11-10 01:17:45 +0000169 Map::const_iterator I = M.find(Parent);
Ted Kremenek59e8f112009-03-03 01:35:36 +0000170
171 if (I == M.end())
Ted Kremenek5dc27462009-03-03 02:51:43 +0000172 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000173
Ted Kremenekdf165012010-02-02 22:38:47 +0000174 Set S = I->second;
175 for (Set::iterator SI=S.begin(),SE=S.end(); SI != SE; ++SI) {
Ted Kremenek59e8f112009-03-03 01:35:36 +0000176 if (!V.Visit(Parent, *SI))
Ted Kremenek5dc27462009-03-03 02:51:43 +0000177 return false;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000178 }
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Ted Kremenek5dc27462009-03-03 02:51:43 +0000180 return true;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000181 }
Mike Stump1eb44332009-09-09 15:08:12 +0000182};
Ted Kremenek59e8f112009-03-03 01:35:36 +0000183
Zhongxing Xu796788f2010-08-23 01:37:32 +0000184void
185RegionStoreSubRegionMap::process(llvm::SmallVectorImpl<const SubRegion*> &WL,
186 const SubRegion *R) {
187 const MemRegion *superR = R->getSuperRegion();
188 if (add(superR, R))
189 if (const SubRegion *sr = dyn_cast<SubRegion>(superR))
190 WL.push_back(sr);
191}
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000192
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000193class RegionStoreManager : public StoreManager {
Ted Kremenek9af46f52009-06-16 22:36:44 +0000194 const RegionStoreFeatures Features;
Ted Kremenek451ac092009-08-06 04:50:20 +0000195 RegionBindings::Factory RBFactory;
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000196
Zhongxing Xu17892752008-10-08 02:50:44 +0000197public:
Mike Stump1eb44332009-09-09 15:08:12 +0000198 RegionStoreManager(GRStateManager& mgr, const RegionStoreFeatures &f)
Ted Kremenekf7a0cf42009-07-29 21:43:22 +0000199 : StoreManager(mgr),
Ted Kremenek9af46f52009-06-16 22:36:44 +0000200 Features(f),
Ted Kremenek8928d412010-02-04 04:14:49 +0000201 RBFactory(mgr.getAllocator()) {}
Zhongxing Xu17892752008-10-08 02:50:44 +0000202
Zhongxing Xuf5416bd2010-02-05 05:18:47 +0000203 SubRegionMap *getSubRegionMap(Store store) {
204 return getRegionStoreSubRegionMap(store);
205 }
Mike Stump1eb44332009-09-09 15:08:12 +0000206
Zhongxing Xu13d50172009-10-11 08:08:02 +0000207 RegionStoreSubRegionMap *getRegionStoreSubRegionMap(Store store);
Mike Stump1eb44332009-09-09 15:08:12 +0000208
Zhongxing Xu13d50172009-10-11 08:08:02 +0000209 Optional<SVal> getDirectBinding(RegionBindings B, const MemRegion *R);
Ted Kremenekd4e5a602009-08-06 21:43:54 +0000210 /// getDefaultBinding - Returns an SVal* representing an optional default
211 /// binding associated with a region and its subregions.
Zhongxing Xu13d50172009-10-11 08:08:02 +0000212 Optional<SVal> getDefaultBinding(RegionBindings B, const MemRegion *R);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000213
Ted Kremenek027e2662009-11-19 20:20:24 +0000214 /// setImplicitDefaultValue - Set the default binding for the provided
215 /// MemRegion to the value implicitly defined for compound literals when
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000216 /// the value is not specified.
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000217 Store setImplicitDefaultValue(Store store, const MemRegion *R, QualType T);
Mike Stump1eb44332009-09-09 15:08:12 +0000218
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000219 /// ArrayToPointer - Emulates the "decay" of an array to a pointer
220 /// type. 'Array' represents the lvalue of the array being decayed
221 /// to a pointer, and the returned SVal represents the decayed
222 /// version of that lvalue (i.e., a pointer to the first element of
223 /// the array). This is called by GRExprEngine when evaluating
224 /// casts from arrays to pointers.
Zhongxing Xuf1d537f2009-03-30 05:55:46 +0000225 SVal ArrayToPointer(Loc Array);
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000226
Zhongxing Xu461147f2010-02-05 05:24:20 +0000227 SVal EvalBinOp(BinaryOperator::Opcode Op,Loc L, NonLoc R, QualType resultTy);
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000228
Mike Stump1eb44332009-09-09 15:08:12 +0000229 Store getInitialStore(const LocationContext *InitLoc) {
Ted Kremenek3baf6722010-11-24 00:54:37 +0000230 return RBFactory.getEmptyMap().getRoot();
Zhongxing Xu17fd8632009-08-17 06:19:58 +0000231 }
Ted Kremenek82cd37c2009-08-21 23:25:54 +0000232
Ted Kremenek67f28532009-06-17 22:02:04 +0000233 //===-------------------------------------------------------------------===//
234 // Binding values to regions.
235 //===-------------------------------------------------------------------===//
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000236
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000237 Store InvalidateRegions(Store store,
238 const MemRegion * const *Begin,
239 const MemRegion * const *End,
240 const Expr *E, unsigned Count,
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000241 InvalidatedSymbols *IS,
Jordy Rosec2b7dfa2010-08-14 20:44:32 +0000242 bool invalidateGlobals,
243 InvalidatedRegions *Regions);
Mike Stump1eb44332009-09-09 15:08:12 +0000244
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000245public: // Made public for helper classes.
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000246
Zhongxing Xu13d50172009-10-11 08:08:02 +0000247 void RemoveSubRegionBindings(RegionBindings &B, const MemRegion *R,
Ted Kremeneka5e81f12009-08-06 01:20:57 +0000248 RegionStoreSubRegionMap &M);
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Ted Kremenek3baf6722010-11-24 00:54:37 +0000250 RegionBindings addBinding(RegionBindings B, BindingKey K, SVal V);
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000251
Ted Kremenek3baf6722010-11-24 00:54:37 +0000252 RegionBindings addBinding(RegionBindings B, const MemRegion *R,
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000253 BindingKey::Kind k, SVal V);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000254
Ted Kremenek3baf6722010-11-24 00:54:37 +0000255 const SVal *lookup(RegionBindings B, BindingKey K);
256 const SVal *lookup(RegionBindings B, const MemRegion *R, BindingKey::Kind k);
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +0000257
Ted Kremenek3baf6722010-11-24 00:54:37 +0000258 RegionBindings removeBinding(RegionBindings B, BindingKey K);
259 RegionBindings removeBinding(RegionBindings B, const MemRegion *R,
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000260 BindingKey::Kind k);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000261
Ted Kremenek3baf6722010-11-24 00:54:37 +0000262 RegionBindings removeBinding(RegionBindings B, const MemRegion *R) {
263 return removeBinding(removeBinding(B, R, BindingKey::Direct), R,
264 BindingKey::Default);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000265 }
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000266
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000267public: // Part of public interface to class.
268
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000269 Store Bind(Store store, Loc LV, SVal V);
Ted Kremenek67f28532009-06-17 22:02:04 +0000270
Zhongxing Xu54460092010-06-01 04:49:26 +0000271 // BindDefault is only used to initialize a region with a default value.
Zhongxing Xua5ce9662010-06-01 03:01:33 +0000272 Store BindDefault(Store store, const MemRegion *R, SVal V) {
Zhongxing Xu54460092010-06-01 04:49:26 +0000273 RegionBindings B = GetRegionBindings(store);
Ted Kremenek3baf6722010-11-24 00:54:37 +0000274 assert(!lookup(B, R, BindingKey::Default));
275 assert(!lookup(B, R, BindingKey::Direct));
276 return addBinding(B, R, BindingKey::Default, V).getRoot();
Zhongxing Xua5ce9662010-06-01 03:01:33 +0000277 }
278
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000279 Store BindCompoundLiteral(Store store, const CompoundLiteralExpr* CL,
280 const LocationContext *LC, SVal V);
Mike Stump1eb44332009-09-09 15:08:12 +0000281
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000282 Store BindDecl(Store store, const VarRegion *VR, SVal InitVal);
Ted Kremenek67f28532009-06-17 22:02:04 +0000283
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000284 Store BindDeclWithNoInit(Store store, const VarRegion *) {
285 return store;
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000286 }
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000287
Ted Kremenek67f28532009-06-17 22:02:04 +0000288 /// BindStruct - Bind a compound value to a structure.
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000289 Store BindStruct(Store store, const TypedRegion* R, SVal V);
Mike Stump1eb44332009-09-09 15:08:12 +0000290
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000291 Store BindArray(Store store, const TypedRegion* R, SVal V);
Mike Stump1eb44332009-09-09 15:08:12 +0000292
293 /// KillStruct - Set the entire struct to unknown.
Ted Kremenek281e9dc2010-07-29 00:28:47 +0000294 Store KillStruct(Store store, const TypedRegion* R, SVal DefaultVal);
Ted Kremenek67f28532009-06-17 22:02:04 +0000295
Ted Kremenek67f28532009-06-17 22:02:04 +0000296 Store Remove(Store store, Loc LV);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000297
Ted Kremenek67f28532009-06-17 22:02:04 +0000298
299 //===------------------------------------------------------------------===//
300 // Loading values from regions.
301 //===------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000302
Ted Kremenek67f28532009-06-17 22:02:04 +0000303 /// The high level logic for this method is this:
304 /// Retrieve (L)
305 /// if L has binding
306 /// return L's binding
307 /// else if L is in killset
308 /// return unknown
309 /// else
310 /// if L is on stack or heap
311 /// return undefined
312 /// else
313 /// return symbolic
Zhongxing Xu576bb922010-02-05 03:01:53 +0000314 SVal Retrieve(Store store, Loc L, QualType T = QualType());
Zhongxing Xu490b0f02009-06-25 04:50:44 +0000315
Zhongxing Xubfcaf802010-02-05 02:26:30 +0000316 SVal RetrieveElement(Store store, const ElementRegion *R);
Zhongxing Xuc00346f2009-06-25 05:29:39 +0000317
Zhongxing Xubfcaf802010-02-05 02:26:30 +0000318 SVal RetrieveField(Store store, const FieldRegion *R);
Mike Stump1eb44332009-09-09 15:08:12 +0000319
Zhongxing Xu576bb922010-02-05 03:01:53 +0000320 SVal RetrieveObjCIvar(Store store, const ObjCIvarRegion *R);
Mike Stump1eb44332009-09-09 15:08:12 +0000321
Zhongxing Xu576bb922010-02-05 03:01:53 +0000322 SVal RetrieveVar(Store store, const VarRegion *R);
Mike Stump1eb44332009-09-09 15:08:12 +0000323
Zhongxing Xu576bb922010-02-05 03:01:53 +0000324 SVal RetrieveLazySymbol(const TypedRegion *R);
Mike Stump1eb44332009-09-09 15:08:12 +0000325
Zhongxing Xubfcaf802010-02-05 02:26:30 +0000326 SVal RetrieveFieldOrElementCommon(Store store, const TypedRegion *R,
Ted Kremenek566a6fa2009-08-06 22:33:36 +0000327 QualType Ty, const MemRegion *superR);
Mike Stump1eb44332009-09-09 15:08:12 +0000328
Ted Kremenek67f28532009-06-17 22:02:04 +0000329 /// Retrieve the values in a struct and return a CompoundVal, used when doing
Mike Stump1eb44332009-09-09 15:08:12 +0000330 /// struct copy:
331 /// struct s x, y;
Ted Kremenek67f28532009-06-17 22:02:04 +0000332 /// x = y;
333 /// y's value is retrieved by this method.
Zhongxing Xu576bb922010-02-05 03:01:53 +0000334 SVal RetrieveStruct(Store store, const TypedRegion* R);
Mike Stump1eb44332009-09-09 15:08:12 +0000335
Zhongxing Xu576bb922010-02-05 03:01:53 +0000336 SVal RetrieveArray(Store store, const TypedRegion* R);
Mike Stump1eb44332009-09-09 15:08:12 +0000337
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000338 /// Used to lazily generate derived symbols for bindings that are defined
339 /// implicitly by default bindings in a super region.
340 Optional<SVal> RetrieveDerivedDefaultValue(RegionBindings B,
341 const MemRegion *superR,
342 const TypedRegion *R, QualType Ty);
343
Zhongxing Xu944ebc62009-12-21 06:52:24 +0000344 /// Get the state and region whose binding this region R corresponds to.
Zhongxing Xubfcaf802010-02-05 02:26:30 +0000345 std::pair<Store, const MemRegion*>
Ted Kremenek451ac092009-08-06 04:50:20 +0000346 GetLazyBinding(RegionBindings B, const MemRegion *R);
Mike Stump1eb44332009-09-09 15:08:12 +0000347
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000348 Store CopyLazyBindings(nonloc::LazyCompoundVal V, Store store,
349 const TypedRegion *R);
Ted Kremenek67f28532009-06-17 22:02:04 +0000350
351 //===------------------------------------------------------------------===//
352 // State pruning.
353 //===------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000354
Ted Kremenek67f28532009-06-17 22:02:04 +0000355 /// RemoveDeadBindings - Scans the RegionStore of 'state' for dead values.
356 /// It returns a new Store with these values removed.
Zhongxing Xu5e4cb342010-08-15 12:45:09 +0000357 Store RemoveDeadBindings(Store store, const StackFrameContext *LCtx,
358 SymbolReaper& SymReaper,
Ted Kremenek67f28532009-06-17 22:02:04 +0000359 llvm::SmallVectorImpl<const MemRegion*>& RegionRoots);
360
Jordy Roseff59efd2010-08-03 20:44:35 +0000361 Store EnterStackFrame(const GRState *state, const StackFrameContext *frame);
Zhongxing Xu4e3c1f72009-10-13 02:24:55 +0000362
Ted Kremenek67f28532009-06-17 22:02:04 +0000363 //===------------------------------------------------------------------===//
364 // Region "extents".
365 //===------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000366
Jordy Rose32f26562010-07-04 00:00:41 +0000367 // FIXME: This method will soon be eliminated; see the note in Store.h.
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000368 DefinedOrUnknownSVal getSizeInElements(const GRState *state,
Zhongxing Xu3ed04d32010-01-18 08:54:31 +0000369 const MemRegion* R, QualType EleTy);
Ted Kremenek67f28532009-06-17 22:02:04 +0000370
371 //===------------------------------------------------------------------===//
Ted Kremenek67f28532009-06-17 22:02:04 +0000372 // Utility methods.
373 //===------------------------------------------------------------------===//
Mike Stump1eb44332009-09-09 15:08:12 +0000374
Ted Kremenek451ac092009-08-06 04:50:20 +0000375 static inline RegionBindings GetRegionBindings(Store store) {
Zhongxing Xu13d50172009-10-11 08:08:02 +0000376 return RegionBindings(static_cast<const RegionBindings::TreeTy*>(store));
Zhongxing Xu17892752008-10-08 02:50:44 +0000377 }
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000378
Ted Kremenek53ba0b62009-06-24 23:06:47 +0000379 void print(Store store, llvm::raw_ostream& Out, const char* nl,
380 const char *sep);
Zhongxing Xu24194ef2008-10-24 01:38:55 +0000381
382 void iterBindings(Store store, BindingsHandler& f) {
Ted Kremenek0e9910f2010-06-17 00:24:42 +0000383 RegionBindings B = GetRegionBindings(store);
384 for (RegionBindings::iterator I=B.begin(), E=B.end(); I!=E; ++I) {
385 const BindingKey &K = I.getKey();
386 if (!K.isDirect())
387 continue;
388 if (const SubRegion *R = dyn_cast<SubRegion>(I.getKey().getRegion())) {
389 // FIXME: Possibly incorporate the offset?
390 if (!f.HandleBinding(*this, store, R, I.getData()))
391 return;
392 }
393 }
Ted Kremenek67f28532009-06-17 22:02:04 +0000394 }
Zhongxing Xu17892752008-10-08 02:50:44 +0000395};
396
397} // end anonymous namespace
398
Ted Kremenek9af46f52009-06-16 22:36:44 +0000399//===----------------------------------------------------------------------===//
400// RegionStore creation.
401//===----------------------------------------------------------------------===//
402
403StoreManager *clang::CreateRegionStoreManager(GRStateManager& StMgr) {
404 RegionStoreFeatures F = maximal_features_tag();
405 return new RegionStoreManager(StMgr, F);
406}
407
408StoreManager *clang::CreateFieldsOnlyRegionStoreManager(GRStateManager &StMgr) {
409 RegionStoreFeatures F = minimal_features_tag();
410 F.enableFields(true);
411 return new RegionStoreManager(StMgr, F);
Ted Kremenek95c7b002008-10-24 01:04:59 +0000412}
413
Ted Kremeneka5e81f12009-08-06 01:20:57 +0000414
Ted Kremenek19e1f0b2009-08-01 06:17:29 +0000415RegionStoreSubRegionMap*
Zhongxing Xu13d50172009-10-11 08:08:02 +0000416RegionStoreManager::getRegionStoreSubRegionMap(Store store) {
417 RegionBindings B = GetRegionBindings(store);
Ted Kremenek59e8f112009-03-03 01:35:36 +0000418 RegionStoreSubRegionMap *M = new RegionStoreSubRegionMap();
Mike Stump1eb44332009-09-09 15:08:12 +0000419
Ted Kremenek19e1f0b2009-08-01 06:17:29 +0000420 llvm::SmallVector<const SubRegion*, 10> WL;
421
Ted Kremenek451ac092009-08-06 04:50:20 +0000422 for (RegionBindings::iterator I=B.begin(), E=B.end(); I!=E; ++I)
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +0000423 if (const SubRegion *R = dyn_cast<SubRegion>(I.getKey().getRegion()))
Ted Kremeneka5e81f12009-08-06 01:20:57 +0000424 M->process(WL, R);
Mike Stump1eb44332009-09-09 15:08:12 +0000425
Mike Stump1eb44332009-09-09 15:08:12 +0000426 // We also need to record in the subregion map "intermediate" regions that
Ted Kremenek19e1f0b2009-08-01 06:17:29 +0000427 // don't have direct bindings but are super regions of those that do.
428 while (!WL.empty()) {
429 const SubRegion *R = WL.back();
430 WL.pop_back();
Ted Kremeneka5e81f12009-08-06 01:20:57 +0000431 M->process(WL, R);
Ted Kremenek19e1f0b2009-08-01 06:17:29 +0000432 }
433
Ted Kremenek14453bf2009-03-03 19:02:42 +0000434 return M;
Ted Kremenek59e8f112009-03-03 01:35:36 +0000435}
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000436
Ted Kremenek9af46f52009-06-16 22:36:44 +0000437//===----------------------------------------------------------------------===//
Ted Kremeneka4fab032010-03-10 07:19:59 +0000438// Region Cluster analysis.
439//===----------------------------------------------------------------------===//
440
441namespace {
Ted Kremenek5499b842010-03-10 16:32:56 +0000442template <typename DERIVED>
Ted Kremeneka4fab032010-03-10 07:19:59 +0000443class ClusterAnalysis {
444protected:
445 typedef BumpVector<BindingKey> RegionCluster;
446 typedef llvm::DenseMap<const MemRegion *, RegionCluster *> ClusterMap;
Ted Kremenek5499b842010-03-10 16:32:56 +0000447 llvm::DenseMap<const RegionCluster*, unsigned> Visited;
448 typedef llvm::SmallVector<std::pair<const MemRegion *, RegionCluster*>, 10>
449 WorkList;
Ted Kremeneka4fab032010-03-10 07:19:59 +0000450
451 BumpVectorContext BVC;
452 ClusterMap ClusterM;
Ted Kremenek5499b842010-03-10 16:32:56 +0000453 WorkList WL;
Ted Kremeneka4fab032010-03-10 07:19:59 +0000454
455 RegionStoreManager &RM;
456 ASTContext &Ctx;
457 ValueManager &ValMgr;
458
Ted Kremenek5499b842010-03-10 16:32:56 +0000459 RegionBindings B;
Ted Kremenekd45d59f2010-10-26 00:06:15 +0000460
461 const bool includeGlobals;
Ted Kremenek5499b842010-03-10 16:32:56 +0000462
Ted Kremeneka4fab032010-03-10 07:19:59 +0000463public:
Ted Kremenek5499b842010-03-10 16:32:56 +0000464 ClusterAnalysis(RegionStoreManager &rm, GRStateManager &StateMgr,
Ted Kremenekd45d59f2010-10-26 00:06:15 +0000465 RegionBindings b, const bool includeGlobals)
Ted Kremenek5499b842010-03-10 16:32:56 +0000466 : RM(rm), Ctx(StateMgr.getContext()), ValMgr(StateMgr.getValueManager()),
Ted Kremenekd45d59f2010-10-26 00:06:15 +0000467 B(b), includeGlobals(includeGlobals) {}
Ted Kremeneka4fab032010-03-10 07:19:59 +0000468
Ted Kremenek5499b842010-03-10 16:32:56 +0000469 RegionBindings getRegionBindings() const { return B; }
Ted Kremeneka4fab032010-03-10 07:19:59 +0000470
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000471 RegionCluster &AddToCluster(BindingKey K) {
Ted Kremenek5499b842010-03-10 16:32:56 +0000472 const MemRegion *R = K.getRegion();
473 const MemRegion *baseR = R->getBaseRegion();
474 RegionCluster &C = getCluster(baseR);
475 C.push_back(K, BVC);
476 static_cast<DERIVED*>(this)->VisitAddedToCluster(baseR, C);
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000477 return C;
Ted Kremeneka4fab032010-03-10 07:19:59 +0000478 }
Ted Kremeneka4fab032010-03-10 07:19:59 +0000479
Ted Kremenek5499b842010-03-10 16:32:56 +0000480 bool isVisited(const MemRegion *R) {
481 return (bool) Visited[&getCluster(R->getBaseRegion())];
482 }
483
484 RegionCluster& getCluster(const MemRegion *R) {
485 RegionCluster *&CRef = ClusterM[R];
486 if (!CRef) {
487 void *Mem = BVC.getAllocator().template Allocate<RegionCluster>();
488 CRef = new (Mem) RegionCluster(BVC, 10);
489 }
490 return *CRef;
491 }
492
Ted Kremenekd45d59f2010-10-26 00:06:15 +0000493 void GenerateClusters() {
Ted Kremenek5499b842010-03-10 16:32:56 +0000494 // Scan the entire set of bindings and make the region clusters.
495 for (RegionBindings::iterator RI = B.begin(), RE = B.end(); RI != RE; ++RI){
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000496 RegionCluster &C = AddToCluster(RI.getKey());
Ted Kremenek5499b842010-03-10 16:32:56 +0000497 if (const MemRegion *R = RI.getData().getAsRegion()) {
498 // Generate a cluster, but don't add the region to the cluster
499 // if there aren't any bindings.
500 getCluster(R->getBaseRegion());
501 }
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000502 if (includeGlobals) {
503 const MemRegion *R = RI.getKey().getRegion();
504 if (isa<NonStaticGlobalSpaceRegion>(R->getMemorySpace()))
505 AddToWorkList(R, C);
506 }
Ted Kremeneka4fab032010-03-10 07:19:59 +0000507 }
508 }
Ted Kremenek5499b842010-03-10 16:32:56 +0000509
510 bool AddToWorkList(const MemRegion *R, RegionCluster &C) {
511 if (unsigned &visited = Visited[&C])
512 return false;
513 else
514 visited = 1;
515
516 WL.push_back(std::make_pair(R, &C));
517 return true;
518 }
519
520 bool AddToWorkList(BindingKey K) {
521 return AddToWorkList(K.getRegion());
522 }
523
524 bool AddToWorkList(const MemRegion *R) {
525 const MemRegion *baseR = R->getBaseRegion();
526 return AddToWorkList(baseR, getCluster(baseR));
527 }
528
529 void RunWorkList() {
530 while (!WL.empty()) {
531 const MemRegion *baseR;
532 RegionCluster *C;
533 llvm::tie(baseR, C) = WL.back();
534 WL.pop_back();
535
536 // First visit the cluster.
537 static_cast<DERIVED*>(this)->VisitCluster(baseR, C->begin(), C->end());
538
Ted Kremenek75a2d942010-04-01 00:15:55 +0000539 // Next, visit the base region.
540 static_cast<DERIVED*>(this)->VisitBaseRegion(baseR);
Ted Kremenek5499b842010-03-10 16:32:56 +0000541 }
542 }
543
544public:
545 void VisitAddedToCluster(const MemRegion *baseR, RegionCluster &C) {}
546 void VisitCluster(const MemRegion *baseR, BindingKey *I, BindingKey *E) {}
Ted Kremenek75a2d942010-04-01 00:15:55 +0000547 void VisitBaseRegion(const MemRegion *baseR) {}
Ted Kremenek5499b842010-03-10 16:32:56 +0000548};
Ted Kremeneka4fab032010-03-10 07:19:59 +0000549}
550
551//===----------------------------------------------------------------------===//
Ted Kremenek1004a9f2009-07-29 18:16:25 +0000552// Binding invalidation.
553//===----------------------------------------------------------------------===//
554
Zhongxing Xu13d50172009-10-11 08:08:02 +0000555void RegionStoreManager::RemoveSubRegionBindings(RegionBindings &B,
556 const MemRegion *R,
557 RegionStoreSubRegionMap &M) {
Ted Kremeneka4fab032010-03-10 07:19:59 +0000558
Ted Kremenekdf165012010-02-02 22:38:47 +0000559 if (const RegionStoreSubRegionMap::Set *S = M.getSubRegions(R))
560 for (RegionStoreSubRegionMap::Set::iterator I = S->begin(), E = S->end();
561 I != E; ++I)
562 RemoveSubRegionBindings(B, *I, M);
Ted Kremeneka4fab032010-03-10 07:19:59 +0000563
Ted Kremenek3baf6722010-11-24 00:54:37 +0000564 B = removeBinding(B, R);
Ted Kremenek19e1f0b2009-08-01 06:17:29 +0000565}
566
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000567namespace {
Ted Kremenek5499b842010-03-10 16:32:56 +0000568class InvalidateRegionsWorker : public ClusterAnalysis<InvalidateRegionsWorker>
569{
570 const Expr *Ex;
571 unsigned Count;
Ted Kremenekc1ddcab2010-02-13 00:54:03 +0000572 StoreManager::InvalidatedSymbols *IS;
Jordy Rosec2b7dfa2010-08-14 20:44:32 +0000573 StoreManager::InvalidatedRegions *Regions;
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000574public:
Ted Kremenek24c37ad2010-02-13 01:52:33 +0000575 InvalidateRegionsWorker(RegionStoreManager &rm,
Ted Kremenek5499b842010-03-10 16:32:56 +0000576 GRStateManager &stateMgr,
577 RegionBindings b,
578 const Expr *ex, unsigned count,
Jordy Rosec2b7dfa2010-08-14 20:44:32 +0000579 StoreManager::InvalidatedSymbols *is,
Ted Kremenekd45d59f2010-10-26 00:06:15 +0000580 StoreManager::InvalidatedRegions *r,
581 bool includeGlobals)
582 : ClusterAnalysis<InvalidateRegionsWorker>(rm, stateMgr, b, includeGlobals),
Jordy Rosec2b7dfa2010-08-14 20:44:32 +0000583 Ex(ex), Count(count), IS(is), Regions(r) {}
Ted Kremeneka4fab032010-03-10 07:19:59 +0000584
Ted Kremenek5499b842010-03-10 16:32:56 +0000585 void VisitCluster(const MemRegion *baseR, BindingKey *I, BindingKey *E);
Ted Kremenek75a2d942010-04-01 00:15:55 +0000586 void VisitBaseRegion(const MemRegion *baseR);
Ted Kremeneka4fab032010-03-10 07:19:59 +0000587
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000588private:
Ted Kremenekc1ddcab2010-02-13 00:54:03 +0000589 void VisitBinding(SVal V);
Ted Kremeneka4fab032010-03-10 07:19:59 +0000590};
Ted Kremenek5b290652010-02-03 04:16:00 +0000591}
592
Ted Kremenekc1ddcab2010-02-13 00:54:03 +0000593void InvalidateRegionsWorker::VisitBinding(SVal V) {
Ted Kremenekc1ddcab2010-02-13 00:54:03 +0000594 // A symbol? Mark it touched by the invalidation.
595 if (IS)
596 if (SymbolRef Sym = V.getAsSymbol())
597 IS->insert(Sym);
Ted Kremeneka4fab032010-03-10 07:19:59 +0000598
Ted Kremenek24c37ad2010-02-13 01:52:33 +0000599 if (const MemRegion *R = V.getAsRegion()) {
600 AddToWorkList(R);
601 return;
602 }
603
604 // Is it a LazyCompoundVal? All references get invalidated as well.
605 if (const nonloc::LazyCompoundVal *LCS =
606 dyn_cast<nonloc::LazyCompoundVal>(&V)) {
607
608 const MemRegion *LazyR = LCS->getRegion();
609 RegionBindings B = RegionStoreManager::GetRegionBindings(LCS->getStore());
610
611 for (RegionBindings::iterator RI = B.begin(), RE = B.end(); RI != RE; ++RI){
Ted Kremenek0ea0e8b2010-07-06 23:53:29 +0000612 const SubRegion *baseR = dyn_cast<SubRegion>(RI.getKey().getRegion());
613 if (baseR && baseR->isSubRegionOf(LazyR))
Ted Kremenek24c37ad2010-02-13 01:52:33 +0000614 VisitBinding(RI.getData());
615 }
616
617 return;
618 }
619}
620
Ted Kremenek5499b842010-03-10 16:32:56 +0000621void InvalidateRegionsWorker::VisitCluster(const MemRegion *baseR,
622 BindingKey *I, BindingKey *E) {
623 for ( ; I != E; ++I) {
624 // Get the old binding. Is it a region? If so, add it to the worklist.
625 const BindingKey &K = *I;
Ted Kremenek3baf6722010-11-24 00:54:37 +0000626 if (const SVal *V = RM.lookup(B, K))
Ted Kremenek5499b842010-03-10 16:32:56 +0000627 VisitBinding(*V);
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000628
Ted Kremenek3baf6722010-11-24 00:54:37 +0000629 B = RM.removeBinding(B, K);
Ted Kremenek5499b842010-03-10 16:32:56 +0000630 }
631}
Ted Kremeneka4fab032010-03-10 07:19:59 +0000632
Ted Kremenek75a2d942010-04-01 00:15:55 +0000633void InvalidateRegionsWorker::VisitBaseRegion(const MemRegion *baseR) {
Ted Kremenek5499b842010-03-10 16:32:56 +0000634 if (IS) {
635 // Symbolic region? Mark that symbol touched by the invalidation.
636 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(baseR))
637 IS->insert(SR->getSymbol());
Ted Kremeneka5e81f12009-08-06 01:20:57 +0000638 }
639
Ted Kremenek5499b842010-03-10 16:32:56 +0000640 // BlockDataRegion? If so, invalidate captured variables that are passed
641 // by reference.
642 if (const BlockDataRegion *BR = dyn_cast<BlockDataRegion>(baseR)) {
643 for (BlockDataRegion::referenced_vars_iterator
644 BI = BR->referenced_vars_begin(), BE = BR->referenced_vars_end() ;
645 BI != BE; ++BI) {
646 const VarRegion *VR = *BI;
647 const VarDecl *VD = VR->getDecl();
648 if (VD->getAttr<BlocksAttr>() || !VD->hasLocalStorage())
649 AddToWorkList(VR);
650 }
651 return;
652 }
653
Jordy Rosec2b7dfa2010-08-14 20:44:32 +0000654 // Otherwise, we have a normal data region. Record that we touched the region.
655 if (Regions)
656 Regions->push_back(baseR);
657
Ted Kremenek5499b842010-03-10 16:32:56 +0000658 if (isa<AllocaRegion>(baseR) || isa<SymbolicRegion>(baseR)) {
659 // Invalidate the region by setting its default value to
660 // conjured symbol. The type of the symbol is irrelavant.
Ted Kremenek3baf6722010-11-24 00:54:37 +0000661 DefinedOrUnknownSVal V =
662 ValMgr.getConjuredSymbolVal(baseR, Ex, Ctx.IntTy, Count);
663 B = RM.addBinding(B, baseR, BindingKey::Default, V);
Ted Kremenek5499b842010-03-10 16:32:56 +0000664 return;
665 }
666
667 if (!baseR->isBoundable())
668 return;
669
670 const TypedRegion *TR = cast<TypedRegion>(baseR);
Zhongxing Xu018220c2010-08-11 06:10:55 +0000671 QualType T = TR->getValueType();
Ted Kremenek5499b842010-03-10 16:32:56 +0000672
673 // Invalidate the binding.
Zhongxing Xu61453402010-08-21 06:51:45 +0000674 if (T->isStructureType()) {
Zhongxing Xu0b46b1b2010-08-21 06:26:59 +0000675 // Invalidate the region by setting its default value to
676 // conjured symbol. The type of the symbol is irrelavant.
Ted Kremenek5499b842010-03-10 16:32:56 +0000677 DefinedOrUnknownSVal V = ValMgr.getConjuredSymbolVal(baseR, Ex, Ctx.IntTy,
678 Count);
Ted Kremenek3baf6722010-11-24 00:54:37 +0000679 B = RM.addBinding(B, baseR, BindingKey::Default, V);
Ted Kremenek5499b842010-03-10 16:32:56 +0000680 return;
681 }
682
683 if (const ArrayType *AT = Ctx.getAsArrayType(T)) {
684 // Set the default value of the array to conjured symbol.
685 DefinedOrUnknownSVal V =
686 ValMgr.getConjuredSymbolVal(baseR, Ex, AT->getElementType(), Count);
Ted Kremenek3baf6722010-11-24 00:54:37 +0000687 B = RM.addBinding(B, baseR, BindingKey::Default, V);
Ted Kremenek5499b842010-03-10 16:32:56 +0000688 return;
689 }
Ted Kremenekc1143e52010-10-26 00:06:17 +0000690
691 if (includeGlobals &&
692 isa<NonStaticGlobalSpaceRegion>(baseR->getMemorySpace())) {
693 // If the region is a global and we are invalidating all globals,
694 // just erase the entry. This causes all globals to be lazily
695 // symbolicated from the same base symbol.
Ted Kremenek3baf6722010-11-24 00:54:37 +0000696 B = RM.removeBinding(B, baseR);
Ted Kremenekc1143e52010-10-26 00:06:17 +0000697 return;
698 }
699
Ted Kremenek5499b842010-03-10 16:32:56 +0000700
701 DefinedOrUnknownSVal V = ValMgr.getConjuredSymbolVal(baseR, Ex, T, Count);
702 assert(SymbolManager::canSymbolicate(T) || V.isUnknown());
Ted Kremenek3baf6722010-11-24 00:54:37 +0000703 B = RM.addBinding(B, baseR, BindingKey::Direct, V);
Ted Kremenek1004a9f2009-07-29 18:16:25 +0000704}
705
Zhongxing Xub4a9c612010-02-05 05:06:13 +0000706Store RegionStoreManager::InvalidateRegions(Store store,
707 const MemRegion * const *I,
708 const MemRegion * const *E,
709 const Expr *Ex, unsigned Count,
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000710 InvalidatedSymbols *IS,
Jordy Rosec2b7dfa2010-08-14 20:44:32 +0000711 bool invalidateGlobals,
712 InvalidatedRegions *Regions) {
Ted Kremenek5499b842010-03-10 16:32:56 +0000713 InvalidateRegionsWorker W(*this, StateMgr,
714 RegionStoreManager::GetRegionBindings(store),
Ted Kremenekd45d59f2010-10-26 00:06:15 +0000715 Ex, Count, IS, Regions, invalidateGlobals);
Ted Kremenek5499b842010-03-10 16:32:56 +0000716
717 // Scan the bindings and generate the clusters.
Ted Kremenekd45d59f2010-10-26 00:06:15 +0000718 W.GenerateClusters();
Ted Kremenek5499b842010-03-10 16:32:56 +0000719
720 // Add I .. E to the worklist.
721 for ( ; I != E; ++I)
722 W.AddToWorkList(*I);
723
724 W.RunWorkList();
725
726 // Return the new bindings.
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000727 RegionBindings B = W.getRegionBindings();
728
729 if (invalidateGlobals) {
730 // Bind the non-static globals memory space to a new symbol that we will
731 // use to derive the bindings for all non-static globals.
732 const GlobalsSpaceRegion *GS = MRMgr.getGlobalsRegion();
733 SVal V =
734 ValMgr.getConjuredSymbolVal(/* SymbolTag = */ (void*) GS, Ex,
735 /* symbol type, doesn't matter */ Ctx.IntTy,
736 Count);
Ted Kremenek3baf6722010-11-24 00:54:37 +0000737 B = addBinding(B, BindingKey::Make(GS, BindingKey::Default), V);
Jordy Rosec2b7dfa2010-08-14 20:44:32 +0000738
739 // Even if there are no bindings in the global scope, we still need to
740 // record that we touched it.
741 if (Regions)
742 Regions->push_back(GS);
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000743 }
744
745 return B.getRoot();
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000746}
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000747
Ted Kremenek9af46f52009-06-16 22:36:44 +0000748//===----------------------------------------------------------------------===//
749// Extents for regions.
750//===----------------------------------------------------------------------===//
751
Zhongxing Xue884ff82009-11-12 02:48:32 +0000752DefinedOrUnknownSVal RegionStoreManager::getSizeInElements(const GRState *state,
Zhongxing Xu3ed04d32010-01-18 08:54:31 +0000753 const MemRegion *R,
754 QualType EleTy) {
Jordy Rose32f26562010-07-04 00:00:41 +0000755 SVal Size = cast<SubRegion>(R)->getExtent(ValMgr);
756 SValuator &SVator = ValMgr.getSValuator();
757 const llvm::APSInt *SizeInt = SVator.getKnownValue(state, Size);
758 if (!SizeInt)
759 return UnknownVal();
Mike Stump1eb44332009-09-09 15:08:12 +0000760
Jordy Rose32f26562010-07-04 00:00:41 +0000761 CharUnits RegionSize = CharUnits::fromQuantity(SizeInt->getSExtValue());
Ted Kremenek555c77a2010-09-14 23:08:34 +0000762
763 if (Ctx.getAsVariableArrayType(EleTy)) {
764 // FIXME: We need to track extra state to properly record the size
765 // of VLAs. Returning UnknownVal here, however, is a stop-gap so that
766 // we don't have a divide-by-zero below.
767 return UnknownVal();
768 }
769
Zhongxing Xu57663fe2010-08-15 10:08:38 +0000770 CharUnits EleSize = Ctx.getTypeSizeInChars(EleTy);
Mike Stump1eb44332009-09-09 15:08:12 +0000771
Jordy Rose32f26562010-07-04 00:00:41 +0000772 // If a variable is reinterpreted as a type that doesn't fit into a larger
773 // type evenly, round it down.
774 // This is a signed value, since it's used in arithmetic with signed indices.
775 return ValMgr.makeIntVal(RegionSize / EleSize, false);
Zhongxing Xue8a964b2008-11-22 13:21:46 +0000776}
777
Ted Kremenek9af46f52009-06-16 22:36:44 +0000778//===----------------------------------------------------------------------===//
779// Location and region casting.
780//===----------------------------------------------------------------------===//
781
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000782/// ArrayToPointer - Emulates the "decay" of an array to a pointer
783/// type. 'Array' represents the lvalue of the array being decayed
784/// to a pointer, and the returned SVal represents the decayed
785/// version of that lvalue (i.e., a pointer to the first element of
786/// the array). This is called by GRExprEngine when evaluating casts
787/// from arrays to pointers.
Zhongxing Xuf1d537f2009-03-30 05:55:46 +0000788SVal RegionStoreManager::ArrayToPointer(Loc Array) {
Ted Kremenekabb042f2008-12-13 19:24:37 +0000789 if (!isa<loc::MemRegionVal>(Array))
790 return UnknownVal();
Mike Stump1eb44332009-09-09 15:08:12 +0000791
Ted Kremenekabb042f2008-12-13 19:24:37 +0000792 const MemRegion* R = cast<loc::MemRegionVal>(&Array)->getRegion();
793 const TypedRegion* ArrayR = dyn_cast<TypedRegion>(R);
Mike Stump1eb44332009-09-09 15:08:12 +0000794
Ted Kremenekbbee1a72009-01-13 01:03:27 +0000795 if (!ArrayR)
Ted Kremenekabb042f2008-12-13 19:24:37 +0000796 return UnknownVal();
Mike Stump1eb44332009-09-09 15:08:12 +0000797
Zhongxing Xua82d8aa2009-05-09 03:57:34 +0000798 // Strip off typedefs from the ArrayRegion's ValueType.
Zhongxing Xu018220c2010-08-11 06:10:55 +0000799 QualType T = ArrayR->getValueType().getDesugaredType();
Ted Kremenekf936f452009-05-04 06:18:28 +0000800 ArrayType *AT = cast<ArrayType>(T);
801 T = AT->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +0000802
Ted Kremenek02282ac2010-09-15 03:13:30 +0000803 NonLoc ZeroIdx = ValMgr.makeZeroArrayIndex();
Zhongxing Xu57663fe2010-08-15 10:08:38 +0000804 return loc::MemRegionVal(MRMgr.getElementRegion(T, ZeroIdx, ArrayR, Ctx));
Zhongxing Xub1d542a2008-10-24 01:09:32 +0000805}
806
Ted Kremenek9af46f52009-06-16 22:36:44 +0000807//===----------------------------------------------------------------------===//
808// Pointer arithmetic.
809//===----------------------------------------------------------------------===//
810
Zhongxing Xu461147f2010-02-05 05:24:20 +0000811SVal RegionStoreManager::EvalBinOp(BinaryOperator::Opcode Op, Loc L, NonLoc R,
Ted Kremenek5c734622009-06-26 00:41:43 +0000812 QualType resultTy) {
Zhongxing Xuc4761f52009-05-09 15:18:12 +0000813 // Assume the base location is MemRegionVal.
Ted Kremenek5dc27462009-03-03 02:51:43 +0000814 if (!isa<loc::MemRegionVal>(L))
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000815 return UnknownVal();
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000816
Jordy Roseeac4a002010-06-28 08:26:15 +0000817 // Special case for zero RHS.
818 if (R.isZeroConstant()) {
819 switch (Op) {
820 default:
821 // Handle it normally.
822 break;
John McCall2de56d12010-08-25 11:45:40 +0000823 case BO_Add:
824 case BO_Sub:
Jordy Roseeac4a002010-06-28 08:26:15 +0000825 // FIXME: does this need to be casted to match resultTy?
826 return L;
827 }
828 }
829
Zhongxing Xua1718c72009-04-03 07:33:13 +0000830 const MemRegion* MR = cast<loc::MemRegionVal>(L).getRegion();
Zhongxing Xuc4761f52009-05-09 15:18:12 +0000831 const ElementRegion *ER = 0;
Zhongxing Xu262fd032009-05-20 09:00:16 +0000832
Ted Kremenek3bccf082009-07-11 00:58:27 +0000833 switch (MR->getKind()) {
834 case MemRegion::SymbolicRegionKind: {
835 const SymbolicRegion *SR = cast<SymbolicRegion>(MR);
Ted Kremenekdf74e252009-08-02 05:15:23 +0000836 SymbolRef Sym = SR->getSymbol();
Zhongxing Xu57663fe2010-08-15 10:08:38 +0000837 QualType T = Sym->getType(Ctx);
Ted Kremenekbcf62a92009-08-25 22:55:09 +0000838 QualType EleTy;
Mike Stump1eb44332009-09-09 15:08:12 +0000839
Ted Kremenekbcf62a92009-08-25 22:55:09 +0000840 if (const PointerType *PT = T->getAs<PointerType>())
841 EleTy = PT->getPointeeType();
842 else
John McCall183700f2009-09-21 23:43:11 +0000843 EleTy = T->getAs<ObjCObjectPointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +0000844
Ted Kremenek02282ac2010-09-15 03:13:30 +0000845 const NonLoc &ZeroIdx = ValMgr.makeZeroArrayIndex();
Zhongxing Xu57663fe2010-08-15 10:08:38 +0000846 ER = MRMgr.getElementRegion(EleTy, ZeroIdx, SR, Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +0000847 break;
Zhongxing Xu005f07b2009-06-19 04:51:14 +0000848 }
Ted Kremenek3bccf082009-07-11 00:58:27 +0000849 case MemRegion::AllocaRegionKind: {
Ted Kremenek3bccf082009-07-11 00:58:27 +0000850 const AllocaRegion *AR = cast<AllocaRegion>(MR);
Zhongxing Xu57663fe2010-08-15 10:08:38 +0000851 QualType EleTy = Ctx.CharTy; // Create an ElementRegion of bytes.
Ted Kremenek02282ac2010-09-15 03:13:30 +0000852 NonLoc ZeroIdx = ValMgr.makeZeroArrayIndex();
Zhongxing Xu57663fe2010-08-15 10:08:38 +0000853 ER = MRMgr.getElementRegion(EleTy, ZeroIdx, AR, Ctx);
Mike Stump1eb44332009-09-09 15:08:12 +0000854 break;
Ted Kremenek3bccf082009-07-11 00:58:27 +0000855 }
Zhongxing Xua1718c72009-04-03 07:33:13 +0000856
Ted Kremenek3bccf082009-07-11 00:58:27 +0000857 case MemRegion::ElementRegionKind: {
858 ER = cast<ElementRegion>(MR);
859 break;
860 }
Mike Stump1eb44332009-09-09 15:08:12 +0000861
Ted Kremenek3bccf082009-07-11 00:58:27 +0000862 // Not yet handled.
863 case MemRegion::VarRegionKind:
Ted Kremenekcd8f6ac2009-10-06 01:39:48 +0000864 case MemRegion::StringRegionKind: {
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000865
Ted Kremenekcd8f6ac2009-10-06 01:39:48 +0000866 }
867 // Fall-through.
Ted Kremenek3bccf082009-07-11 00:58:27 +0000868 case MemRegion::CompoundLiteralRegionKind:
869 case MemRegion::FieldRegionKind:
Ted Kremenek3bccf082009-07-11 00:58:27 +0000870 case MemRegion::ObjCIvarRegionKind:
Zhongxing Xubb141212009-12-16 11:27:52 +0000871 case MemRegion::CXXObjectRegionKind:
Ted Kremenek3bccf082009-07-11 00:58:27 +0000872 return UnknownVal();
Mike Stump1eb44332009-09-09 15:08:12 +0000873
Ted Kremenekeb1c7a02009-11-25 01:32:22 +0000874 case MemRegion::FunctionTextRegionKind:
875 case MemRegion::BlockTextRegionKind:
Ted Kremenek0a8112a2009-11-25 23:53:07 +0000876 case MemRegion::BlockDataRegionKind:
Ted Kremenek3bccf082009-07-11 00:58:27 +0000877 // Technically this can happen if people do funny things with casts.
878 return UnknownVal();
Mike Stump1eb44332009-09-09 15:08:12 +0000879
Ted Kremenekde0d2632010-01-05 02:18:06 +0000880 case MemRegion::CXXThisRegionKind:
881 assert(0 &&
882 "Cannot perform pointer arithmetic on implicit argument 'this'");
Ted Kremenek67d12872009-12-07 22:05:27 +0000883 case MemRegion::GenericMemSpaceRegionKind:
884 case MemRegion::StackLocalsSpaceRegionKind:
885 case MemRegion::StackArgumentsSpaceRegionKind:
886 case MemRegion::HeapSpaceRegionKind:
Ted Kremenekdcee3ce2010-07-01 20:16:50 +0000887 case MemRegion::NonStaticGlobalSpaceRegionKind:
888 case MemRegion::StaticGlobalSpaceRegionKind:
Ted Kremenek2b87ae42009-12-11 06:43:27 +0000889 case MemRegion::UnknownSpaceRegionKind:
Ted Kremenek3bccf082009-07-11 00:58:27 +0000890 assert(0 && "Cannot perform pointer arithmetic on a MemSpace");
891 return UnknownVal();
Zhongxing Xu5414a5c2009-06-21 13:24:24 +0000892 }
Zhongxing Xu2b1dc172009-03-11 07:43:49 +0000893
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000894 SVal Idx = ER->getIndex();
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000895 nonloc::ConcreteInt* Base = dyn_cast<nonloc::ConcreteInt>(&Idx);
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000896
Ted Kremenekcd8f6ac2009-10-06 01:39:48 +0000897 // For now, only support:
898 // (a) concrete integer indices that can easily be resolved
899 // (b) 0 + symbolic index
900 if (Base) {
901 if (nonloc::ConcreteInt *Offset = dyn_cast<nonloc::ConcreteInt>(&R)) {
902 // FIXME: Should use SValuator here.
903 SVal NewIdx =
904 Base->evalBinOp(ValMgr, Op,
Ted Kremenek46537392009-07-16 01:33:37 +0000905 cast<nonloc::ConcreteInt>(ValMgr.convertToArrayIndex(*Offset)));
Ted Kremenek02282ac2010-09-15 03:13:30 +0000906
907 if (!isa<NonLoc>(NewIdx))
908 return UnknownVal();
909
Ted Kremenekcd8f6ac2009-10-06 01:39:48 +0000910 const MemRegion* NewER =
Ted Kremenek02282ac2010-09-15 03:13:30 +0000911 MRMgr.getElementRegion(ER->getElementType(), cast<NonLoc>(NewIdx),
Zhongxing Xu57663fe2010-08-15 10:08:38 +0000912 ER->getSuperRegion(), Ctx);
Ted Kremenekcd8f6ac2009-10-06 01:39:48 +0000913 return ValMgr.makeLoc(NewER);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000914 }
Ted Kremenekcd8f6ac2009-10-06 01:39:48 +0000915 if (0 == Base->getValue()) {
916 const MemRegion* NewER =
917 MRMgr.getElementRegion(ER->getElementType(), R,
Zhongxing Xu57663fe2010-08-15 10:08:38 +0000918 ER->getSuperRegion(), Ctx);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000919 return ValMgr.makeLoc(NewER);
920 }
Ted Kremenek5dc27462009-03-03 02:51:43 +0000921 }
Mike Stump1eb44332009-09-09 15:08:12 +0000922
Ted Kremenek5dc27462009-03-03 02:51:43 +0000923 return UnknownVal();
Zhongxing Xu94aa6c12009-03-02 07:52:23 +0000924}
925
Ted Kremenek9af46f52009-06-16 22:36:44 +0000926//===----------------------------------------------------------------------===//
927// Loading values from regions.
928//===----------------------------------------------------------------------===//
929
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000930Optional<SVal> RegionStoreManager::getDirectBinding(RegionBindings B,
Zhongxing Xubdfa85f2010-05-29 06:23:24 +0000931 const MemRegion *R) {
Zhongxing Xu42c67bf2010-05-29 06:49:04 +0000932
Ted Kremenek3baf6722010-11-24 00:54:37 +0000933 if (const SVal *V = lookup(B, R, BindingKey::Direct))
Zhongxing Xu42c67bf2010-05-29 06:49:04 +0000934 return *V;
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000935
Zhongxing Xu13d50172009-10-11 08:08:02 +0000936 return Optional<SVal>();
937}
938
939Optional<SVal> RegionStoreManager::getDefaultBinding(RegionBindings B,
Ted Kremenekd4e5a602009-08-06 21:43:54 +0000940 const MemRegion *R) {
Ted Kremenekd4e5a602009-08-06 21:43:54 +0000941 if (R->isBoundable())
942 if (const TypedRegion *TR = dyn_cast<TypedRegion>(R))
Zhongxing Xu018220c2010-08-11 06:10:55 +0000943 if (TR->getValueType()->isUnionType())
Ted Kremenekd4e5a602009-08-06 21:43:54 +0000944 return UnknownVal();
945
Ted Kremenek3baf6722010-11-24 00:54:37 +0000946 if (const SVal *V = lookup(B, R, BindingKey::Default))
Ted Kremeneke393f4a2010-02-03 03:06:46 +0000947 return *V;
Zhongxing Xu13d50172009-10-11 08:08:02 +0000948
949 return Optional<SVal>();
950}
951
Zhongxing Xu576bb922010-02-05 03:01:53 +0000952SVal RegionStoreManager::Retrieve(Store store, Loc L, QualType T) {
Zhongxing Xu53bcdd42008-10-21 05:29:26 +0000953 assert(!isa<UnknownVal>(L) && "location unknown");
954 assert(!isa<UndefinedVal>(L) && "location undefined");
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000955
Ted Kremenek29836f92010-11-11 23:10:10 +0000956 // For access to concrete addresses, return UnknownVal. Checks
957 // for null dereferences (and similar errors) are done by checkers, not
958 // the Store.
959 // FIXME: We can consider lazily symbolicating such memory, but we really
960 // should defer this when we can reason easily about symbolicating arrays
961 // of bytes.
962 if (isa<loc::ConcreteInt>(L)) {
963 return UnknownVal();
964 }
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +0000965
Ted Kremenek67f28532009-06-17 22:02:04 +0000966 const MemRegion *MR = cast<loc::MemRegionVal>(L).getRegion();
Zhongxing Xua1718c72009-04-03 07:33:13 +0000967
Tom Care7b050302010-06-25 18:22:31 +0000968 if (isa<AllocaRegion>(MR) || isa<SymbolicRegion>(MR)) {
969 if (T.isNull()) {
970 const SymbolicRegion *SR = cast<SymbolicRegion>(MR);
Zhongxing Xu57663fe2010-08-15 10:08:38 +0000971 T = SR->getSymbol()->getType(Ctx);
Tom Care7b050302010-06-25 18:22:31 +0000972 }
Zhongxing Xu81491852010-02-08 08:43:02 +0000973 MR = GetElementZeroRegion(MR, T);
Tom Care7b050302010-06-25 18:22:31 +0000974 }
Mike Stump1eb44332009-09-09 15:08:12 +0000975
Zhongxing Xu2db08ca2010-03-01 05:29:02 +0000976 if (isa<CodeTextRegion>(MR)) {
977 assert(0 && "Why load from a code text region?");
Zhongxing Xuc999ed72010-02-04 02:39:47 +0000978 return UnknownVal();
Zhongxing Xu2db08ca2010-03-01 05:29:02 +0000979 }
Mike Stump1eb44332009-09-09 15:08:12 +0000980
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000981 // FIXME: Perhaps this method should just take a 'const MemRegion*' argument
982 // instead of 'Loc', and have the other Loc cases handled at a higher level.
Ted Kremenek67f28532009-06-17 22:02:04 +0000983 const TypedRegion *R = cast<TypedRegion>(MR);
Zhongxing Xu018220c2010-08-11 06:10:55 +0000984 QualType RTy = R->getValueType();
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000985
Ted Kremenek869fb4a2008-12-24 07:46:32 +0000986 // FIXME: We should eventually handle funny addressing. e.g.:
987 //
988 // int x = ...;
989 // int *p = &x;
990 // char *q = (char*) p;
991 // char c = *q; // returns the first byte of 'x'.
992 //
993 // Such funny addressing will occur due to layering of regions.
994
Douglas Gregorfb87b892010-04-26 21:31:17 +0000995 if (RTy->isStructureOrClassType())
Zhongxing Xu576bb922010-02-05 03:01:53 +0000996 return RetrieveStruct(store, R);
Mike Stump1eb44332009-09-09 15:08:12 +0000997
Ted Kremenekd4e5a602009-08-06 21:43:54 +0000998 // FIXME: Handle unions.
999 if (RTy->isUnionType())
Zhongxing Xuc999ed72010-02-04 02:39:47 +00001000 return UnknownVal();
Zhongxing Xu3e001f32009-05-03 00:27:40 +00001001
1002 if (RTy->isArrayType())
Zhongxing Xu576bb922010-02-05 03:01:53 +00001003 return RetrieveArray(store, R);
Zhongxing Xu3e001f32009-05-03 00:27:40 +00001004
Zhongxing Xu1038f9f2009-03-09 09:15:51 +00001005 // FIXME: handle Vector types.
1006 if (RTy->isVectorType())
Zhongxing Xuc999ed72010-02-04 02:39:47 +00001007 return UnknownVal();
Zhongxing Xu99c20302009-06-28 14:16:39 +00001008
1009 if (const FieldRegion* FR = dyn_cast<FieldRegion>(R))
Zhongxing Xu576bb922010-02-05 03:01:53 +00001010 return CastRetrievedVal(RetrieveField(store, FR), FR, T, false);
Zhongxing Xu99c20302009-06-28 14:16:39 +00001011
Ted Kremenekc50e6df2010-01-11 02:33:26 +00001012 if (const ElementRegion* ER = dyn_cast<ElementRegion>(R)) {
1013 // FIXME: Here we actually perform an implicit conversion from the loaded
1014 // value to the element type. Eventually we want to compose these values
1015 // more intelligently. For example, an 'element' can encompass multiple
1016 // bound regions (e.g., several bound bytes), or could be a subset of
1017 // a larger value.
Zhongxing Xu576bb922010-02-05 03:01:53 +00001018 return CastRetrievedVal(RetrieveElement(store, ER), ER, T, false);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001019 }
Mike Stump1eb44332009-09-09 15:08:12 +00001020
Ted Kremenekc50e6df2010-01-11 02:33:26 +00001021 if (const ObjCIvarRegion *IVR = dyn_cast<ObjCIvarRegion>(R)) {
1022 // FIXME: Here we actually perform an implicit conversion from the loaded
1023 // value to the ivar type. What we should model is stores to ivars
1024 // that blow past the extent of the ivar. If the address of the ivar is
1025 // reinterpretted, it is possible we stored a different value that could
1026 // fit within the ivar. Either we need to cast these when storing them
1027 // or reinterpret them lazily (as we do here).
Zhongxing Xu576bb922010-02-05 03:01:53 +00001028 return CastRetrievedVal(RetrieveObjCIvar(store, IVR), IVR, T, false);
Ted Kremenekc50e6df2010-01-11 02:33:26 +00001029 }
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Ted Kremenekc50e6df2010-01-11 02:33:26 +00001031 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
1032 // FIXME: Here we actually perform an implicit conversion from the loaded
1033 // value to the variable type. What we should model is stores to variables
1034 // that blow past the extent of the variable. If the address of the
1035 // variable is reinterpretted, it is possible we stored a different value
1036 // that could fit within the variable. Either we need to cast these when
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001037 // storing them or reinterpret them lazily (as we do here).
Zhongxing Xu576bb922010-02-05 03:01:53 +00001038 return CastRetrievedVal(RetrieveVar(store, VR), VR, T, false);
Ted Kremenekc50e6df2010-01-11 02:33:26 +00001039 }
Ted Kremenek25c54572009-07-20 22:58:02 +00001040
Zhongxing Xu576bb922010-02-05 03:01:53 +00001041 RegionBindings B = GetRegionBindings(store);
Ted Kremenek3baf6722010-11-24 00:54:37 +00001042 const SVal *V = lookup(B, R, BindingKey::Direct);
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001043
1044 // Check if the region has a binding.
1045 if (V)
Zhongxing Xuc999ed72010-02-04 02:39:47 +00001046 return *V;
Ted Kremenek869fb4a2008-12-24 07:46:32 +00001047
Ted Kremenek869fb4a2008-12-24 07:46:32 +00001048 // The location does not have a bound value. This means that it has
1049 // the value it had upon its creation and/or entry to the analyzed
1050 // function/method. These are either symbolic values or 'undefined'.
Ted Kremenekde0d2632010-01-05 02:18:06 +00001051 if (R->hasStackNonParametersStorage()) {
Ted Kremenek869fb4a2008-12-24 07:46:32 +00001052 // All stack variables are considered to have undefined values
1053 // upon creation. All heap allocated blocks are considered to
1054 // have undefined values as well unless they are explicitly bound
1055 // to specific values.
Zhongxing Xuc999ed72010-02-04 02:39:47 +00001056 return UndefinedVal();
Ted Kremenek869fb4a2008-12-24 07:46:32 +00001057 }
1058
Ted Kremenekbb2b4332009-07-02 22:16:42 +00001059 // All other values are symbolic.
Zhongxing Xu14d23282010-03-01 06:56:52 +00001060 return ValMgr.getRegionValueSymbolVal(R);
Zhongxing Xu53bcdd42008-10-21 05:29:26 +00001061}
Mike Stump1eb44332009-09-09 15:08:12 +00001062
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001063std::pair<Store, const MemRegion *>
Ted Kremenek451ac092009-08-06 04:50:20 +00001064RegionStoreManager::GetLazyBinding(RegionBindings B, const MemRegion *R) {
Zhongxing Xu13d50172009-10-11 08:08:02 +00001065 if (Optional<SVal> OV = getDirectBinding(B, R))
1066 if (const nonloc::LazyCompoundVal *V =
1067 dyn_cast<nonloc::LazyCompoundVal>(OV.getPointer()))
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001068 return std::make_pair(V->getStore(), V->getRegion());
Mike Stump1eb44332009-09-09 15:08:12 +00001069
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001070 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) {
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001071 const std::pair<Store, const MemRegion *> &X =
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001072 GetLazyBinding(B, ER->getSuperRegion());
Mike Stump1eb44332009-09-09 15:08:12 +00001073
Ted Kremenek8ec4aac2010-02-09 19:11:53 +00001074 if (X.second)
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001075 return std::make_pair(X.first,
1076 MRMgr.getElementRegionWithSuper(ER, X.second));
Mike Stump1eb44332009-09-09 15:08:12 +00001077 }
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001078 else if (const FieldRegion *FR = dyn_cast<FieldRegion>(R)) {
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001079 const std::pair<Store, const MemRegion *> &X =
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001080 GetLazyBinding(B, FR->getSuperRegion());
Mike Stump1eb44332009-09-09 15:08:12 +00001081
Ted Kremenek8ec4aac2010-02-09 19:11:53 +00001082 if (X.second)
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001083 return std::make_pair(X.first,
1084 MRMgr.getFieldRegionWithSuper(FR, X.second));
1085 }
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001086 // The NULL MemRegion indicates an non-existent lazy binding. A NULL Store is
Zhongxing Xudcbcbdc2010-02-10 02:02:10 +00001087 // possible for a valid lazy binding.
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001088 return std::make_pair((Store) 0, (const MemRegion *) 0);
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001089}
Zhongxing Xu53bcdd42008-10-21 05:29:26 +00001090
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001091SVal RegionStoreManager::RetrieveElement(Store store,
Zhongxing Xuc00346f2009-06-25 05:29:39 +00001092 const ElementRegion* R) {
1093 // Check if the region has a binding.
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001094 RegionBindings B = GetRegionBindings(store);
Ted Kremenek2cf073b2010-03-30 20:30:52 +00001095 if (const Optional<SVal> &V = getDirectBinding(B, R))
Zhongxing Xuc00346f2009-06-25 05:29:39 +00001096 return *V;
1097
Ted Kremenek921109a2009-07-01 23:19:52 +00001098 const MemRegion* superR = R->getSuperRegion();
1099
Zhongxing Xuc00346f2009-06-25 05:29:39 +00001100 // Check if the region is an element region of a string literal.
Ted Kremenek921109a2009-07-01 23:19:52 +00001101 if (const StringRegion *StrR=dyn_cast<StringRegion>(superR)) {
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001102 // FIXME: Handle loads from strings where the literal is treated as
Ted Kremenek95efe0f2009-09-29 16:36:48 +00001103 // an integer, e.g., *((unsigned int*)"hello")
Zhongxing Xu018220c2010-08-11 06:10:55 +00001104 QualType T = Ctx.getAsArrayType(StrR->getValueType())->getElementType();
Ted Kremenek95efe0f2009-09-29 16:36:48 +00001105 if (T != Ctx.getCanonicalType(R->getElementType()))
1106 return UnknownVal();
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001107
Zhongxing Xuc00346f2009-06-25 05:29:39 +00001108 const StringLiteral *Str = StrR->getStringLiteral();
1109 SVal Idx = R->getIndex();
1110 if (nonloc::ConcreteInt *CI = dyn_cast<nonloc::ConcreteInt>(&Idx)) {
1111 int64_t i = CI->getValue().getSExtValue();
Mike Stump1eb44332009-09-09 15:08:12 +00001112 int64_t byteLength = Str->getByteLength();
Jordy Rose167cc372010-07-29 06:40:33 +00001113 // Technically, only i == byteLength is guaranteed to be null.
1114 // However, such overflows should be caught before reaching this point;
1115 // the only time such an access would be made is if a string literal was
1116 // used to initialize a larger array.
Benjamin Kramer2f4eaef2010-08-17 12:54:38 +00001117 char c = (i >= byteLength) ? '\0' : Str->getString()[i];
Ted Kremenek95efe0f2009-09-29 16:36:48 +00001118 return ValMgr.makeIntVal(c, T);
Zhongxing Xuc00346f2009-06-25 05:29:39 +00001119 }
1120 }
Ted Kremenek1e4a32a2010-09-01 23:00:46 +00001121
1122 // Check for loads from a code text region. For such loads, just give up.
Ted Kremenek08140f92010-09-02 00:34:30 +00001123 if (isa<CodeTextRegion>(superR))
Ted Kremenek1e4a32a2010-09-01 23:00:46 +00001124 return UnknownVal();
Mike Stump1eb44332009-09-09 15:08:12 +00001125
Ted Kremeneka709b872010-05-31 01:22:04 +00001126 // Handle the case where we are indexing into a larger scalar object.
1127 // For example, this handles:
1128 // int x = ...
1129 // char *y = &x;
1130 // return *y;
1131 // FIXME: This is a hack, and doesn't do anything really intelligent yet.
Zhongxing Xu7caf9b32010-08-02 04:56:14 +00001132 const RegionRawOffset &O = R->getAsArrayOffset();
Ted Kremeneka709b872010-05-31 01:22:04 +00001133 if (const TypedRegion *baseR = dyn_cast_or_null<TypedRegion>(O.getRegion())) {
Zhongxing Xu018220c2010-08-11 06:10:55 +00001134 QualType baseT = baseR->getValueType();
Ted Kremeneka709b872010-05-31 01:22:04 +00001135 if (baseT->isScalarType()) {
1136 QualType elemT = R->getElementType();
1137 if (elemT->isScalarType()) {
1138 if (Ctx.getTypeSizeInChars(baseT) >= Ctx.getTypeSizeInChars(elemT)) {
1139 if (const Optional<SVal> &V = getDirectBinding(B, superR)) {
1140 if (SymbolRef parentSym = V->getAsSymbol())
1141 return ValMgr.getDerivedRegionValueSymbolVal(parentSym, R);
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001142
Ted Kremeneka709b872010-05-31 01:22:04 +00001143 if (V->isUnknownOrUndef())
1144 return *V;
1145 // Other cases: give up. We are indexing into a larger object
1146 // that has some value, but we don't know how to handle that yet.
1147 return UnknownVal();
1148 }
1149 }
1150 }
Zhongxing Xu42c67bf2010-05-29 06:49:04 +00001151 }
Zhongxing Xu7abe0192009-06-30 12:32:59 +00001152 }
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001153 return RetrieveFieldOrElementCommon(store, R, R->getElementType(), superR);
Zhongxing Xuc00346f2009-06-25 05:29:39 +00001154}
1155
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001156SVal RegionStoreManager::RetrieveField(Store store,
Zhongxing Xu490b0f02009-06-25 04:50:44 +00001157 const FieldRegion* R) {
Zhongxing Xu490b0f02009-06-25 04:50:44 +00001158
1159 // Check if the region has a binding.
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001160 RegionBindings B = GetRegionBindings(store);
Ted Kremenek2cf073b2010-03-30 20:30:52 +00001161 if (const Optional<SVal> &V = getDirectBinding(B, R))
Zhongxing Xu490b0f02009-06-25 04:50:44 +00001162 return *V;
1163
Zhongxing Xu018220c2010-08-11 06:10:55 +00001164 QualType Ty = R->getValueType();
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001165 return RetrieveFieldOrElementCommon(store, R, Ty, R->getSuperRegion());
Ted Kremenek566a6fa2009-08-06 22:33:36 +00001166}
Mike Stump1eb44332009-09-09 15:08:12 +00001167
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001168Optional<SVal>
1169RegionStoreManager::RetrieveDerivedDefaultValue(RegionBindings B,
1170 const MemRegion *superR,
1171 const TypedRegion *R,
1172 QualType Ty) {
1173
1174 if (const Optional<SVal> &D = getDefaultBinding(B, superR)) {
1175 if (SymbolRef parentSym = D->getAsSymbol())
1176 return ValMgr.getDerivedRegionValueSymbolVal(parentSym, R);
1177
1178 if (D->isZeroConstant())
1179 return ValMgr.makeZeroVal(Ty);
1180
1181 if (D->isUnknownOrUndef())
1182 return *D;
1183
1184 assert(0 && "Unknown default value");
1185 }
1186
1187 return Optional<SVal>();
1188}
1189
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001190SVal RegionStoreManager::RetrieveFieldOrElementCommon(Store store,
Ted Kremenek566a6fa2009-08-06 22:33:36 +00001191 const TypedRegion *R,
1192 QualType Ty,
1193 const MemRegion *superR) {
1194
Mike Stump1eb44332009-09-09 15:08:12 +00001195 // At this point we have already checked in either RetrieveElement or
Ted Kremenek566a6fa2009-08-06 22:33:36 +00001196 // RetrieveField if 'R' has a direct binding.
Mike Stump1eb44332009-09-09 15:08:12 +00001197
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001198 RegionBindings B = GetRegionBindings(store);
Mike Stump1eb44332009-09-09 15:08:12 +00001199
Ted Kremenek19e1f0b2009-08-01 06:17:29 +00001200 while (superR) {
Ted Kremenekc1143e52010-10-26 00:06:17 +00001201 if (const Optional<SVal> &D =
1202 RetrieveDerivedDefaultValue(B, superR, R, Ty))
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001203 return *D;
Mike Stump1eb44332009-09-09 15:08:12 +00001204
Ted Kremenek19e1f0b2009-08-01 06:17:29 +00001205 // If our super region is a field or element itself, walk up the region
1206 // hierarchy to see if there is a default value installed in an ancestor.
Ted Kremenekc1143e52010-10-26 00:06:17 +00001207 if (const SubRegion *SR = dyn_cast<SubRegion>(superR)) {
1208 superR = SR->getSuperRegion();
Ted Kremenek19e1f0b2009-08-01 06:17:29 +00001209 continue;
1210 }
Ted Kremenek19e1f0b2009-08-01 06:17:29 +00001211 break;
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001212 }
Mike Stump1eb44332009-09-09 15:08:12 +00001213
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001214 // Lazy binding?
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001215 Store lazyBindingStore = NULL;
Ted Kremenek566a6fa2009-08-06 22:33:36 +00001216 const MemRegion *lazyBindingRegion = NULL;
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001217 llvm::tie(lazyBindingStore, lazyBindingRegion) = GetLazyBinding(B, R);
Mike Stump1eb44332009-09-09 15:08:12 +00001218
Ted Kremenek8ec4aac2010-02-09 19:11:53 +00001219 if (lazyBindingRegion) {
1220 if (const ElementRegion *ER = dyn_cast<ElementRegion>(lazyBindingRegion))
1221 return RetrieveElement(lazyBindingStore, ER);
Zhongxing Xubfcaf802010-02-05 02:26:30 +00001222 return RetrieveField(lazyBindingStore,
Ted Kremenek566a6fa2009-08-06 22:33:36 +00001223 cast<FieldRegion>(lazyBindingRegion));
Mike Stump1eb44332009-09-09 15:08:12 +00001224 }
1225
Ted Kremenekde0d2632010-01-05 02:18:06 +00001226 if (R->hasStackNonParametersStorage()) {
Ted Kremenek41be9672010-09-01 23:27:26 +00001227 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) {
Ted Kremenek566a6fa2009-08-06 22:33:36 +00001228 // Currently we don't reason specially about Clang-style vectors. Check
1229 // if superR is a vector and if so return Unknown.
1230 if (const TypedRegion *typedSuperR = dyn_cast<TypedRegion>(superR)) {
Zhongxing Xu018220c2010-08-11 06:10:55 +00001231 if (typedSuperR->getValueType()->isVectorType())
Ted Kremenek566a6fa2009-08-06 22:33:36 +00001232 return UnknownVal();
Mike Stump1eb44332009-09-09 15:08:12 +00001233 }
Ted Kremenek41be9672010-09-01 23:27:26 +00001234
1235 // FIXME: We also need to take ElementRegions with symbolic indexes into
1236 // account.
1237 if (!ER->getIndex().isConstant())
1238 return UnknownVal();
Ted Kremenek566a6fa2009-08-06 22:33:36 +00001239 }
Mike Stump1eb44332009-09-09 15:08:12 +00001240
Zhongxing Xu490b0f02009-06-25 04:50:44 +00001241 return UndefinedVal();
Ted Kremenek566a6fa2009-08-06 22:33:36 +00001242 }
Mike Stump1eb44332009-09-09 15:08:12 +00001243
Ted Kremenekbb2b4332009-07-02 22:16:42 +00001244 // All other values are symbolic.
Zhongxing Xu14d23282010-03-01 06:56:52 +00001245 return ValMgr.getRegionValueSymbolVal(R);
Zhongxing Xu490b0f02009-06-25 04:50:44 +00001246}
Mike Stump1eb44332009-09-09 15:08:12 +00001247
Zhongxing Xu576bb922010-02-05 03:01:53 +00001248SVal RegionStoreManager::RetrieveObjCIvar(Store store, const ObjCIvarRegion* R){
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001249
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001250 // Check if the region has a binding.
Zhongxing Xu576bb922010-02-05 03:01:53 +00001251 RegionBindings B = GetRegionBindings(store);
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001252
Ted Kremenek2cf073b2010-03-30 20:30:52 +00001253 if (const Optional<SVal> &V = getDirectBinding(B, R))
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001254 return *V;
Mike Stump1eb44332009-09-09 15:08:12 +00001255
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001256 const MemRegion *superR = R->getSuperRegion();
1257
Ted Kremenekab22ee92009-10-20 01:20:57 +00001258 // Check if the super region has a default binding.
Ted Kremenek2cf073b2010-03-30 20:30:52 +00001259 if (const Optional<SVal> &V = getDefaultBinding(B, superR)) {
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001260 if (SymbolRef parentSym = V->getAsSymbol())
1261 return ValMgr.getDerivedRegionValueSymbolVal(parentSym, R);
Mike Stump1eb44332009-09-09 15:08:12 +00001262
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001263 // Other cases: give up.
1264 return UnknownVal();
1265 }
Mike Stump1eb44332009-09-09 15:08:12 +00001266
Zhongxing Xu576bb922010-02-05 03:01:53 +00001267 return RetrieveLazySymbol(R);
Ted Kremenek25c54572009-07-20 22:58:02 +00001268}
1269
Zhongxing Xu576bb922010-02-05 03:01:53 +00001270SVal RegionStoreManager::RetrieveVar(Store store, const VarRegion *R) {
Mike Stump1eb44332009-09-09 15:08:12 +00001271
Ted Kremenek9031dd72009-07-21 00:12:07 +00001272 // Check if the region has a binding.
Zhongxing Xu576bb922010-02-05 03:01:53 +00001273 RegionBindings B = GetRegionBindings(store);
Mike Stump1eb44332009-09-09 15:08:12 +00001274
Ted Kremenek2cf073b2010-03-30 20:30:52 +00001275 if (const Optional<SVal> &V = getDirectBinding(B, R))
Ted Kremenek9031dd72009-07-21 00:12:07 +00001276 return *V;
Mike Stump1eb44332009-09-09 15:08:12 +00001277
Ted Kremenek9031dd72009-07-21 00:12:07 +00001278 // Lazily derive a value for the VarRegion.
1279 const VarDecl *VD = R->getDecl();
Ted Kremenek4dc15662010-02-06 03:57:59 +00001280 QualType T = VD->getType();
1281 const MemSpaceRegion *MS = R->getMemorySpace();
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001282
1283 if (isa<UnknownSpaceRegion>(MS) ||
Ted Kremenek4dc15662010-02-06 03:57:59 +00001284 isa<StackArgumentsSpaceRegion>(MS))
Zhongxing Xu14d23282010-03-01 06:56:52 +00001285 return ValMgr.getRegionValueSymbolVal(R);
Mike Stump1eb44332009-09-09 15:08:12 +00001286
Ted Kremenek4dc15662010-02-06 03:57:59 +00001287 if (isa<GlobalsSpaceRegion>(MS)) {
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001288 if (isa<NonStaticGlobalSpaceRegion>(MS)) {
Ted Kremenek4552ff02010-03-30 20:31:04 +00001289 // Is 'VD' declared constant? If so, retrieve the constant value.
1290 QualType CT = Ctx.getCanonicalType(T);
1291 if (CT.isConstQualified()) {
1292 const Expr *Init = VD->getInit();
1293 // Do the null check first, as we want to call 'IgnoreParenCasts'.
1294 if (Init)
1295 if (const IntegerLiteral *IL =
1296 dyn_cast<IntegerLiteral>(Init->IgnoreParenCasts())) {
1297 const nonloc::ConcreteInt &V = ValMgr.makeIntVal(IL);
1298 return ValMgr.getSValuator().EvalCast(V, Init->getType(),
1299 IL->getType());
1300 }
1301 }
1302
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001303 if (const Optional<SVal> &V = RetrieveDerivedDefaultValue(B, MS, R, CT))
1304 return V.getValue();
1305
Zhongxing Xu14d23282010-03-01 06:56:52 +00001306 return ValMgr.getRegionValueSymbolVal(R);
Ted Kremenek4552ff02010-03-30 20:31:04 +00001307 }
Mike Stump1eb44332009-09-09 15:08:12 +00001308
Ted Kremenek4dc15662010-02-06 03:57:59 +00001309 if (T->isIntegerType())
1310 return ValMgr.makeIntVal(0, T);
Ted Kremenek81861ab2010-02-06 04:04:46 +00001311 if (T->isPointerType())
1312 return ValMgr.makeNull();
1313
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001314 return UnknownVal();
Ted Kremenek4dc15662010-02-06 03:57:59 +00001315 }
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001316
Ted Kremenek9031dd72009-07-21 00:12:07 +00001317 return UndefinedVal();
1318}
1319
Zhongxing Xu576bb922010-02-05 03:01:53 +00001320SVal RegionStoreManager::RetrieveLazySymbol(const TypedRegion *R) {
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001321 // All other values are symbolic.
Zhongxing Xu14d23282010-03-01 06:56:52 +00001322 return ValMgr.getRegionValueSymbolVal(R);
Ted Kremenek5bd2fe32009-07-15 06:09:28 +00001323}
1324
Zhongxing Xu576bb922010-02-05 03:01:53 +00001325SVal RegionStoreManager::RetrieveStruct(Store store, const TypedRegion* R) {
Zhongxing Xu018220c2010-08-11 06:10:55 +00001326 QualType T = R->getValueType();
Douglas Gregorfb87b892010-04-26 21:31:17 +00001327 assert(T->isStructureOrClassType());
Zhongxing Xu576bb922010-02-05 03:01:53 +00001328 return ValMgr.makeLazyCompoundVal(store, R);
Zhongxing Xu6e3f01c2008-10-31 07:16:08 +00001329}
1330
Zhongxing Xu576bb922010-02-05 03:01:53 +00001331SVal RegionStoreManager::RetrieveArray(Store store, const TypedRegion * R) {
Ted Kremenek091cbbd2010-09-14 23:29:38 +00001332 assert(Ctx.getAsConstantArrayType(R->getValueType()));
Zhongxing Xu576bb922010-02-05 03:01:53 +00001333 return ValMgr.makeLazyCompoundVal(store, R);
Zhongxing Xu3e001f32009-05-03 00:27:40 +00001334}
1335
Ted Kremenek9af46f52009-06-16 22:36:44 +00001336//===----------------------------------------------------------------------===//
1337// Binding values to regions.
1338//===----------------------------------------------------------------------===//
Zhongxing Xu17892752008-10-08 02:50:44 +00001339
Zhongxing Xu9c9ca082008-12-16 02:36:30 +00001340Store RegionStoreManager::Remove(Store store, Loc L) {
Ted Kremenek0964a062009-01-21 06:57:53 +00001341 if (isa<loc::MemRegionVal>(L))
Ted Kremenekc50e6df2010-01-11 02:33:26 +00001342 if (const MemRegion* R = cast<loc::MemRegionVal>(L).getRegion())
Ted Kremenek3baf6722010-11-24 00:54:37 +00001343 return removeBinding(GetRegionBindings(store), R).getRoot();
Mike Stump1eb44332009-09-09 15:08:12 +00001344
Ted Kremenek0964a062009-01-21 06:57:53 +00001345 return store;
Zhongxing Xu9c9ca082008-12-16 02:36:30 +00001346}
1347
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001348Store RegionStoreManager::Bind(Store store, Loc L, SVal V) {
Zhongxing Xu87453d12009-06-28 10:16:11 +00001349 if (isa<loc::ConcreteInt>(L))
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001350 return store;
Zhongxing Xu87453d12009-06-28 10:16:11 +00001351
Ted Kremenek9af46f52009-06-16 22:36:44 +00001352 // If we get here, the location should be a region.
Ted Kremenek19e1f0b2009-08-01 06:17:29 +00001353 const MemRegion *R = cast<loc::MemRegionVal>(L).getRegion();
Mike Stump1eb44332009-09-09 15:08:12 +00001354
Ted Kremenek9af46f52009-06-16 22:36:44 +00001355 // Check if the region is a struct region.
1356 if (const TypedRegion* TR = dyn_cast<TypedRegion>(R))
Zhongxing Xu018220c2010-08-11 06:10:55 +00001357 if (TR->getValueType()->isStructureOrClassType())
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001358 return BindStruct(store, TR, V);
Mike Stump1eb44332009-09-09 15:08:12 +00001359
Ted Kremenek19e1f0b2009-08-01 06:17:29 +00001360 if (const ElementRegion *ER = dyn_cast<ElementRegion>(R)) {
1361 if (ER->getIndex().isZeroConstant()) {
1362 if (const TypedRegion *superR =
1363 dyn_cast<TypedRegion>(ER->getSuperRegion())) {
Zhongxing Xu018220c2010-08-11 06:10:55 +00001364 QualType superTy = superR->getValueType();
Ted Kremenek69181a82009-09-21 22:58:52 +00001365 // For now, just invalidate the fields of the struct/union/class.
Zhongxing Xu81fa4ec2010-08-21 11:03:37 +00001366 // This is for test rdar_test_7185607 in misc-ps-region-store.m.
Ted Kremenek69181a82009-09-21 22:58:52 +00001367 // FIXME: Precisely handle the fields of the record.
Jordy Rose58f8b202010-08-05 03:28:45 +00001368 if (superTy->isStructureOrClassType())
1369 return KillStruct(store, superR, UnknownVal());
Ted Kremenek19e1f0b2009-08-01 06:17:29 +00001370 }
1371 }
1372 }
Ted Kremenek0954cde2009-09-24 04:11:44 +00001373 else if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R)) {
1374 // Binding directly to a symbolic region should be treated as binding
1375 // to element 0.
Zhongxing Xu57663fe2010-08-15 10:08:38 +00001376 QualType T = SR->getSymbol()->getType(Ctx);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001377
Ted Kremenek852274d2009-12-16 03:18:58 +00001378 // FIXME: Is this the right way to handle symbols that are references?
1379 if (const PointerType *PT = T->getAs<PointerType>())
1380 T = PT->getPointeeType();
1381 else
1382 T = T->getAs<ReferenceType>()->getPointeeType();
1383
Ted Kremenek0954cde2009-09-24 04:11:44 +00001384 R = GetElementZeroRegion(SR, T);
1385 }
Mike Stump1eb44332009-09-09 15:08:12 +00001386
Ted Kremenek19e1f0b2009-08-01 06:17:29 +00001387 // Perform the binding.
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001388 RegionBindings B = GetRegionBindings(store);
Ted Kremenek3baf6722010-11-24 00:54:37 +00001389 return addBinding(B, R, BindingKey::Direct, V).getRoot();
Ted Kremenek9af46f52009-06-16 22:36:44 +00001390}
1391
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001392Store RegionStoreManager::BindDecl(Store store, const VarRegion *VR,
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001393 SVal InitVal) {
Zhongxing Xua4f28ff2008-11-13 08:41:36 +00001394
Ted Kremenekf6f56d42009-11-04 00:09:15 +00001395 QualType T = VR->getDecl()->getType();
Zhongxing Xuf0dfa8d2008-10-31 08:10:01 +00001396
Ted Kremenek0964a062009-01-21 06:57:53 +00001397 if (T->isArrayType())
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001398 return BindArray(store, VR, InitVal);
Douglas Gregorfb87b892010-04-26 21:31:17 +00001399 if (T->isStructureOrClassType())
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001400 return BindStruct(store, VR, InitVal);
Zhongxing Xud463d442008-11-02 12:13:30 +00001401
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001402 return Bind(store, ValMgr.makeLoc(VR), InitVal);
Zhongxing Xu17892752008-10-08 02:50:44 +00001403}
Zhongxing Xu53bcdd42008-10-21 05:29:26 +00001404
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001405// FIXME: this method should be merged into Bind().
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001406Store RegionStoreManager::BindCompoundLiteral(Store store,
1407 const CompoundLiteralExpr *CL,
1408 const LocationContext *LC,
1409 SVal V) {
1410 return Bind(store, loc::MemRegionVal(MRMgr.getCompoundLiteralRegion(CL, LC)),
Ted Kremenek67d12872009-12-07 22:05:27 +00001411 V);
Zhongxing Xuf22679e2008-11-07 10:38:33 +00001412}
1413
Zhongxing Xua5ce9662010-06-01 03:01:33 +00001414
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001415Store RegionStoreManager::setImplicitDefaultValue(Store store,
1416 const MemRegion *R,
1417 QualType T) {
Ted Kremenek027e2662009-11-19 20:20:24 +00001418 RegionBindings B = GetRegionBindings(store);
1419 SVal V;
1420
1421 if (Loc::IsLocType(T))
1422 V = ValMgr.makeNull();
1423 else if (T->isIntegerType())
1424 V = ValMgr.makeZeroVal(T);
Douglas Gregorfb87b892010-04-26 21:31:17 +00001425 else if (T->isStructureOrClassType() || T->isArrayType()) {
Ted Kremenek027e2662009-11-19 20:20:24 +00001426 // Set the default value to a zero constant when it is a structure
1427 // or array. The type doesn't really matter.
Zhongxing Xu57663fe2010-08-15 10:08:38 +00001428 V = ValMgr.makeZeroVal(Ctx.IntTy);
Ted Kremenek027e2662009-11-19 20:20:24 +00001429 }
1430 else {
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001431 return store;
Ted Kremenek027e2662009-11-19 20:20:24 +00001432 }
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +00001433
Ted Kremenek3baf6722010-11-24 00:54:37 +00001434 return addBinding(B, R, BindingKey::Default, V).getRoot();
Ted Kremenek027e2662009-11-19 20:20:24 +00001435}
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001436
1437Store RegionStoreManager::BindArray(Store store, const TypedRegion* R,
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001438 SVal Init) {
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001439
Zhongxing Xu018220c2010-08-11 06:10:55 +00001440 const ArrayType *AT =cast<ArrayType>(Ctx.getCanonicalType(R->getValueType()));
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001441 QualType ElementTy = AT->getElementType();
Ted Kremenekfee90812010-01-26 23:51:00 +00001442 Optional<uint64_t> Size;
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001443
Ted Kremenekfee90812010-01-26 23:51:00 +00001444 if (const ConstantArrayType* CAT = dyn_cast<ConstantArrayType>(AT))
1445 Size = CAT->getSize().getZExtValue();
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001446
Jordy Rose167cc372010-07-29 06:40:33 +00001447 // Check if the init expr is a string literal.
1448 if (loc::MemRegionVal *MRV = dyn_cast<loc::MemRegionVal>(&Init)) {
1449 const StringRegion *S = cast<StringRegion>(MRV->getRegion());
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001450
Jordy Rose167cc372010-07-29 06:40:33 +00001451 // Treat the string as a lazy compound value.
1452 nonloc::LazyCompoundVal LCV =
1453 cast<nonloc::LazyCompoundVal>(ValMgr.makeLazyCompoundVal(store, S));
1454 return CopyLazyBindings(LCV, store, R);
Zhongxing Xu6987c7b2008-11-30 05:49:49 +00001455 }
1456
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001457 // Handle lazy compound values.
1458 if (nonloc::LazyCompoundVal *LCV = dyn_cast<nonloc::LazyCompoundVal>(&Init))
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001459 return CopyLazyBindings(*LCV, store, R);
Mike Stump1eb44332009-09-09 15:08:12 +00001460
1461 // Remaining case: explicit compound values.
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001462
Ted Kremenek027e2662009-11-19 20:20:24 +00001463 if (Init.isUnknown())
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001464 return setImplicitDefaultValue(store, R, ElementTy);
1465
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001466 nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(Init);
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001467 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end();
Ted Kremenek46537392009-07-16 01:33:37 +00001468 uint64_t i = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001469
Ted Kremenekfee90812010-01-26 23:51:00 +00001470 for (; Size.hasValue() ? i < Size.getValue() : true ; ++i, ++VI) {
Zhongxing Xu087d6c22009-06-23 05:23:38 +00001471 // The init list might be shorter than the array length.
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001472 if (VI == VE)
1473 break;
1474
Ted Kremenek02282ac2010-09-15 03:13:30 +00001475 const NonLoc &Idx = ValMgr.makeArrayIndex(i);
Zhongxing Xu57663fe2010-08-15 10:08:38 +00001476 const ElementRegion *ER = MRMgr.getElementRegion(ElementTy, Idx, R, Ctx);
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001477
Douglas Gregorfb87b892010-04-26 21:31:17 +00001478 if (ElementTy->isStructureOrClassType())
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001479 store = BindStruct(store, ER, *VI);
Jordy Rose59b6dca2010-08-20 01:05:59 +00001480 else if (ElementTy->isArrayType())
1481 store = BindArray(store, ER, *VI);
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001482 else
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001483 store = Bind(store, ValMgr.makeLoc(ER), *VI);
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001484 }
1485
Ted Kremenek027e2662009-11-19 20:20:24 +00001486 // If the init list is shorter than the array length, set the
1487 // array default value.
Ted Kremenekfee90812010-01-26 23:51:00 +00001488 if (Size.hasValue() && i < Size.getValue())
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001489 store = setImplicitDefaultValue(store, R, ElementTy);
Zhongxing Xu087d6c22009-06-23 05:23:38 +00001490
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001491 return store;
Zhongxing Xu1a12a0e2008-10-31 10:24:47 +00001492}
1493
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001494Store RegionStoreManager::BindStruct(Store store, const TypedRegion* R,
1495 SVal V) {
Mike Stump1eb44332009-09-09 15:08:12 +00001496
Ted Kremenek67f28532009-06-17 22:02:04 +00001497 if (!Features.supportsFields())
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001498 return store;
Mike Stump1eb44332009-09-09 15:08:12 +00001499
Zhongxing Xu018220c2010-08-11 06:10:55 +00001500 QualType T = R->getValueType();
Douglas Gregorfb87b892010-04-26 21:31:17 +00001501 assert(T->isStructureOrClassType());
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001502
Ted Kremenek6217b802009-07-29 21:53:49 +00001503 const RecordType* RT = T->getAs<RecordType>();
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001504 RecordDecl* RD = RT->getDecl();
Zhongxing Xuc45a8252009-03-11 09:07:35 +00001505
1506 if (!RD->isDefinition())
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001507 return store;
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001508
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001509 // Handle lazy compound values.
Zhongxing Xu13d50172009-10-11 08:08:02 +00001510 if (const nonloc::LazyCompoundVal *LCV=dyn_cast<nonloc::LazyCompoundVal>(&V))
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001511 return CopyLazyBindings(*LCV, store, R);
Mike Stump1eb44332009-09-09 15:08:12 +00001512
Ted Kremenek281e9dc2010-07-29 00:28:47 +00001513 // We may get non-CompoundVal accidentally due to imprecise cast logic or
1514 // that we are binding symbolic struct value. Kill the field values, and if
1515 // the value is symbolic go and bind it as a "default" binding.
Ted Kremenek4af473c2010-08-17 23:29:06 +00001516 if (V.isUnknown() || !isa<nonloc::CompoundVal>(V)) {
1517 SVal SV = isa<nonloc::SymbolVal>(V) ? V : UnknownVal();
1518 return KillStruct(store, R, SV);
1519 }
Zhongxing Xu3f6978a2009-06-11 09:11:27 +00001520
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001521 nonloc::CompoundVal& CV = cast<nonloc::CompoundVal>(V);
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001522 nonloc::CompoundVal::iterator VI = CV.begin(), VE = CV.end();
Zhongxing Xudbdf2192009-06-23 05:43:16 +00001523
1524 RecordDecl::field_iterator FI, FE;
1525
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001526 for (FI = RD->field_begin(), FE = RD->field_end(); FI != FE; ++FI, ++VI) {
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001527
Zhongxing Xudbdf2192009-06-23 05:43:16 +00001528 if (VI == VE)
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001529 break;
Zhongxing Xu4193eca2008-12-20 06:32:12 +00001530
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001531 QualType FTy = (*FI)->getType();
Ted Kremenekcf549592009-09-22 21:19:14 +00001532 const FieldRegion* FR = MRMgr.getFieldRegion(*FI, R);
Zhongxing Xuaf0a8442008-10-31 10:53:01 +00001533
Ted Kremenekcf549592009-09-22 21:19:14 +00001534 if (FTy->isArrayType())
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001535 store = BindArray(store, FR, *VI);
Douglas Gregorfb87b892010-04-26 21:31:17 +00001536 else if (FTy->isStructureOrClassType())
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001537 store = BindStruct(store, FR, *VI);
Ted Kremenekcf549592009-09-22 21:19:14 +00001538 else
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001539 store = Bind(store, ValMgr.makeLoc(FR), *VI);
Zhongxing Xua82512a2008-10-24 08:42:28 +00001540 }
1541
Zhongxing Xudbdf2192009-06-23 05:43:16 +00001542 // There may be fewer values in the initialize list than the fields of struct.
Zhongxing Xu13d50172009-10-11 08:08:02 +00001543 if (FI != FE) {
Zhongxing Xu13d50172009-10-11 08:08:02 +00001544 RegionBindings B = GetRegionBindings(store);
Ted Kremenek3baf6722010-11-24 00:54:37 +00001545 B = addBinding(B, R, BindingKey::Default, ValMgr.makeIntVal(0, false));
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001546 store = B.getRoot();
Zhongxing Xu13d50172009-10-11 08:08:02 +00001547 }
Zhongxing Xudbdf2192009-06-23 05:43:16 +00001548
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001549 return store;
Zhongxing Xuc3a05992008-11-19 11:06:24 +00001550}
1551
Ted Kremenek281e9dc2010-07-29 00:28:47 +00001552Store RegionStoreManager::KillStruct(Store store, const TypedRegion* R,
1553 SVal DefaultVal) {
Zhongxing Xu13d50172009-10-11 08:08:02 +00001554 RegionBindings B = GetRegionBindings(store);
1555 llvm::OwningPtr<RegionStoreSubRegionMap>
1556 SubRegions(getRegionStoreSubRegionMap(store));
1557 RemoveSubRegionBindings(B, R, *SubRegions);
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001558
Zhongxing Xue4df9c42009-06-25 05:52:16 +00001559 // Set the default value of the struct region to "unknown".
Ted Kremenek3baf6722010-11-24 00:54:37 +00001560 return addBinding(B, R, BindingKey::Default, DefaultVal).getRoot();
Zhongxing Xu5834ed62009-01-13 01:49:57 +00001561}
1562
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001563Store RegionStoreManager::CopyLazyBindings(nonloc::LazyCompoundVal V,
1564 Store store, const TypedRegion *R) {
Ted Kremenek9af46f52009-06-16 22:36:44 +00001565
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001566 // Nuke the old bindings stemming from R.
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001567 RegionBindings B = GetRegionBindings(store);
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001568
Mike Stump1eb44332009-09-09 15:08:12 +00001569 llvm::OwningPtr<RegionStoreSubRegionMap>
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001570 SubRegions(getRegionStoreSubRegionMap(store));
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001571
Mike Stump1eb44332009-09-09 15:08:12 +00001572 // B and DVM are updated after the call to RemoveSubRegionBindings.
Zhongxing Xu13d50172009-10-11 08:08:02 +00001573 RemoveSubRegionBindings(B, R, *SubRegions.get());
Mike Stump1eb44332009-09-09 15:08:12 +00001574
Ted Kremeneka5e81f12009-08-06 01:20:57 +00001575 // Now copy the bindings. This amounts to just binding 'V' to 'R'. This
1576 // results in a zero-copy algorithm.
Ted Kremenek3baf6722010-11-24 00:54:37 +00001577 return addBinding(B, R, BindingKey::Direct, V).getRoot();
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +00001578}
1579
1580//===----------------------------------------------------------------------===//
1581// "Raw" retrievals and bindings.
1582//===----------------------------------------------------------------------===//
1583
Ted Kremenekc50e6df2010-01-11 02:33:26 +00001584
Ted Kremenek3baf6722010-11-24 00:54:37 +00001585RegionBindings RegionStoreManager::addBinding(RegionBindings B, BindingKey K,
1586 SVal V) {
Jordy Rosed5addb42010-08-16 20:53:01 +00001587 if (!K.isValid())
Jordy Rosee7011172010-08-16 01:15:17 +00001588 return B;
Ted Kremenek3baf6722010-11-24 00:54:37 +00001589 return RBFactory.add(B, K, V);
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +00001590}
1591
Ted Kremenek3baf6722010-11-24 00:54:37 +00001592RegionBindings RegionStoreManager::addBinding(RegionBindings B,
1593 const MemRegion *R,
1594 BindingKey::Kind k, SVal V) {
1595 return addBinding(B, BindingKey::Make(R, k), V);
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +00001596}
1597
Ted Kremenek3baf6722010-11-24 00:54:37 +00001598const SVal *RegionStoreManager::lookup(RegionBindings B, BindingKey K) {
Jordy Rosed5addb42010-08-16 20:53:01 +00001599 if (!K.isValid())
Jordy Rosee7011172010-08-16 01:15:17 +00001600 return NULL;
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +00001601 return B.lookup(K);
1602}
1603
Ted Kremenek3baf6722010-11-24 00:54:37 +00001604const SVal *RegionStoreManager::lookup(RegionBindings B,
Ted Kremeneke393f4a2010-02-03 03:06:46 +00001605 const MemRegion *R,
1606 BindingKey::Kind k) {
Ted Kremenek3baf6722010-11-24 00:54:37 +00001607 return lookup(B, BindingKey::Make(R, k));
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +00001608}
1609
Ted Kremenek3baf6722010-11-24 00:54:37 +00001610RegionBindings RegionStoreManager::removeBinding(RegionBindings B,
1611 BindingKey K) {
Jordy Rosed5addb42010-08-16 20:53:01 +00001612 if (!K.isValid())
Jordy Rosee7011172010-08-16 01:15:17 +00001613 return B;
Ted Kremenek3baf6722010-11-24 00:54:37 +00001614 return RBFactory.remove(B, K);
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +00001615}
1616
Ted Kremenek3baf6722010-11-24 00:54:37 +00001617RegionBindings RegionStoreManager::removeBinding(RegionBindings B,
1618 const MemRegion *R,
1619 BindingKey::Kind k){
1620 return removeBinding(B, BindingKey::Make(R, k));
Ted Kremenek1c1ae6b2010-01-11 00:07:44 +00001621}
1622
Ted Kremenek9af46f52009-06-16 22:36:44 +00001623//===----------------------------------------------------------------------===//
1624// State pruning.
1625//===----------------------------------------------------------------------===//
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001626
Ted Kremenek5499b842010-03-10 16:32:56 +00001627namespace {
1628class RemoveDeadBindingsWorker :
1629 public ClusterAnalysis<RemoveDeadBindingsWorker> {
1630 llvm::SmallVector<const SymbolicRegion*, 12> Postponed;
1631 SymbolReaper &SymReaper;
Zhongxing Xu17ddf1c2010-03-17 03:35:08 +00001632 const StackFrameContext *CurrentLCtx;
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001633
Ted Kremenek5499b842010-03-10 16:32:56 +00001634public:
1635 RemoveDeadBindingsWorker(RegionStoreManager &rm, GRStateManager &stateMgr,
1636 RegionBindings b, SymbolReaper &symReaper,
Jordy Rose7dadf792010-07-01 20:09:55 +00001637 const StackFrameContext *LCtx)
Ted Kremenekd45d59f2010-10-26 00:06:15 +00001638 : ClusterAnalysis<RemoveDeadBindingsWorker>(rm, stateMgr, b,
1639 /* includeGlobals = */ false),
Jordy Rose7dadf792010-07-01 20:09:55 +00001640 SymReaper(symReaper), CurrentLCtx(LCtx) {}
Ted Kremenek5499b842010-03-10 16:32:56 +00001641
1642 // Called by ClusterAnalysis.
1643 void VisitAddedToCluster(const MemRegion *baseR, RegionCluster &C);
1644 void VisitCluster(const MemRegion *baseR, BindingKey *I, BindingKey *E);
Ted Kremenek5499b842010-03-10 16:32:56 +00001645
Ted Kremenek75a2d942010-04-01 00:15:55 +00001646 void VisitBindingKey(BindingKey K);
Ted Kremenek5499b842010-03-10 16:32:56 +00001647 bool UpdatePostponed();
1648 void VisitBinding(SVal V);
1649};
1650}
1651
1652void RemoveDeadBindingsWorker::VisitAddedToCluster(const MemRegion *baseR,
1653 RegionCluster &C) {
1654
1655 if (const VarRegion *VR = dyn_cast<VarRegion>(baseR)) {
Jordy Rose7dadf792010-07-01 20:09:55 +00001656 if (SymReaper.isLive(VR))
Ted Kremenek5499b842010-03-10 16:32:56 +00001657 AddToWorkList(baseR, C);
1658
1659 return;
1660 }
1661
1662 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(baseR)) {
1663 if (SymReaper.isLive(SR->getSymbol()))
1664 AddToWorkList(SR, C);
1665 else
1666 Postponed.push_back(SR);
1667
1668 return;
1669 }
Zhongxing Xu17ddf1c2010-03-17 03:35:08 +00001670
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001671 if (isa<NonStaticGlobalSpaceRegion>(baseR)) {
1672 AddToWorkList(baseR, C);
1673 return;
1674 }
1675
Zhongxing Xu17ddf1c2010-03-17 03:35:08 +00001676 // CXXThisRegion in the current or parent location context is live.
1677 if (const CXXThisRegion *TR = dyn_cast<CXXThisRegion>(baseR)) {
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001678 const StackArgumentsSpaceRegion *StackReg =
Zhongxing Xu17ddf1c2010-03-17 03:35:08 +00001679 cast<StackArgumentsSpaceRegion>(TR->getSuperRegion());
1680 const StackFrameContext *RegCtx = StackReg->getStackFrame();
1681 if (RegCtx == CurrentLCtx || RegCtx->isParentOf(CurrentLCtx))
1682 AddToWorkList(TR, C);
1683 }
Ted Kremenek5499b842010-03-10 16:32:56 +00001684}
1685
1686void RemoveDeadBindingsWorker::VisitCluster(const MemRegion *baseR,
1687 BindingKey *I, BindingKey *E) {
Ted Kremenek75a2d942010-04-01 00:15:55 +00001688 for ( ; I != E; ++I)
1689 VisitBindingKey(*I);
Ted Kremenek5499b842010-03-10 16:32:56 +00001690}
1691
1692void RemoveDeadBindingsWorker::VisitBinding(SVal V) {
1693 // Is it a LazyCompoundVal? All referenced regions are live as well.
1694 if (const nonloc::LazyCompoundVal *LCS =
1695 dyn_cast<nonloc::LazyCompoundVal>(&V)) {
1696
1697 const MemRegion *LazyR = LCS->getRegion();
1698 RegionBindings B = RegionStoreManager::GetRegionBindings(LCS->getStore());
1699 for (RegionBindings::iterator RI = B.begin(), RE = B.end(); RI != RE; ++RI){
Ted Kremenek0ea0e8b2010-07-06 23:53:29 +00001700 const SubRegion *baseR = dyn_cast<SubRegion>(RI.getKey().getRegion());
1701 if (baseR && baseR->isSubRegionOf(LazyR))
Ted Kremenek5499b842010-03-10 16:32:56 +00001702 VisitBinding(RI.getData());
1703 }
1704 return;
1705 }
1706
1707 // If V is a region, then add it to the worklist.
1708 if (const MemRegion *R = V.getAsRegion())
1709 AddToWorkList(R);
1710
1711 // Update the set of live symbols.
1712 for (SVal::symbol_iterator SI=V.symbol_begin(), SE=V.symbol_end();
1713 SI!=SE;++SI)
1714 SymReaper.markLive(*SI);
1715}
1716
Ted Kremenek75a2d942010-04-01 00:15:55 +00001717void RemoveDeadBindingsWorker::VisitBindingKey(BindingKey K) {
1718 const MemRegion *R = K.getRegion();
1719
Ted Kremenek5499b842010-03-10 16:32:56 +00001720 // Mark this region "live" by adding it to the worklist. This will cause
1721 // use to visit all regions in the cluster (if we haven't visited them
1722 // already).
Ted Kremenek75a2d942010-04-01 00:15:55 +00001723 if (AddToWorkList(R)) {
1724 // Mark the symbol for any live SymbolicRegion as "live". This means we
1725 // should continue to track that symbol.
1726 if (const SymbolicRegion *SymR = dyn_cast<SymbolicRegion>(R))
1727 SymReaper.markLive(SymR->getSymbol());
Ted Kremenek5499b842010-03-10 16:32:56 +00001728
Ted Kremenek75a2d942010-04-01 00:15:55 +00001729 // For BlockDataRegions, enqueue the VarRegions for variables marked
1730 // with __block (passed-by-reference).
1731 // via BlockDeclRefExprs.
1732 if (const BlockDataRegion *BD = dyn_cast<BlockDataRegion>(R)) {
1733 for (BlockDataRegion::referenced_vars_iterator
1734 RI = BD->referenced_vars_begin(), RE = BD->referenced_vars_end();
1735 RI != RE; ++RI) {
1736 if ((*RI)->getDecl()->getAttr<BlocksAttr>())
1737 AddToWorkList(*RI);
1738 }
Ted Kremenek5499b842010-03-10 16:32:56 +00001739
Ted Kremenek75a2d942010-04-01 00:15:55 +00001740 // No possible data bindings on a BlockDataRegion.
1741 return;
Ted Kremenek5499b842010-03-10 16:32:56 +00001742 }
Ted Kremenek5499b842010-03-10 16:32:56 +00001743 }
1744
Ted Kremenek75a2d942010-04-01 00:15:55 +00001745 // Visit the data binding for K.
Ted Kremenek3baf6722010-11-24 00:54:37 +00001746 if (const SVal *V = RM.lookup(B, K))
Ted Kremenek5499b842010-03-10 16:32:56 +00001747 VisitBinding(*V);
1748}
1749
1750bool RemoveDeadBindingsWorker::UpdatePostponed() {
1751 // See if any postponed SymbolicRegions are actually live now, after
1752 // having done a scan.
1753 bool changed = false;
1754
1755 for (llvm::SmallVectorImpl<const SymbolicRegion*>::iterator
1756 I = Postponed.begin(), E = Postponed.end() ; I != E ; ++I) {
1757 if (const SymbolicRegion *SR = cast_or_null<SymbolicRegion>(*I)) {
1758 if (SymReaper.isLive(SR->getSymbol())) {
1759 changed |= AddToWorkList(SR);
1760 *I = NULL;
1761 }
1762 }
1763 }
1764
1765 return changed;
1766}
1767
Zhongxing Xu5e4cb342010-08-15 12:45:09 +00001768Store RegionStoreManager::RemoveDeadBindings(Store store,
Zhongxing Xu17ddf1c2010-03-17 03:35:08 +00001769 const StackFrameContext *LCtx,
Zhongxing Xu72119c42010-02-05 05:34:29 +00001770 SymbolReaper& SymReaper,
Ted Kremenek9af46f52009-06-16 22:36:44 +00001771 llvm::SmallVectorImpl<const MemRegion*>& RegionRoots)
Mike Stump1eb44332009-09-09 15:08:12 +00001772{
Zhongxing Xu5e4cb342010-08-15 12:45:09 +00001773 RegionBindings B = GetRegionBindings(store);
Jordy Rose7dadf792010-07-01 20:09:55 +00001774 RemoveDeadBindingsWorker W(*this, StateMgr, B, SymReaper, LCtx);
Ted Kremenek5499b842010-03-10 16:32:56 +00001775 W.GenerateClusters();
Mike Stump1eb44332009-09-09 15:08:12 +00001776
Ted Kremenek5499b842010-03-10 16:32:56 +00001777 // Enqueue the region roots onto the worklist.
Ted Kremenek9e17cc62009-09-29 06:35:00 +00001778 for (llvm::SmallVectorImpl<const MemRegion*>::iterator I=RegionRoots.begin(),
Ted Kremenek5499b842010-03-10 16:32:56 +00001779 E=RegionRoots.end(); I!=E; ++I)
1780 W.AddToWorkList(*I);
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001781
Ted Kremenek5499b842010-03-10 16:32:56 +00001782 do W.RunWorkList(); while (W.UpdatePostponed());
Ted Kremeneke5ea0ca2010-03-10 07:20:03 +00001783
Ted Kremenek9af46f52009-06-16 22:36:44 +00001784 // We have now scanned the store, marking reachable regions and symbols
1785 // as live. We now remove all the regions that are dead from the store
Mike Stump1eb44332009-09-09 15:08:12 +00001786 // as well as update DSymbols with the set symbols that are now dead.
Ted Kremenek451ac092009-08-06 04:50:20 +00001787 for (RegionBindings::iterator I = B.begin(), E = B.end(); I != E; ++I) {
Ted Kremenek5499b842010-03-10 16:32:56 +00001788 const BindingKey &K = I.getKey();
1789
Ted Kremenekb7118f72010-03-10 16:38:41 +00001790 // If the cluster has been visited, we know the region has been marked.
Ted Kremenek5499b842010-03-10 16:32:56 +00001791 if (W.isVisited(K.getRegion()))
Ted Kremenek9af46f52009-06-16 22:36:44 +00001792 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001793
Ted Kremenek5499b842010-03-10 16:32:56 +00001794 // Remove the dead entry.
Ted Kremenek3baf6722010-11-24 00:54:37 +00001795 B = removeBinding(B, K);
Mike Stump1eb44332009-09-09 15:08:12 +00001796
Ted Kremenek5499b842010-03-10 16:32:56 +00001797 // Mark all non-live symbols that this binding references as dead.
1798 if (const SymbolicRegion* SymR = dyn_cast<SymbolicRegion>(K.getRegion()))
Ted Kremenek9af46f52009-06-16 22:36:44 +00001799 SymReaper.maybeDead(SymR->getSymbol());
Mike Stump1eb44332009-09-09 15:08:12 +00001800
Ted Kremeneke393f4a2010-02-03 03:06:46 +00001801 SVal X = I.getData();
Ted Kremenek093569c2009-08-02 05:00:15 +00001802 SVal::symbol_iterator SI = X.symbol_begin(), SE = X.symbol_end();
1803 for (; SI != SE; ++SI)
1804 SymReaper.maybeDead(*SI);
1805 }
Zhongxing Xu5e4cb342010-08-15 12:45:09 +00001806
1807 return B.getRoot();
Ted Kremenek9af46f52009-06-16 22:36:44 +00001808}
1809
Ted Kremenek5499b842010-03-10 16:32:56 +00001810
Jordy Roseff59efd2010-08-03 20:44:35 +00001811Store RegionStoreManager::EnterStackFrame(const GRState *state,
1812 const StackFrameContext *frame) {
Zhongxing Xu4e3c1f72009-10-13 02:24:55 +00001813 FunctionDecl const *FD = cast<FunctionDecl>(frame->getDecl());
Zhongxing Xu4e3c1f72009-10-13 02:24:55 +00001814 FunctionDecl::param_const_iterator PI = FD->param_begin();
Zhongxing Xub4a9c612010-02-05 05:06:13 +00001815 Store store = state->getStore();
Zhongxing Xuc5063572010-03-16 13:14:16 +00001816
1817 if (CallExpr const *CE = dyn_cast<CallExpr>(frame->getCallSite())) {
1818 CallExpr::const_arg_iterator AI = CE->arg_begin(), AE = CE->arg_end();
1819
1820 // Copy the arg expression value to the arg variables.
1821 for (; AI != AE; ++AI, ++PI) {
1822 SVal ArgVal = state->getSVal(*AI);
1823 store = Bind(store, ValMgr.makeLoc(MRMgr.getVarRegion(*PI,frame)),ArgVal);
1824 }
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001825 } else if (const CXXConstructExpr *CE =
Zhongxing Xuc5063572010-03-16 13:14:16 +00001826 dyn_cast<CXXConstructExpr>(frame->getCallSite())) {
Ted Kremenekdcee3ce2010-07-01 20:16:50 +00001827 CXXConstructExpr::const_arg_iterator AI = CE->arg_begin(),
Zhongxing Xuc5063572010-03-16 13:14:16 +00001828 AE = CE->arg_end();
1829
1830 // Copy the arg expression value to the arg variables.
1831 for (; AI != AE; ++AI, ++PI) {
1832 SVal ArgVal = state->getSVal(*AI);
1833 store = Bind(store, ValMgr.makeLoc(MRMgr.getVarRegion(*PI,frame)),ArgVal);
1834 }
1835 } else
Zhongxing Xub13453b2010-11-20 06:53:12 +00001836 assert(isa<CXXDestructorDecl>(frame->getDecl()));
Zhongxing Xu4e3c1f72009-10-13 02:24:55 +00001837
Jordy Roseff59efd2010-08-03 20:44:35 +00001838 return store;
Zhongxing Xu4e3c1f72009-10-13 02:24:55 +00001839}
1840
Ted Kremenek9af46f52009-06-16 22:36:44 +00001841//===----------------------------------------------------------------------===//
1842// Utility methods.
1843//===----------------------------------------------------------------------===//
1844
Ted Kremenek53ba0b62009-06-24 23:06:47 +00001845void RegionStoreManager::print(Store store, llvm::raw_ostream& OS,
Ted Kremenek9af46f52009-06-16 22:36:44 +00001846 const char* nl, const char *sep) {
Ted Kremenek451ac092009-08-06 04:50:20 +00001847 RegionBindings B = GetRegionBindings(store);
Ted Kremenekab22ee92009-10-20 01:20:57 +00001848 OS << "Store (direct and default bindings):" << nl;
Mike Stump1eb44332009-09-09 15:08:12 +00001849
Ted Kremenek451ac092009-08-06 04:50:20 +00001850 for (RegionBindings::iterator I = B.begin(), E = B.end(); I != E; ++I)
Mike Stump1eb44332009-09-09 15:08:12 +00001851 OS << ' ' << I.getKey() << " : " << I.getData() << nl;
Ted Kremenek9af46f52009-06-16 22:36:44 +00001852}