blob: a2cfdeb96ca3dc9bfd40276a6a69974ca09607bb [file] [log] [blame]
Ted Kremenek53ba0b62009-06-24 23:06:47 +00001//= GRState.cpp - Path-Sensitive "State" for tracking values -----*- C++ -*--=//
Ted Kremenek9153f732008-02-05 07:17:49 +00002//
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//
Ted Kremenek53ba0b62009-06-24 23:06:47 +000010// This file implements GRState and GRStateManager.
Ted Kremenek9153f732008-02-05 07:17:49 +000011//
12//===----------------------------------------------------------------------===//
13
Ted Kremeneke7aa9a12008-08-17 02:59:30 +000014#include "clang/Analysis/PathSensitive/GRStateTrait.h"
Ted Kremenek4adc81e2008-08-13 04:27:00 +000015#include "clang/Analysis/PathSensitive/GRState.h"
Ted Kremenek729a9a22008-07-17 23:15:45 +000016#include "clang/Analysis/PathSensitive/GRTransferFuncs.h"
Ted Kremenek05125f12008-08-27 23:13:01 +000017#include "llvm/ADT/SmallSet.h"
Chris Lattner405674c2008-08-23 22:23:37 +000018#include "llvm/Support/raw_ostream.h"
Ted Kremenek05125f12008-08-27 23:13:01 +000019
Ted Kremenekf66ea2cd2008-02-04 21:59:22 +000020using namespace clang;
21
Ted Kremenek05125f12008-08-27 23:13:01 +000022// Give the vtable for ConstraintManager somewhere to live.
Ted Kremenek53ba0b62009-06-24 23:06:47 +000023// FIXME: Move this elsewhere.
Ted Kremenek05125f12008-08-27 23:13:01 +000024ConstraintManager::~ConstraintManager() {}
25
Ted Kremenek1c72ef02008-08-16 00:49:49 +000026GRStateManager::~GRStateManager() {
27 for (std::vector<GRState::Printer*>::iterator I=Printers.begin(),
28 E=Printers.end(); I!=E; ++I)
29 delete *I;
30
31 for (GDMContextsTy::iterator I=GDMContexts.begin(), E=GDMContexts.end();
32 I!=E; ++I)
33 I->second.second(I->second.first);
34}
35
Ted Kremenek4adc81e2008-08-13 04:27:00 +000036const GRState*
Ted Kremenek2ed14be2008-12-05 00:47:52 +000037GRStateManager::RemoveDeadBindings(const GRState* state, Stmt* Loc,
Ted Kremenek241677a2009-01-21 22:26:05 +000038 SymbolReaper& SymReaper) {
39
Ted Kremenekb87d9092008-02-08 19:17:19 +000040 // This code essentially performs a "mark-and-sweep" of the VariableBindings.
41 // The roots are any Block-level exprs and Decls that our liveness algorithm
42 // tells us are live. We then see what Decls they may reference, and keep
43 // those around. This code more than likely can be made faster, and the
44 // frequency of which this method is called should be experimented with
Ted Kremenek9e240492008-10-04 05:50:14 +000045 // for optimum performance.
46 llvm::SmallVector<const MemRegion*, 10> RegionRoots;
Ted Kremenek2ed14be2008-12-05 00:47:52 +000047 GRState NewState = *state;
Ted Kremenekf59bf482008-07-17 18:38:48 +000048
Ted Kremenek0fb0bc42009-08-27 01:39:13 +000049 NewState.Env = EnvMgr.RemoveDeadBindings(NewState.Env, Loc, SymReaper,
Ted Kremenek5dc27462009-03-03 02:51:43 +000050 state, RegionRoots);
Ted Kremenek016f52f2008-02-08 21:10:02 +000051
Ted Kremenekf59bf482008-07-17 18:38:48 +000052 // Clean up the store.
Ted Kremenek2f26bc32009-08-02 04:45:08 +000053 StoreMgr->RemoveDeadBindings(NewState, Loc, SymReaper, RegionRoots);
Ted Kremenekffdbefd2008-08-17 03:10:22 +000054
Ted Kremenek2ed14be2008-12-05 00:47:52 +000055 return ConstraintMgr->RemoveDeadBindings(getPersistentState(NewState),
Ted Kremenek241677a2009-01-21 22:26:05 +000056 SymReaper);
Ted Kremenekb87d9092008-02-08 19:17:19 +000057}
Ted Kremenek862d5bb2008-02-06 00:54:14 +000058
Ted Kremenek76500d02009-06-23 20:38:51 +000059const GRState *GRState::unbindLoc(Loc LV) const {
60 Store OldStore = getStore();
Ted Kremenek0fb0bc42009-08-27 01:39:13 +000061 Store NewStore = getStateManager().StoreMgr->Remove(OldStore, LV);
Ted Kremenek4323a572008-07-10 22:03:41 +000062
63 if (NewStore == OldStore)
Ted Kremenek76500d02009-06-23 20:38:51 +000064 return this;
Ted Kremenek4323a572008-07-10 22:03:41 +000065
Ted Kremenek76500d02009-06-23 20:38:51 +000066 GRState NewSt = *this;
Ted Kremenek4323a572008-07-10 22:03:41 +000067 NewSt.St = NewStore;
Ted Kremenek0fb0bc42009-08-27 01:39:13 +000068 return getStateManager().getPersistentState(NewSt);
Ted Kremenek4323a572008-07-10 22:03:41 +000069}
70
Ted Kremenek233e9132009-06-24 22:15:30 +000071SVal GRState::getSValAsScalarOrLoc(const MemRegion *R) const {
72 // We only want to do fetches from regions that we can actually bind
73 // values. For example, SymbolicRegions of type 'id<...>' cannot
74 // have direct bindings (but their can be bindings on their subregions).
75 if (!R->isBoundable())
76 return UnknownVal();
77
78 if (const TypedRegion *TR = dyn_cast<TypedRegion>(R)) {
Ted Kremenek0fb0bc42009-08-27 01:39:13 +000079 QualType T = TR->getValueType(getStateManager().getContext());
Ted Kremenek233e9132009-06-24 22:15:30 +000080 if (Loc::IsLocType(T) || T->isIntegerType())
81 return getSVal(R);
82 }
83
84 return UnknownVal();
85}
86
Ted Kremenek4f596c22009-06-27 00:24:54 +000087
Ted Kremenek6d2c6572009-08-27 22:15:20 +000088const GRState *GRState::bindExpr(const Stmt* Ex, SVal V, bool Invalidate) const{
Ted Kremenek0fb0bc42009-08-27 01:39:13 +000089 Environment NewEnv = getStateManager().EnvMgr.BindExpr(Env, Ex, V,
Ted Kremenek6d2c6572009-08-27 22:15:20 +000090 Invalidate);
Ted Kremenek4f596c22009-06-27 00:24:54 +000091 if (NewEnv == Env)
92 return this;
Ted Kremenek6d2c6572009-08-27 22:15:20 +000093
Ted Kremenek4f596c22009-06-27 00:24:54 +000094 GRState NewSt = *this;
95 NewSt.Env = NewEnv;
Ted Kremenek0fb0bc42009-08-27 01:39:13 +000096 return getStateManager().getPersistentState(NewSt);
Ted Kremenek4f596c22009-06-27 00:24:54 +000097}
98
Zhongxing Xu17fd8632009-08-17 06:19:58 +000099const GRState* GRStateManager::getInitialState(const LocationContext *InitLoc) {
Ted Kremenek6d2c6572009-08-27 22:15:20 +0000100 GRState State(this,
101 EnvMgr.getInitialEnvironment(InitLoc->getAnalysisContext()),
Zhongxing Xu17fd8632009-08-17 06:19:58 +0000102 StoreMgr->getInitialStore(InitLoc),
103 GDMFactory.GetEmptyMap());
Ted Kremenekcaa37242008-08-19 16:51:45 +0000104
Zhongxing Xu17fd8632009-08-17 06:19:58 +0000105 return getPersistentState(State);
Ted Kremenek9153f732008-02-05 07:17:49 +0000106}
107
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000108const GRState* GRStateManager::getPersistentState(GRState& State) {
Ted Kremenek9153f732008-02-05 07:17:49 +0000109
110 llvm::FoldingSetNodeID ID;
111 State.Profile(ID);
Ted Kremeneke7d22112008-02-11 19:21:59 +0000112 void* InsertPos;
Ted Kremenek9153f732008-02-05 07:17:49 +0000113
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000114 if (GRState* I = StateSet.FindNodeOrInsertPos(ID, InsertPos))
Ted Kremenek9153f732008-02-05 07:17:49 +0000115 return I;
116
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000117 GRState* I = (GRState*) Alloc.Allocate<GRState>();
118 new (I) GRState(State);
Ted Kremenek9153f732008-02-05 07:17:49 +0000119 StateSet.InsertNode(I, InsertPos);
120 return I;
121}
Ted Kremeneke7d22112008-02-11 19:21:59 +0000122
Ted Kremenek67f28532009-06-17 22:02:04 +0000123const GRState* GRState::makeWithStore(Store store) const {
124 GRState NewSt = *this;
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000125 NewSt.St = store;
Ted Kremenek0fb0bc42009-08-27 01:39:13 +0000126 return getStateManager().getPersistentState(NewSt);
Zhongxing Xu4193eca2008-12-20 06:32:12 +0000127}
128
Ted Kremenek1c72ef02008-08-16 00:49:49 +0000129//===----------------------------------------------------------------------===//
130// State pretty-printing.
131//===----------------------------------------------------------------------===//
Ted Kremenek461f9772008-03-11 18:57:24 +0000132
Ted Kremenek53ba0b62009-06-24 23:06:47 +0000133void GRState::print(llvm::raw_ostream& Out, const char* nl,
134 const char* sep) const {
Ted Kremeneka622d8c2008-08-19 22:24:03 +0000135 // Print the store.
Ted Kremenek0fb0bc42009-08-27 01:39:13 +0000136 GRStateManager &Mgr = getStateManager();
137 Mgr.getStoreManager().print(getStore(), Out, nl, sep);
138
139 CFG &C = *getAnalysisContext().getCFG();
Ted Kremeneke7d22112008-02-11 19:21:59 +0000140
141 // Print Subexpression bindings.
Ted Kremeneka622d8c2008-08-19 22:24:03 +0000142 bool isFirst = true;
Ted Kremeneke7d22112008-02-11 19:21:59 +0000143
Ted Kremenek0fb0bc42009-08-27 01:39:13 +0000144 for (Environment::iterator I = Env.begin(), E = Env.end(); I != E; ++I) {
145 if (C.isBlkExpr(I.getKey()))
146 continue;
Ted Kremeneke7d22112008-02-11 19:21:59 +0000147
148 if (isFirst) {
Ted Kremenek59894f92008-03-04 18:30:35 +0000149 Out << nl << nl << "Sub-Expressions:" << nl;
Ted Kremeneke7d22112008-02-11 19:21:59 +0000150 isFirst = false;
151 }
Ted Kremenek59894f92008-03-04 18:30:35 +0000152 else { Out << nl; }
Ted Kremeneke7d22112008-02-11 19:21:59 +0000153
154 Out << " (" << (void*) I.getKey() << ") ";
Chris Lattnere4f21422009-06-30 01:26:17 +0000155 LangOptions LO; // FIXME.
156 I.getKey()->printPretty(Out, 0, PrintingPolicy(LO));
Ted Kremenek6f9b3a42009-07-13 23:53:06 +0000157 Out << " : " << I.getData();
Ted Kremeneke7d22112008-02-11 19:21:59 +0000158 }
159
160 // Print block-expression bindings.
Ted Kremeneke7d22112008-02-11 19:21:59 +0000161 isFirst = true;
Ted Kremenek0fb0bc42009-08-27 01:39:13 +0000162
163 for (Environment::iterator I = Env.begin(), E = Env.end(); I != E; ++I) {
164 if (!C.isBlkExpr(I.getKey()))
165 continue;
Ted Kremeneke7d22112008-02-11 19:21:59 +0000166
167 if (isFirst) {
Ted Kremenek59894f92008-03-04 18:30:35 +0000168 Out << nl << nl << "Block-level Expressions:" << nl;
Ted Kremeneke7d22112008-02-11 19:21:59 +0000169 isFirst = false;
170 }
Ted Kremenek59894f92008-03-04 18:30:35 +0000171 else { Out << nl; }
Ted Kremeneke7d22112008-02-11 19:21:59 +0000172
173 Out << " (" << (void*) I.getKey() << ") ";
Chris Lattnere4f21422009-06-30 01:26:17 +0000174 LangOptions LO; // FIXME.
175 I.getKey()->printPretty(Out, 0, PrintingPolicy(LO));
Ted Kremenek6f9b3a42009-07-13 23:53:06 +0000176 Out << " : " << I.getData();
Ted Kremeneke7d22112008-02-11 19:21:59 +0000177 }
178
Ted Kremenek0fb0bc42009-08-27 01:39:13 +0000179 Mgr.getConstraintManager().print(this, Out, nl, sep);
Ted Kremenek461f9772008-03-11 18:57:24 +0000180
Ted Kremenekb65be702009-06-18 01:23:53 +0000181 // Print checker-specific data.
Ted Kremenek0fb0bc42009-08-27 01:39:13 +0000182 for (std::vector<Printer*>::iterator I = Mgr.Printers.begin(),
183 E = Mgr.Printers.end(); I != E; ++I) {
Ted Kremenekb65be702009-06-18 01:23:53 +0000184 (*I)->Print(Out, this, nl, sep);
185 }
Ted Kremeneke7d22112008-02-11 19:21:59 +0000186}
Ted Kremenek729a9a22008-07-17 23:15:45 +0000187
Ted Kremenek53ba0b62009-06-24 23:06:47 +0000188void GRState::printDOT(llvm::raw_ostream& Out) const {
Ted Kremenek1c72ef02008-08-16 00:49:49 +0000189 print(Out, "\\l", "\\|");
190}
191
Ted Kremenekb65be702009-06-18 01:23:53 +0000192void GRState::printStdErr() const {
Ted Kremenek53ba0b62009-06-24 23:06:47 +0000193 print(llvm::errs());
Ted Kremenek1c72ef02008-08-16 00:49:49 +0000194}
195
Ted Kremenek72cd17f2008-08-14 21:16:54 +0000196//===----------------------------------------------------------------------===//
197// Generic Data Map.
198//===----------------------------------------------------------------------===//
199
200void* const* GRState::FindGDM(void* K) const {
201 return GDM.lookup(K);
202}
203
Ted Kremenek1c72ef02008-08-16 00:49:49 +0000204void*
205GRStateManager::FindGDMContext(void* K,
206 void* (*CreateContext)(llvm::BumpPtrAllocator&),
207 void (*DeleteContext)(void*)) {
208
209 std::pair<void*, void (*)(void*)>& p = GDMContexts[K];
210 if (!p.first) {
211 p.first = CreateContext(Alloc);
212 p.second = DeleteContext;
213 }
214
215 return p.first;
216}
217
Zhongxing Xu4230da62008-11-03 05:18:34 +0000218const GRState* GRStateManager::addGDM(const GRState* St, void* Key, void* Data){
Ted Kremenek72cd17f2008-08-14 21:16:54 +0000219 GRState::GenericDataMap M1 = St->getGDM();
220 GRState::GenericDataMap M2 = GDMFactory.Add(M1, Key, Data);
221
222 if (M1 == M2)
223 return St;
224
225 GRState NewSt = *St;
226 NewSt.GDM = M2;
227 return getPersistentState(NewSt);
228}
Ted Kremenek584def72008-07-22 00:46:16 +0000229
230//===----------------------------------------------------------------------===//
Ted Kremenek5216ad72009-02-14 03:16:10 +0000231// Utility.
232//===----------------------------------------------------------------------===//
233
Ted Kremenek5dc27462009-03-03 02:51:43 +0000234namespace {
Zhongxing Xu63d1d602009-03-04 06:33:38 +0000235class VISIBILITY_HIDDEN ScanReachableSymbols : public SubRegionMap::Visitor {
Ted Kremenek5dc27462009-03-03 02:51:43 +0000236 typedef llvm::DenseSet<const MemRegion*> VisitedRegionsTy;
237
238 VisitedRegionsTy visited;
Ted Kremenek47fed902009-06-18 01:33:24 +0000239 const GRState *state;
Ted Kremenek5dc27462009-03-03 02:51:43 +0000240 SymbolVisitor &visitor;
241 llvm::OwningPtr<SubRegionMap> SRM;
242public:
243
Ted Kremenek47fed902009-06-18 01:33:24 +0000244 ScanReachableSymbols(const GRState *st, SymbolVisitor& v)
245 : state(st), visitor(v) {}
Ted Kremenek5dc27462009-03-03 02:51:43 +0000246
247 bool scan(nonloc::CompoundVal val);
248 bool scan(SVal val);
249 bool scan(const MemRegion *R);
250
251 // From SubRegionMap::Visitor.
252 bool Visit(const MemRegion* Parent, const MemRegion* SubRegion) {
253 return scan(SubRegion);
254 }
255};
256}
257
258bool ScanReachableSymbols::scan(nonloc::CompoundVal val) {
Ted Kremenek5216ad72009-02-14 03:16:10 +0000259 for (nonloc::CompoundVal::iterator I=val.begin(), E=val.end(); I!=E; ++I)
Ted Kremenek5dc27462009-03-03 02:51:43 +0000260 if (!scan(*I))
261 return false;
Ted Kremenek5216ad72009-02-14 03:16:10 +0000262
263 return true;
264}
Ted Kremenek5dc27462009-03-03 02:51:43 +0000265
266bool ScanReachableSymbols::scan(SVal val) {
267 if (loc::MemRegionVal *X = dyn_cast<loc::MemRegionVal>(&val))
268 return scan(X->getRegion());
Ted Kremenek380022d2009-03-30 18:45:36 +0000269
270 if (SymbolRef Sym = val.getAsSymbol())
271 return visitor.VisitSymbol(Sym);
Ted Kremenek5216ad72009-02-14 03:16:10 +0000272
273 if (nonloc::CompoundVal *X = dyn_cast<nonloc::CompoundVal>(&val))
Ted Kremenek5dc27462009-03-03 02:51:43 +0000274 return scan(*X);
Ted Kremenek5216ad72009-02-14 03:16:10 +0000275
276 return true;
277}
Ted Kremenek5dc27462009-03-03 02:51:43 +0000278
279bool ScanReachableSymbols::scan(const MemRegion *R) {
Ted Kremenek1cb151e2009-03-04 00:13:10 +0000280 if (isa<MemSpaceRegion>(R) || visited.count(R))
Ted Kremenek5dc27462009-03-03 02:51:43 +0000281 return true;
282
283 visited.insert(R);
284
285 // If this is a symbolic region, visit the symbol for the region.
286 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R))
287 if (!visitor.VisitSymbol(SR->getSymbol()))
288 return false;
289
290 // If this is a subregion, also visit the parent regions.
291 if (const SubRegion *SR = dyn_cast<SubRegion>(R))
Ted Kremenek6076e0a2009-03-03 18:15:30 +0000292 if (!scan(SR->getSuperRegion()))
Ted Kremenek5dc27462009-03-03 02:51:43 +0000293 return false;
294
295 // Now look at the binding to this region (if any).
Ted Kremenek47fed902009-06-18 01:33:24 +0000296 if (!scan(state->getSValAsScalarOrLoc(R)))
Ted Kremenek5dc27462009-03-03 02:51:43 +0000297 return false;
298
299 // Now look at the subregions.
300 if (!SRM.get())
Ted Kremenek47fed902009-06-18 01:33:24 +0000301 SRM.reset(state->getStateManager().getStoreManager().getSubRegionMap(state));
Ted Kremenek5dc27462009-03-03 02:51:43 +0000302
303 return SRM->iterSubRegions(R, *this);
304}
305
Ted Kremenek47fed902009-06-18 01:33:24 +0000306bool GRState::scanReachableSymbols(SVal val, SymbolVisitor& visitor) const {
307 ScanReachableSymbols S(this, visitor);
Ted Kremenek5dc27462009-03-03 02:51:43 +0000308 return S.scan(val);
309}
Ted Kremenek5216ad72009-02-14 03:16:10 +0000310
311//===----------------------------------------------------------------------===//
Ted Kremenek584def72008-07-22 00:46:16 +0000312// Queries.
313//===----------------------------------------------------------------------===//
314
Ted Kremenek5f85e172009-07-22 22:35:28 +0000315bool GRStateManager::isEqual(const GRState* state, const Expr* Ex,
Ted Kremenek1c72ef02008-08-16 00:49:49 +0000316 const llvm::APSInt& Y) {
317
Ted Kremenekdbc2afc2009-06-23 17:55:07 +0000318 SVal V = state->getSVal(Ex);
Ted Kremenek584def72008-07-22 00:46:16 +0000319
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000320 if (loc::ConcreteInt* X = dyn_cast<loc::ConcreteInt>(&V))
Ted Kremenek584def72008-07-22 00:46:16 +0000321 return X->getValue() == Y;
322
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000323 if (nonloc::ConcreteInt* X = dyn_cast<nonloc::ConcreteInt>(&V))
Ted Kremenek584def72008-07-22 00:46:16 +0000324 return X->getValue() == Y;
325
Ted Kremenek380022d2009-03-30 18:45:36 +0000326 if (SymbolRef Sym = V.getAsSymbol())
327 return ConstraintMgr->isEqual(state, Sym, Y);
328
Ted Kremenek584def72008-07-22 00:46:16 +0000329 return false;
330}
331
Ted Kremenek5f85e172009-07-22 22:35:28 +0000332bool GRStateManager::isEqual(const GRState* state, const Expr* Ex, uint64_t x) {
Ted Kremenek044b6f02009-04-09 16:13:17 +0000333 return isEqual(state, Ex, getBasicVals().getValue(x, Ex->getType()));
Ted Kremenek584def72008-07-22 00:46:16 +0000334}
Ted Kremenek7360fda2008-09-18 23:09:54 +0000335
336//===----------------------------------------------------------------------===//
337// Persistent values for indexing into the Generic Data Map.
338
339int GRState::NullDerefTag::TagInt = 0;
340