blob: a56859dde5bf3dd2329168b2ec907bfa13d6e431 [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;
Mike Stump1eb44332009-09-09 15:08:12 +000030
Ted Kremenek1c72ef02008-08-16 00:49:49 +000031 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);
Mike Stump1eb44332009-09-09 15:08:12 +000062
Ted Kremenek4323a572008-07-10 22:03:41 +000063 if (NewStore == OldStore)
Ted Kremenek76500d02009-06-23 20:38:51 +000064 return this;
Mike Stump1eb44332009-09-09 15:08:12 +000065
Ted Kremenek76500d02009-06-23 20:38:51 +000066 GRState NewSt = *this;
Ted Kremenek4323a572008-07-10 22:03:41 +000067 NewSt.St = NewStore;
Mike Stump1eb44332009-09-09 15:08:12 +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 Kremenek8e029342009-08-27 22:17:37 +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,
Mike Stump1eb44332009-09-09 15:08:12 +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,
Mike Stump1eb44332009-09-09 15:08:12 +0000101 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) {
Mike Stump1eb44332009-09-09 15:08:12 +0000109
Ted Kremenek9153f732008-02-05 07:17:49 +0000110 llvm::FoldingSetNodeID ID;
Mike Stump1eb44332009-09-09 15:08:12 +0000111 State.Profile(ID);
Ted Kremeneke7d22112008-02-11 19:21:59 +0000112 void* InsertPos;
Mike Stump1eb44332009-09-09 15:08:12 +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;
Mike Stump1eb44332009-09-09 15:08:12 +0000116
Ted Kremenek4adc81e2008-08-13 04:27:00 +0000117 GRState* I = (GRState*) Alloc.Allocate<GRState>();
Mike Stump1eb44332009-09-09 15:08:12 +0000118 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,
Mike Stump1eb44332009-09-09 15:08:12 +0000134 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);
Mike Stump1eb44332009-09-09 15:08:12 +0000138
Ted Kremenek0fb0bc42009-08-27 01:39:13 +0000139 CFG &C = *getAnalysisContext().getCFG();
Mike Stump1eb44332009-09-09 15:08:12 +0000140
Ted Kremeneke7d22112008-02-11 19:21:59 +0000141 // Print Subexpression bindings.
Ted Kremeneka622d8c2008-08-19 22:24:03 +0000142 bool isFirst = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000143
144 for (Environment::iterator I = Env.begin(), E = Env.end(); I != E; ++I) {
Ted Kremenek0fb0bc42009-08-27 01:39:13 +0000145 if (C.isBlkExpr(I.getKey()))
146 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000147
Ted Kremeneke7d22112008-02-11 19:21:59 +0000148 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; }
Mike Stump1eb44332009-09-09 15:08:12 +0000153
Ted Kremeneke7d22112008-02-11 19:21:59 +0000154 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 }
Mike Stump1eb44332009-09-09 15:08:12 +0000159
Ted Kremeneke7d22112008-02-11 19:21:59 +0000160 // 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; }
Mike Stump1eb44332009-09-09 15:08:12 +0000172
Ted Kremeneke7d22112008-02-11 19:21:59 +0000173 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 }
Mike Stump1eb44332009-09-09 15:08:12 +0000178
Ted Kremenek0fb0bc42009-08-27 01:39:13 +0000179 Mgr.getConstraintManager().print(this, Out, nl, sep);
Mike Stump1eb44332009-09-09 15:08:12 +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*)) {
Mike Stump1eb44332009-09-09 15:08:12 +0000208
Ted Kremenek1c72ef02008-08-16 00:49:49 +0000209 std::pair<void*, void (*)(void*)>& p = GDMContexts[K];
210 if (!p.first) {
211 p.first = CreateContext(Alloc);
212 p.second = DeleteContext;
213 }
Mike Stump1eb44332009-09-09 15:08:12 +0000214
Ted Kremenek1c72ef02008-08-16 00:49:49 +0000215 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);
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Ted Kremenek72cd17f2008-08-14 21:16:54 +0000222 if (M1 == M2)
223 return St;
Mike Stump1eb44332009-09-09 15:08:12 +0000224
Ted Kremenek72cd17f2008-08-14 21:16:54 +0000225 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 {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000235class 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:
Mike Stump1eb44332009-09-09 15:08:12 +0000243
Ted Kremenek47fed902009-06-18 01:33:24 +0000244 ScanReachableSymbols(const GRState *st, SymbolVisitor& v)
245 : state(st), visitor(v) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Ted Kremenek5dc27462009-03-03 02:51:43 +0000247 bool scan(nonloc::CompoundVal val);
248 bool scan(SVal val);
249 bool scan(const MemRegion *R);
Mike Stump1eb44332009-09-09 15:08:12 +0000250
Ted Kremenek5dc27462009-03-03 02:51:43 +0000251 // 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}
Mike Stump1eb44332009-09-09 15:08:12 +0000265
Ted Kremenek5dc27462009-03-03 02:51:43 +0000266bool 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);
Mike Stump1eb44332009-09-09 15:08:12 +0000272
Ted Kremenek5216ad72009-02-14 03:16:10 +0000273 if (nonloc::CompoundVal *X = dyn_cast<nonloc::CompoundVal>(&val))
Ted Kremenek5dc27462009-03-03 02:51:43 +0000274 return scan(*X);
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Ted Kremenek5216ad72009-02-14 03:16:10 +0000276 return true;
277}
Mike Stump1eb44332009-09-09 15:08:12 +0000278
Ted Kremenek5dc27462009-03-03 02:51:43 +0000279bool 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;
Mike Stump1eb44332009-09-09 15:08:12 +0000282
Ted Kremenek5dc27462009-03-03 02:51:43 +0000283 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;
Mike Stump1eb44332009-09-09 15:08:12 +0000289
Ted Kremenek5dc27462009-03-03 02:51:43 +0000290 // 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;
Mike Stump1eb44332009-09-09 15:08:12 +0000294
Ted Kremenek5dc27462009-03-03 02:51:43 +0000295 // 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;
Mike Stump1eb44332009-09-09 15:08:12 +0000298
Ted Kremenek5dc27462009-03-03 02:51:43 +0000299 // Now look at the subregions.
300 if (!SRM.get())
Ted Kremenek47fed902009-06-18 01:33:24 +0000301 SRM.reset(state->getStateManager().getStoreManager().getSubRegionMap(state));
Mike Stump1eb44332009-09-09 15:08:12 +0000302
Ted Kremenek5dc27462009-03-03 02:51:43 +0000303 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
Ted Kremenek9dce71f2009-11-26 02:32:19 +0000311bool GRState::scanReachableSymbols(const SVal *I, const SVal *E,
312 SymbolVisitor &visitor) const {
313 ScanReachableSymbols S(this, visitor);
314 for ( ; I != E; ++I) {
315 if (S.scan(*I))
316 return true;
317 }
318 return false;
319}
320
321bool GRState::scanReachableSymbols(const MemRegion * const *I,
322 const MemRegion * const *E,
323 SymbolVisitor &visitor) const {
324 ScanReachableSymbols S(this, visitor);
325 for ( ; I != E; ++I) {
326 if (S.scan(*I))
327 return true;
328 }
329 return false;
330}
331
Ted Kremenek5216ad72009-02-14 03:16:10 +0000332//===----------------------------------------------------------------------===//
Ted Kremenek584def72008-07-22 00:46:16 +0000333// Queries.
334//===----------------------------------------------------------------------===//
335
Ted Kremenek5f85e172009-07-22 22:35:28 +0000336bool GRStateManager::isEqual(const GRState* state, const Expr* Ex,
Ted Kremenek1c72ef02008-08-16 00:49:49 +0000337 const llvm::APSInt& Y) {
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Ted Kremenekdbc2afc2009-06-23 17:55:07 +0000339 SVal V = state->getSVal(Ex);
Mike Stump1eb44332009-09-09 15:08:12 +0000340
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000341 if (loc::ConcreteInt* X = dyn_cast<loc::ConcreteInt>(&V))
Ted Kremenek584def72008-07-22 00:46:16 +0000342 return X->getValue() == Y;
343
Zhongxing Xu1c96b242008-10-17 05:57:07 +0000344 if (nonloc::ConcreteInt* X = dyn_cast<nonloc::ConcreteInt>(&V))
Ted Kremenek584def72008-07-22 00:46:16 +0000345 return X->getValue() == Y;
Mike Stump1eb44332009-09-09 15:08:12 +0000346
Ted Kremenek380022d2009-03-30 18:45:36 +0000347 if (SymbolRef Sym = V.getAsSymbol())
348 return ConstraintMgr->isEqual(state, Sym, Y);
349
Ted Kremenek584def72008-07-22 00:46:16 +0000350 return false;
351}
Mike Stump1eb44332009-09-09 15:08:12 +0000352
Ted Kremenek5f85e172009-07-22 22:35:28 +0000353bool GRStateManager::isEqual(const GRState* state, const Expr* Ex, uint64_t x) {
Ted Kremenek044b6f02009-04-09 16:13:17 +0000354 return isEqual(state, Ex, getBasicVals().getValue(x, Ex->getType()));
Ted Kremenek584def72008-07-22 00:46:16 +0000355}