Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 1 | //= GRState*cpp - Path-Sens. "State" for tracking valuues -----*- C++ -*--=// |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 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 | // |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 10 | // This file defines SymbolID, ExprBindKey, and GRState* |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Ted Kremenek | e7aa9a1 | 2008-08-17 02:59:30 +0000 | [diff] [blame] | 14 | #include "clang/Analysis/PathSensitive/GRStateTrait.h" |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 15 | #include "clang/Analysis/PathSensitive/GRState.h" |
Ted Kremenek | 90e1481 | 2008-02-14 23:25:54 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/SmallSet.h" |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 17 | #include "clang/Analysis/PathSensitive/GRTransferFuncs.h" |
Ted Kremenek | f66ea2cd | 2008-02-04 21:59:22 +0000 | [diff] [blame] | 18 | |
| 19 | using namespace clang; |
| 20 | |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 21 | GRStateManager::~GRStateManager() { |
| 22 | for (std::vector<GRState::Printer*>::iterator I=Printers.begin(), |
| 23 | E=Printers.end(); I!=E; ++I) |
| 24 | delete *I; |
| 25 | |
| 26 | for (GDMContextsTy::iterator I=GDMContexts.begin(), E=GDMContexts.end(); |
| 27 | I!=E; ++I) |
| 28 | I->second.second(I->second.first); |
| 29 | } |
| 30 | |
| 31 | //===----------------------------------------------------------------------===// |
| 32 | // Basic symbolic analysis. This will eventually be refactored into a |
| 33 | // separate component. |
| 34 | //===----------------------------------------------------------------------===// |
| 35 | |
| 36 | typedef llvm::ImmutableMap<SymbolID,GRState::IntSetTy> ConstNotEqTy; |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 37 | typedef llvm::ImmutableMap<SymbolID,const llvm::APSInt*> ConstEqTy; |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 38 | |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 39 | static int ConstEqTyIndex = 0; |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 40 | static int ConstNotEqTyIndex = 0; |
| 41 | |
| 42 | namespace clang { |
Ted Kremenek | e7aa9a1 | 2008-08-17 02:59:30 +0000 | [diff] [blame] | 43 | template<> |
| 44 | struct GRStateTrait<ConstNotEqTy> : public GRStatePartialTrait<ConstNotEqTy> { |
| 45 | static inline void* GDMIndex() { return &ConstNotEqTyIndex; } |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 46 | }; |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 47 | |
| 48 | template<> |
| 49 | struct GRStateTrait<ConstEqTy> : public GRStatePartialTrait<ConstEqTy> { |
| 50 | static inline void* GDMIndex() { return &ConstEqTyIndex; } |
| 51 | }; |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 52 | } |
| 53 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 54 | bool GRState::isNotEqual(SymbolID sym, const llvm::APSInt& V) const { |
Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 55 | |
| 56 | // Retrieve the NE-set associated with the given symbol. |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 57 | const ConstNotEqTy::data_type* T = get<ConstNotEqTy>(sym); |
Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 58 | |
| 59 | // See if V is present in the NE-set. |
Ted Kremenek | e8fdc83 | 2008-07-07 16:21:19 +0000 | [diff] [blame] | 60 | return T ? T->contains(&V) : false; |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 63 | bool GRState::isEqual(SymbolID sym, const llvm::APSInt& V) const { |
Ted Kremenek | 584def7 | 2008-07-22 00:46:16 +0000 | [diff] [blame] | 64 | // Retrieve the EQ-set associated with the given symbol. |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 65 | const ConstEqTy::data_type* T = get<ConstEqTy>(sym); |
Ted Kremenek | 584def7 | 2008-07-22 00:46:16 +0000 | [diff] [blame] | 66 | // See if V is present in the EQ-set. |
| 67 | return T ? **T == V : false; |
| 68 | } |
| 69 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 70 | const llvm::APSInt* GRState::getSymVal(SymbolID sym) const { |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 71 | const ConstEqTy::data_type* T = get<ConstEqTy>(sym); |
Ted Kremenek | e8fdc83 | 2008-07-07 16:21:19 +0000 | [diff] [blame] | 72 | return T ? *T : NULL; |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 73 | } |
| 74 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 75 | const GRState* |
| 76 | GRStateManager::RemoveDeadBindings(const GRState* St, Stmt* Loc, |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 77 | const LiveVariables& Liveness, |
| 78 | DeadSymbolsTy& DSymbols) { |
Ted Kremenek | b87d909 | 2008-02-08 19:17:19 +0000 | [diff] [blame] | 79 | |
| 80 | // This code essentially performs a "mark-and-sweep" of the VariableBindings. |
| 81 | // The roots are any Block-level exprs and Decls that our liveness algorithm |
| 82 | // tells us are live. We then see what Decls they may reference, and keep |
| 83 | // those around. This code more than likely can be made faster, and the |
| 84 | // frequency of which this method is called should be experimented with |
Ted Kremenek | f59bf48 | 2008-07-17 18:38:48 +0000 | [diff] [blame] | 85 | // for optimum performance. |
| 86 | DRoots.clear(); |
| 87 | StoreManager::LiveSymbolsTy LSymbols; |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 88 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 89 | GRState NewSt = *St; |
Ted Kremenek | f59bf48 | 2008-07-17 18:38:48 +0000 | [diff] [blame] | 90 | |
Ted Kremenek | df9cdf8 | 2008-08-20 17:08:29 +0000 | [diff] [blame] | 91 | NewSt.Env = EnvMgr.RemoveDeadBindings(NewSt.Env, Loc, Liveness, |
| 92 | DRoots, LSymbols); |
Ted Kremenek | 016f52f | 2008-02-08 21:10:02 +0000 | [diff] [blame] | 93 | |
Ted Kremenek | f59bf48 | 2008-07-17 18:38:48 +0000 | [diff] [blame] | 94 | // Clean up the store. |
| 95 | DSymbols.clear(); |
| 96 | NewSt.St = StMgr->RemoveDeadBindings(St->getStore(), Loc, Liveness, DRoots, |
| 97 | LSymbols, DSymbols); |
Ted Kremenek | b87d909 | 2008-02-08 19:17:19 +0000 | [diff] [blame] | 98 | |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 99 | |
| 100 | GRStateRef state(getPersistentState(NewSt), *this); |
| 101 | |
Ted Kremenek | f59bf48 | 2008-07-17 18:38:48 +0000 | [diff] [blame] | 102 | // Remove the dead symbols from the symbol tracker. |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 103 | // FIXME: Refactor into something else that manages symbol values. |
Ted Kremenek | 77d7ef8 | 2008-04-24 18:31:42 +0000 | [diff] [blame] | 104 | |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 105 | ConstEqTy CE = state.get<ConstEqTy>(); |
| 106 | ConstEqTy::Factory& CEFactory = state.get_context<ConstEqTy>(); |
| 107 | |
| 108 | for (ConstEqTy::iterator I = CE.begin(), E = CE.end(); I!=E; ++I) { |
| 109 | SymbolID sym = I.getKey(); |
Ted Kremenek | f59bf48 | 2008-07-17 18:38:48 +0000 | [diff] [blame] | 110 | if (!LSymbols.count(sym)) { |
| 111 | DSymbols.insert(sym); |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 112 | CE = CEFactory.Remove(CE, sym); |
Ted Kremenek | 77d7ef8 | 2008-04-24 18:31:42 +0000 | [diff] [blame] | 113 | } |
| 114 | } |
Ted Kremenek | 4f7b483 | 2008-08-20 16:59:15 +0000 | [diff] [blame] | 115 | state = state.set<ConstEqTy>(CE); |
| 116 | |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 117 | ConstNotEqTy CNE = state.get<ConstNotEqTy>(); |
| 118 | ConstNotEqTy::Factory& CNEFactory = state.get_context<ConstNotEqTy>(); |
| 119 | |
| 120 | for (ConstNotEqTy::iterator I = CNE.begin(), E = CNE.end(); I != E; ++I) { |
| 121 | SymbolID sym = I.getKey(); |
Ted Kremenek | f59bf48 | 2008-07-17 18:38:48 +0000 | [diff] [blame] | 122 | if (!LSymbols.count(sym)) { |
| 123 | DSymbols.insert(sym); |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 124 | CNE = CNEFactory.Remove(CNE, sym); |
Ted Kremenek | 77d7ef8 | 2008-04-24 18:31:42 +0000 | [diff] [blame] | 125 | } |
| 126 | } |
Ted Kremenek | 90e1481 | 2008-02-14 23:25:54 +0000 | [diff] [blame] | 127 | |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 128 | return state.set<ConstNotEqTy>(CNE); |
Ted Kremenek | b87d909 | 2008-02-08 19:17:19 +0000 | [diff] [blame] | 129 | } |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 130 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 131 | const GRState* GRStateManager::SetRVal(const GRState* St, LVal LV, |
Ted Kremenek | 4323a57 | 2008-07-10 22:03:41 +0000 | [diff] [blame] | 132 | RVal V) { |
Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 133 | |
Ted Kremenek | 4323a57 | 2008-07-10 22:03:41 +0000 | [diff] [blame] | 134 | Store OldStore = St->getStore(); |
| 135 | Store NewStore = StMgr->SetRVal(OldStore, LV, V); |
Ted Kremenek | 3271f8d | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 136 | |
Ted Kremenek | 4323a57 | 2008-07-10 22:03:41 +0000 | [diff] [blame] | 137 | if (NewStore == OldStore) |
| 138 | return St; |
Ted Kremenek | 692416c | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 139 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 140 | GRState NewSt = *St; |
Ted Kremenek | 4323a57 | 2008-07-10 22:03:41 +0000 | [diff] [blame] | 141 | NewSt.St = NewStore; |
| 142 | return getPersistentState(NewSt); |
Ted Kremenek | f66ea2cd | 2008-02-04 21:59:22 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Zhongxing Xu | bbe8ff4 | 2008-08-21 22:34:01 +0000 | [diff] [blame] | 145 | const GRState* GRStateManager::AddDecl(const GRState* St, const VarDecl* VD, |
| 146 | Expr* Ex, unsigned Count) { |
| 147 | Store OldStore = St->getStore(); |
| 148 | Store NewStore; |
| 149 | |
| 150 | if (Ex) |
Ted Kremenek | e53c069 | 2008-08-23 00:50:55 +0000 | [diff] [blame^] | 151 | NewStore = StMgr->AddDecl(OldStore, *this, VD, Ex, |
Zhongxing Xu | bbe8ff4 | 2008-08-21 22:34:01 +0000 | [diff] [blame] | 152 | GetRVal(St, Ex), Count); |
| 153 | else |
Ted Kremenek | e53c069 | 2008-08-23 00:50:55 +0000 | [diff] [blame^] | 154 | NewStore = StMgr->AddDecl(OldStore, *this, VD, Ex); |
Zhongxing Xu | bbe8ff4 | 2008-08-21 22:34:01 +0000 | [diff] [blame] | 155 | |
| 156 | if (NewStore == OldStore) |
| 157 | return St; |
Ted Kremenek | e53c069 | 2008-08-23 00:50:55 +0000 | [diff] [blame^] | 158 | |
Zhongxing Xu | bbe8ff4 | 2008-08-21 22:34:01 +0000 | [diff] [blame] | 159 | GRState NewSt = *St; |
| 160 | NewSt.St = NewStore; |
| 161 | return getPersistentState(NewSt); |
| 162 | } |
| 163 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 164 | const GRState* GRStateManager::Unbind(const GRState* St, LVal LV) { |
Ted Kremenek | 4323a57 | 2008-07-10 22:03:41 +0000 | [diff] [blame] | 165 | Store OldStore = St->getStore(); |
| 166 | Store NewStore = StMgr->Remove(OldStore, LV); |
| 167 | |
| 168 | if (NewStore == OldStore) |
| 169 | return St; |
| 170 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 171 | GRState NewSt = *St; |
Ted Kremenek | 4323a57 | 2008-07-10 22:03:41 +0000 | [diff] [blame] | 172 | NewSt.St = NewStore; |
| 173 | return getPersistentState(NewSt); |
| 174 | } |
| 175 | |
| 176 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 177 | const GRState* GRStateManager::AddNE(const GRState* St, SymbolID sym, |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 178 | const llvm::APSInt& V) { |
| 179 | |
| 180 | GRStateRef state(St, *this); |
Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 181 | |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 182 | // First, retrieve the NE-set associated with the given symbol. |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 183 | ConstNotEqTy::data_type* T = state.get<ConstNotEqTy>(sym); |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 184 | GRState::IntSetTy S = T ? *T : ISetFactory.GetEmptySet(); |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 185 | |
Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 186 | // Now add V to the NE set. |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 187 | S = ISetFactory.Add(S, &V); |
| 188 | |
| 189 | // Create a new state with the old binding replaced. |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 190 | return state.set<ConstNotEqTy>(sym, S); |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 193 | const GRState* GRStateManager::AddEQ(const GRState* St, SymbolID sym, |
Ted Kremenek | 4323a57 | 2008-07-10 22:03:41 +0000 | [diff] [blame] | 194 | const llvm::APSInt& V) { |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 195 | // Create a new state with the old binding replaced. |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 196 | GRStateRef state(St, *this); |
| 197 | return state.set<ConstEqTy>(sym, &V); |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 200 | const GRState* GRStateManager::getInitialState() { |
Ted Kremenek | 5a7b382 | 2008-02-26 23:37:01 +0000 | [diff] [blame] | 201 | |
Ted Kremenek | caa3724 | 2008-08-19 16:51:45 +0000 | [diff] [blame] | 202 | GRState StateImpl(EnvMgr.getInitialEnvironment(), |
| 203 | StMgr->getInitialStore(*this), |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 204 | GDMFactory.GetEmptyMap()); |
Ted Kremenek | caa3724 | 2008-08-19 16:51:45 +0000 | [diff] [blame] | 205 | |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 206 | return getPersistentState(StateImpl); |
| 207 | } |
| 208 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 209 | const GRState* GRStateManager::getPersistentState(GRState& State) { |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 210 | |
| 211 | llvm::FoldingSetNodeID ID; |
| 212 | State.Profile(ID); |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 213 | void* InsertPos; |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 214 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 215 | if (GRState* I = StateSet.FindNodeOrInsertPos(ID, InsertPos)) |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 216 | return I; |
| 217 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 218 | GRState* I = (GRState*) Alloc.Allocate<GRState>(); |
| 219 | new (I) GRState(State); |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 220 | StateSet.InsertNode(I, InsertPos); |
| 221 | return I; |
| 222 | } |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 223 | |
Ted Kremenek | 59894f9 | 2008-03-04 18:30:35 +0000 | [diff] [blame] | 224 | |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 225 | //===----------------------------------------------------------------------===// |
| 226 | // State pretty-printing. |
| 227 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 461f977 | 2008-03-11 18:57:24 +0000 | [diff] [blame] | 228 | |
Ted Kremenek | a622d8c | 2008-08-19 22:24:03 +0000 | [diff] [blame] | 229 | void GRState::print(std::ostream& Out, StoreManager& StoreMgr, |
| 230 | Printer** Beg, Printer** End, |
Ted Kremenek | ae6814e | 2008-08-13 21:24:49 +0000 | [diff] [blame] | 231 | const char* nl, const char* sep) const { |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 232 | |
Ted Kremenek | a622d8c | 2008-08-19 22:24:03 +0000 | [diff] [blame] | 233 | // Print the store. |
| 234 | StoreMgr.print(getStore(), Out, nl, sep); |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 235 | |
| 236 | // Print Subexpression bindings. |
Ted Kremenek | a622d8c | 2008-08-19 22:24:03 +0000 | [diff] [blame] | 237 | bool isFirst = true; |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 238 | |
Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 239 | for (seb_iterator I = seb_begin(), E = seb_end(); I != E; ++I) { |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 240 | |
| 241 | if (isFirst) { |
Ted Kremenek | 59894f9 | 2008-03-04 18:30:35 +0000 | [diff] [blame] | 242 | Out << nl << nl << "Sub-Expressions:" << nl; |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 243 | isFirst = false; |
| 244 | } |
Ted Kremenek | 59894f9 | 2008-03-04 18:30:35 +0000 | [diff] [blame] | 245 | else { Out << nl; } |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 246 | |
| 247 | Out << " (" << (void*) I.getKey() << ") "; |
| 248 | I.getKey()->printPretty(Out); |
| 249 | Out << " : "; |
| 250 | I.getData().print(Out); |
| 251 | } |
| 252 | |
| 253 | // Print block-expression bindings. |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 254 | isFirst = true; |
| 255 | |
Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 256 | for (beb_iterator I = beb_begin(), E = beb_end(); I != E; ++I) { |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 257 | |
| 258 | if (isFirst) { |
Ted Kremenek | 59894f9 | 2008-03-04 18:30:35 +0000 | [diff] [blame] | 259 | Out << nl << nl << "Block-level Expressions:" << nl; |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 260 | isFirst = false; |
| 261 | } |
Ted Kremenek | 59894f9 | 2008-03-04 18:30:35 +0000 | [diff] [blame] | 262 | else { Out << nl; } |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 263 | |
| 264 | Out << " (" << (void*) I.getKey() << ") "; |
| 265 | I.getKey()->printPretty(Out); |
| 266 | Out << " : "; |
| 267 | I.getData().print(Out); |
| 268 | } |
| 269 | |
| 270 | // Print equality constraints. |
Ted Kremenek | ae6814e | 2008-08-13 21:24:49 +0000 | [diff] [blame] | 271 | // FIXME: Make just another printer do this. |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 272 | ConstEqTy CE = get<ConstEqTy>(); |
| 273 | |
| 274 | if (!CE.isEmpty()) { |
Ted Kremenek | 59894f9 | 2008-03-04 18:30:35 +0000 | [diff] [blame] | 275 | Out << nl << sep << "'==' constraints:"; |
Ted Kremenek | ffdbefd | 2008-08-17 03:10:22 +0000 | [diff] [blame] | 276 | |
| 277 | for (ConstEqTy::iterator I = CE.begin(), E = CE.end(); I!=E; ++I) |
Ted Kremenek | 59894f9 | 2008-03-04 18:30:35 +0000 | [diff] [blame] | 278 | Out << nl << " $" << I.getKey() |
Chris Lattner | 9aa77f1 | 2008-08-17 07:19:51 +0000 | [diff] [blame] | 279 | << " : " << *I.getData(); |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 280 | } |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 281 | |
| 282 | // Print != constraints. |
Ted Kremenek | ae6814e | 2008-08-13 21:24:49 +0000 | [diff] [blame] | 283 | // FIXME: Make just another printer do this. |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 284 | |
| 285 | ConstNotEqTy CNE = get<ConstNotEqTy>(); |
| 286 | |
| 287 | if (!CNE.isEmpty()) { |
Ted Kremenek | 59894f9 | 2008-03-04 18:30:35 +0000 | [diff] [blame] | 288 | Out << nl << sep << "'!=' constraints:"; |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 289 | |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 290 | for (ConstNotEqTy::iterator I = CNE.begin(), EI = CNE.end(); I!=EI; ++I) { |
Ted Kremenek | 59894f9 | 2008-03-04 18:30:35 +0000 | [diff] [blame] | 291 | Out << nl << " $" << I.getKey() << " : "; |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 292 | isFirst = true; |
| 293 | |
Ted Kremenek | aa1c4e5 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 294 | IntSetTy::iterator J = I.getData().begin(), EJ = I.getData().end(); |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 295 | |
| 296 | for ( ; J != EJ; ++J) { |
| 297 | if (isFirst) isFirst = false; |
| 298 | else Out << ", "; |
| 299 | |
Chris Lattner | 9aa77f1 | 2008-08-17 07:19:51 +0000 | [diff] [blame] | 300 | Out << *J; |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 301 | } |
| 302 | } |
| 303 | } |
Ted Kremenek | 461f977 | 2008-03-11 18:57:24 +0000 | [diff] [blame] | 304 | |
Ted Kremenek | ae6814e | 2008-08-13 21:24:49 +0000 | [diff] [blame] | 305 | // Print checker-specific data. |
| 306 | for ( ; Beg != End ; ++Beg) (*Beg)->Print(Out, this, nl, sep); |
Ted Kremenek | e7d2211 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 307 | } |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 308 | |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 309 | void GRStateRef::printDOT(std::ostream& Out) const { |
| 310 | print(Out, "\\l", "\\|"); |
| 311 | } |
| 312 | |
| 313 | void GRStateRef::printStdErr() const { |
| 314 | print(*llvm::cerr); |
| 315 | } |
| 316 | |
| 317 | void GRStateRef::print(std::ostream& Out, const char* nl, const char* sep)const{ |
| 318 | GRState::Printer **beg = Mgr->Printers.empty() ? 0 : &Mgr->Printers[0]; |
| 319 | GRState::Printer **end = !beg ? 0 : beg + Mgr->Printers.size(); |
Ted Kremenek | a622d8c | 2008-08-19 22:24:03 +0000 | [diff] [blame] | 320 | St->print(Out, *Mgr->StMgr, beg, end, nl, sep); |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 321 | } |
| 322 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 323 | //===----------------------------------------------------------------------===// |
| 324 | // Generic Data Map. |
| 325 | //===----------------------------------------------------------------------===// |
| 326 | |
| 327 | void* const* GRState::FindGDM(void* K) const { |
| 328 | return GDM.lookup(K); |
| 329 | } |
| 330 | |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 331 | void* |
| 332 | GRStateManager::FindGDMContext(void* K, |
| 333 | void* (*CreateContext)(llvm::BumpPtrAllocator&), |
| 334 | void (*DeleteContext)(void*)) { |
| 335 | |
| 336 | std::pair<void*, void (*)(void*)>& p = GDMContexts[K]; |
| 337 | if (!p.first) { |
| 338 | p.first = CreateContext(Alloc); |
| 339 | p.second = DeleteContext; |
| 340 | } |
| 341 | |
| 342 | return p.first; |
| 343 | } |
| 344 | |
Ted Kremenek | 72cd17f | 2008-08-14 21:16:54 +0000 | [diff] [blame] | 345 | const GRState* GRStateManager::addGDM(const GRState* St, void* Key, void* Data){ |
| 346 | GRState::GenericDataMap M1 = St->getGDM(); |
| 347 | GRState::GenericDataMap M2 = GDMFactory.Add(M1, Key, Data); |
| 348 | |
| 349 | if (M1 == M2) |
| 350 | return St; |
| 351 | |
| 352 | GRState NewSt = *St; |
| 353 | NewSt.GDM = M2; |
| 354 | return getPersistentState(NewSt); |
| 355 | } |
Ted Kremenek | 584def7 | 2008-07-22 00:46:16 +0000 | [diff] [blame] | 356 | |
| 357 | //===----------------------------------------------------------------------===// |
| 358 | // Queries. |
| 359 | //===----------------------------------------------------------------------===// |
| 360 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 361 | bool GRStateManager::isEqual(const GRState* state, Expr* Ex, |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 362 | const llvm::APSInt& Y) { |
| 363 | |
Ted Kremenek | 584def7 | 2008-07-22 00:46:16 +0000 | [diff] [blame] | 364 | RVal V = GetRVal(state, Ex); |
| 365 | |
| 366 | if (lval::ConcreteInt* X = dyn_cast<lval::ConcreteInt>(&V)) |
| 367 | return X->getValue() == Y; |
| 368 | |
| 369 | if (nonlval::ConcreteInt* X = dyn_cast<nonlval::ConcreteInt>(&V)) |
| 370 | return X->getValue() == Y; |
| 371 | |
| 372 | if (nonlval::SymbolVal* X = dyn_cast<nonlval::SymbolVal>(&V)) |
| 373 | return state->isEqual(X->getSymbol(), Y); |
| 374 | |
| 375 | if (lval::SymbolVal* X = dyn_cast<lval::SymbolVal>(&V)) |
| 376 | return state->isEqual(X->getSymbol(), Y); |
| 377 | |
| 378 | return false; |
| 379 | } |
| 380 | |
Ted Kremenek | 1c72ef0 | 2008-08-16 00:49:49 +0000 | [diff] [blame] | 381 | bool GRStateManager::isEqual(const GRState* state, Expr* Ex, uint64_t x) { |
Ted Kremenek | 584def7 | 2008-07-22 00:46:16 +0000 | [diff] [blame] | 382 | return isEqual(state, Ex, BasicVals.getValue(x, Ex->getType())); |
| 383 | } |
| 384 | |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 385 | //===----------------------------------------------------------------------===// |
| 386 | // "Assume" logic. |
| 387 | //===----------------------------------------------------------------------===// |
| 388 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 389 | const GRState* GRStateManager::Assume(const GRState* St, LVal Cond, |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 390 | bool Assumption, bool& isFeasible) { |
| 391 | |
| 392 | St = AssumeAux(St, Cond, Assumption, isFeasible); |
| 393 | |
| 394 | return isFeasible ? TF->EvalAssume(*this, St, Cond, Assumption, isFeasible) |
| 395 | : St; |
| 396 | } |
| 397 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 398 | const GRState* GRStateManager::AssumeAux(const GRState* St, LVal Cond, |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 399 | bool Assumption, bool& isFeasible) { |
| 400 | |
| 401 | switch (Cond.getSubKind()) { |
| 402 | default: |
| 403 | assert (false && "'Assume' not implemented for this LVal."); |
| 404 | return St; |
| 405 | |
| 406 | case lval::SymbolValKind: |
| 407 | if (Assumption) |
| 408 | return AssumeSymNE(St, cast<lval::SymbolVal>(Cond).getSymbol(), |
| 409 | BasicVals.getZeroWithPtrWidth(), isFeasible); |
| 410 | else |
| 411 | return AssumeSymEQ(St, cast<lval::SymbolVal>(Cond).getSymbol(), |
| 412 | BasicVals.getZeroWithPtrWidth(), isFeasible); |
| 413 | |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 414 | case lval::DeclValKind: |
| 415 | case lval::FuncValKind: |
| 416 | case lval::GotoLabelKind: |
| 417 | case lval::StringLiteralValKind: |
| 418 | isFeasible = Assumption; |
| 419 | return St; |
| 420 | |
| 421 | case lval::FieldOffsetKind: |
| 422 | return AssumeAux(St, cast<lval::FieldOffset>(Cond).getBase(), |
| 423 | Assumption, isFeasible); |
| 424 | |
| 425 | case lval::ArrayOffsetKind: |
| 426 | return AssumeAux(St, cast<lval::ArrayOffset>(Cond).getBase(), |
| 427 | Assumption, isFeasible); |
| 428 | |
| 429 | case lval::ConcreteIntKind: { |
| 430 | bool b = cast<lval::ConcreteInt>(Cond).getValue() != 0; |
| 431 | isFeasible = b ? Assumption : !Assumption; |
| 432 | return St; |
| 433 | } |
| 434 | } |
| 435 | } |
| 436 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 437 | const GRState* GRStateManager::Assume(const GRState* St, NonLVal Cond, |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 438 | bool Assumption, bool& isFeasible) { |
| 439 | |
| 440 | St = AssumeAux(St, Cond, Assumption, isFeasible); |
| 441 | |
| 442 | return isFeasible ? TF->EvalAssume(*this, St, Cond, Assumption, isFeasible) |
| 443 | : St; |
| 444 | } |
| 445 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 446 | const GRState* GRStateManager::AssumeAux(const GRState* St, NonLVal Cond, |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 447 | bool Assumption, bool& isFeasible) { |
| 448 | switch (Cond.getSubKind()) { |
| 449 | default: |
| 450 | assert (false && "'Assume' not implemented for this NonLVal."); |
| 451 | return St; |
| 452 | |
| 453 | |
| 454 | case nonlval::SymbolValKind: { |
| 455 | nonlval::SymbolVal& SV = cast<nonlval::SymbolVal>(Cond); |
| 456 | SymbolID sym = SV.getSymbol(); |
| 457 | |
| 458 | if (Assumption) |
| 459 | return AssumeSymNE(St, sym, BasicVals.getValue(0, SymMgr.getType(sym)), |
| 460 | isFeasible); |
| 461 | else |
| 462 | return AssumeSymEQ(St, sym, BasicVals.getValue(0, SymMgr.getType(sym)), |
| 463 | isFeasible); |
| 464 | } |
| 465 | |
| 466 | case nonlval::SymIntConstraintValKind: |
| 467 | return |
| 468 | AssumeSymInt(St, Assumption, |
| 469 | cast<nonlval::SymIntConstraintVal>(Cond).getConstraint(), |
| 470 | isFeasible); |
| 471 | |
| 472 | case nonlval::ConcreteIntKind: { |
| 473 | bool b = cast<nonlval::ConcreteInt>(Cond).getValue() != 0; |
| 474 | isFeasible = b ? Assumption : !Assumption; |
| 475 | return St; |
| 476 | } |
| 477 | |
| 478 | case nonlval::LValAsIntegerKind: { |
| 479 | return AssumeAux(St, cast<nonlval::LValAsInteger>(Cond).getLVal(), |
| 480 | Assumption, isFeasible); |
| 481 | } |
| 482 | } |
| 483 | } |
| 484 | |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 485 | |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 486 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 487 | const GRState* GRStateManager::AssumeSymInt(const GRState* St, |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 488 | bool Assumption, |
| 489 | const SymIntConstraint& C, |
| 490 | bool& isFeasible) { |
| 491 | |
| 492 | switch (C.getOpcode()) { |
| 493 | default: |
| 494 | // No logic yet for other operators. |
| 495 | isFeasible = true; |
| 496 | return St; |
| 497 | |
| 498 | case BinaryOperator::EQ: |
| 499 | if (Assumption) |
| 500 | return AssumeSymEQ(St, C.getSymbol(), C.getInt(), isFeasible); |
| 501 | else |
| 502 | return AssumeSymNE(St, C.getSymbol(), C.getInt(), isFeasible); |
| 503 | |
| 504 | case BinaryOperator::NE: |
| 505 | if (Assumption) |
| 506 | return AssumeSymNE(St, C.getSymbol(), C.getInt(), isFeasible); |
| 507 | else |
| 508 | return AssumeSymEQ(St, C.getSymbol(), C.getInt(), isFeasible); |
Ted Kremenek | 2619be0 | 2008-08-07 22:30:22 +0000 | [diff] [blame] | 509 | |
| 510 | case BinaryOperator::GE: |
| 511 | if (Assumption) |
| 512 | return AssumeSymGE(St, C.getSymbol(), C.getInt(), isFeasible); |
| 513 | else |
| 514 | return AssumeSymLT(St, C.getSymbol(), C.getInt(), isFeasible); |
| 515 | |
| 516 | case BinaryOperator::LE: |
| 517 | if (Assumption) |
| 518 | return AssumeSymLE(St, C.getSymbol(), C.getInt(), isFeasible); |
| 519 | else |
| 520 | return AssumeSymGT(St, C.getSymbol(), C.getInt(), isFeasible); |
Ted Kremenek | 729a9a2 | 2008-07-17 23:15:45 +0000 | [diff] [blame] | 521 | } |
| 522 | } |
Ted Kremenek | 2619be0 | 2008-08-07 22:30:22 +0000 | [diff] [blame] | 523 | |
| 524 | //===----------------------------------------------------------------------===// |
| 525 | // FIXME: This should go into a plug-in constraint engine. |
| 526 | //===----------------------------------------------------------------------===// |
| 527 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 528 | const GRState* |
| 529 | GRStateManager::AssumeSymNE(const GRState* St, SymbolID sym, |
Ted Kremenek | 2619be0 | 2008-08-07 22:30:22 +0000 | [diff] [blame] | 530 | const llvm::APSInt& V, bool& isFeasible) { |
| 531 | |
| 532 | // First, determine if sym == X, where X != V. |
| 533 | if (const llvm::APSInt* X = St->getSymVal(sym)) { |
| 534 | isFeasible = *X != V; |
| 535 | return St; |
| 536 | } |
| 537 | |
| 538 | // Second, determine if sym != V. |
| 539 | if (St->isNotEqual(sym, V)) { |
| 540 | isFeasible = true; |
| 541 | return St; |
| 542 | } |
| 543 | |
| 544 | // If we reach here, sym is not a constant and we don't know if it is != V. |
| 545 | // Make that assumption. |
| 546 | |
| 547 | isFeasible = true; |
| 548 | return AddNE(St, sym, V); |
| 549 | } |
| 550 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 551 | const GRState* |
| 552 | GRStateManager::AssumeSymEQ(const GRState* St, SymbolID sym, |
Ted Kremenek | 2619be0 | 2008-08-07 22:30:22 +0000 | [diff] [blame] | 553 | const llvm::APSInt& V, bool& isFeasible) { |
| 554 | |
| 555 | // First, determine if sym == X, where X != V. |
| 556 | if (const llvm::APSInt* X = St->getSymVal(sym)) { |
| 557 | isFeasible = *X == V; |
| 558 | return St; |
| 559 | } |
| 560 | |
| 561 | // Second, determine if sym != V. |
| 562 | if (St->isNotEqual(sym, V)) { |
| 563 | isFeasible = false; |
| 564 | return St; |
| 565 | } |
| 566 | |
| 567 | // If we reach here, sym is not a constant and we don't know if it is == V. |
| 568 | // Make that assumption. |
| 569 | |
| 570 | isFeasible = true; |
| 571 | return AddEQ(St, sym, V); |
| 572 | } |
| 573 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 574 | const GRState* |
| 575 | GRStateManager::AssumeSymLT(const GRState* St, SymbolID sym, |
Ted Kremenek | 2619be0 | 2008-08-07 22:30:22 +0000 | [diff] [blame] | 576 | const llvm::APSInt& V, bool& isFeasible) { |
| 577 | |
| 578 | // FIXME: For now have assuming x < y be the same as assuming sym != V; |
| 579 | return AssumeSymNE(St, sym, V, isFeasible); |
| 580 | } |
| 581 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 582 | const GRState* |
| 583 | GRStateManager::AssumeSymGT(const GRState* St, SymbolID sym, |
Ted Kremenek | 2619be0 | 2008-08-07 22:30:22 +0000 | [diff] [blame] | 584 | const llvm::APSInt& V, bool& isFeasible) { |
| 585 | |
| 586 | // FIXME: For now have assuming x > y be the same as assuming sym != V; |
| 587 | return AssumeSymNE(St, sym, V, isFeasible); |
| 588 | } |
| 589 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 590 | const GRState* |
| 591 | GRStateManager::AssumeSymGE(const GRState* St, SymbolID sym, |
Ted Kremenek | 2619be0 | 2008-08-07 22:30:22 +0000 | [diff] [blame] | 592 | const llvm::APSInt& V, bool& isFeasible) { |
| 593 | |
| 594 | // FIXME: Primitive logic for now. Only reject a path if the value of |
| 595 | // sym is a constant X and !(X >= V). |
| 596 | |
| 597 | if (const llvm::APSInt* X = St->getSymVal(sym)) { |
| 598 | isFeasible = *X >= V; |
| 599 | return St; |
| 600 | } |
| 601 | |
| 602 | isFeasible = true; |
| 603 | return St; |
| 604 | } |
| 605 | |
Ted Kremenek | 4adc81e | 2008-08-13 04:27:00 +0000 | [diff] [blame] | 606 | const GRState* |
| 607 | GRStateManager::AssumeSymLE(const GRState* St, SymbolID sym, |
Ted Kremenek | 2619be0 | 2008-08-07 22:30:22 +0000 | [diff] [blame] | 608 | const llvm::APSInt& V, bool& isFeasible) { |
| 609 | |
| 610 | // FIXME: Primitive logic for now. Only reject a path if the value of |
| 611 | // sym is a constant X and !(X <= V). |
| 612 | |
| 613 | if (const llvm::APSInt* X = St->getSymVal(sym)) { |
| 614 | isFeasible = *X <= V; |
| 615 | return St; |
| 616 | } |
| 617 | |
| 618 | isFeasible = true; |
| 619 | return St; |
| 620 | } |
| 621 | |