Ted Kremenek | 50df4f4 | 2008-02-14 22:13:12 +0000 | [diff] [blame] | 1 | //=-- GRExprEngine.cpp - Path-Sensitive Expression-Level Dataflow ---*- C++ -*-= |
Ted Kremenek | c48b8e4 | 2008-01-31 02:35:41 +0000 | [diff] [blame] | 2 | // |
Ted Kremenek | 2e16060 | 2008-01-31 06:49:09 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
Ted Kremenek | 68d70a8 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 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 | 50df4f4 | 2008-02-14 22:13:12 +0000 | [diff] [blame] | 10 | // This file defines a meta-engine for path-sensitive dataflow analysis that |
| 11 | // is built on GREngine, but provides the boilerplate to execute transfer |
| 12 | // functions and build the ExplodedGraph at the expression level. |
Ted Kremenek | 68d70a8 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
Ted Kremenek | 50df4f4 | 2008-02-14 22:13:12 +0000 | [diff] [blame] | 16 | #include "clang/Analysis/PathSensitive/GRExprEngine.h" |
Ted Kremenek | 3862eb1 | 2008-02-14 22:36:46 +0000 | [diff] [blame] | 17 | #include "clang/Analysis/PathSensitive/GRTransferFuncs.h" |
| 18 | |
| 19 | #include "llvm/Support/Streams.h" |
Ted Kremenek | d446743 | 2008-02-14 22:16:04 +0000 | [diff] [blame] | 20 | |
| 21 | using namespace clang; |
| 22 | using llvm::dyn_cast; |
| 23 | using llvm::cast; |
| 24 | using llvm::APSInt; |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 25 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 26 | GRExprEngine::StateTy |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 27 | GRExprEngine::SetRVal(StateTy St, Expr* Ex, const RVal& V) { |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 28 | |
Ted Kremenek | 7f5ebc7 | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 29 | if (!StateCleaned) { |
| 30 | St = RemoveDeadBindings(CurrentStmt, St); |
| 31 | StateCleaned = true; |
| 32 | } |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 33 | |
Ted Kremenek | 7f5ebc7 | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 34 | bool isBlkExpr = false; |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 35 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 36 | if (Ex == CurrentStmt) { |
| 37 | isBlkExpr = getCFG().isBlkExpr(Ex); |
Ted Kremenek | 7f5ebc7 | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 38 | |
| 39 | if (!isBlkExpr) |
| 40 | return St; |
| 41 | } |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 42 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 43 | return StateMgr.SetRVal(St, Ex, isBlkExpr, V); |
Ted Kremenek | 7f5ebc7 | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 44 | } |
| 45 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 46 | const GRExprEngine::StateTy::BufferTy& |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 47 | GRExprEngine::SetRVal(StateTy St, Expr* Ex, const RVal::BufferTy& RB, |
Ted Kremenek | f20c201 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 48 | StateTy::BufferTy& RetBuf) { |
| 49 | |
| 50 | assert (RetBuf.empty()); |
| 51 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 52 | for (RVal::BufferTy::const_iterator I = RB.begin(), E = RB.end(); I!=E; ++I) |
| 53 | RetBuf.push_back(SetRVal(St, Ex, *I)); |
Ted Kremenek | f20c201 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 54 | |
| 55 | return RetBuf; |
| 56 | } |
| 57 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 58 | GRExprEngine::StateTy |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 59 | GRExprEngine::SetRVal(StateTy St, const LVal& LV, const RVal& RV) { |
Ted Kremenek | 7f5ebc7 | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 60 | |
| 61 | if (!StateCleaned) { |
| 62 | St = RemoveDeadBindings(CurrentStmt, St); |
| 63 | StateCleaned = true; |
| 64 | } |
| 65 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 66 | return StateMgr.SetRVal(St, LV, RV); |
Ted Kremenek | 7f5ebc7 | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 69 | void GRExprEngine::ProcessBranch(Expr* Condition, Stmt* Term, |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 70 | BranchNodeBuilder& builder) { |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 71 | |
Ted Kremenek | 17c5f11 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 72 | // Remove old bindings for subexpressions. |
| 73 | StateTy PrevState = StateMgr.RemoveSubExprBindings(builder.getState()); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 74 | |
Ted Kremenek | 022b605 | 2008-02-15 22:29:00 +0000 | [diff] [blame] | 75 | // Check for NULL conditions; e.g. "for(;;)" |
| 76 | if (!Condition) { |
| 77 | builder.markInfeasible(false); |
| 78 | |
| 79 | // Get the current block counter. |
| 80 | GRBlockCounter BC = builder.getBlockCounter(); |
| 81 | unsigned BlockID = builder.getTargetBlock(true)->getBlockID(); |
| 82 | unsigned NumVisited = BC.getNumVisited(BlockID); |
| 83 | |
| 84 | if (NumVisited < 1) builder.generateNode(PrevState, true); |
| 85 | else builder.markInfeasible(true); |
| 86 | |
| 87 | return; |
| 88 | } |
| 89 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 90 | RVal V = GetRVal(PrevState, Condition); |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 91 | |
| 92 | switch (V.getBaseKind()) { |
| 93 | default: |
| 94 | break; |
| 95 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 96 | case RVal::UnknownKind: |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 97 | builder.generateNode(PrevState, true); |
| 98 | builder.generateNode(PrevState, false); |
| 99 | return; |
| 100 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 101 | case RVal::UninitializedKind: { |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 102 | NodeTy* N = builder.generateNode(PrevState, true); |
| 103 | |
| 104 | if (N) { |
| 105 | N->markAsSink(); |
| 106 | UninitBranches.insert(N); |
| 107 | } |
| 108 | |
| 109 | builder.markInfeasible(false); |
| 110 | return; |
| 111 | } |
| 112 | } |
Ted Kremenek | 022b605 | 2008-02-15 22:29:00 +0000 | [diff] [blame] | 113 | |
Ted Kremenek | 4b170e5 | 2008-02-12 18:08:17 +0000 | [diff] [blame] | 114 | // Get the current block counter. |
| 115 | GRBlockCounter BC = builder.getBlockCounter(); |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 116 | unsigned BlockID = builder.getTargetBlock(true)->getBlockID(); |
| 117 | unsigned NumVisited = BC.getNumVisited(BlockID); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 118 | |
Ted Kremenek | 4b170e5 | 2008-02-12 18:08:17 +0000 | [diff] [blame] | 119 | if (isa<nonlval::ConcreteInt>(V) || |
| 120 | BC.getNumVisited(builder.getTargetBlock(true)->getBlockID()) < 1) { |
| 121 | |
| 122 | // Process the true branch. |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 123 | |
Ted Kremenek | 4b170e5 | 2008-02-12 18:08:17 +0000 | [diff] [blame] | 124 | bool isFeasible = true; |
| 125 | |
| 126 | StateTy St = Assume(PrevState, V, true, isFeasible); |
| 127 | |
| 128 | if (isFeasible) |
| 129 | builder.generateNode(St, true); |
| 130 | else |
| 131 | builder.markInfeasible(true); |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 132 | } |
Ted Kremenek | 4b170e5 | 2008-02-12 18:08:17 +0000 | [diff] [blame] | 133 | else |
| 134 | builder.markInfeasible(true); |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 135 | |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 136 | BlockID = builder.getTargetBlock(false)->getBlockID(); |
| 137 | NumVisited = BC.getNumVisited(BlockID); |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 138 | |
Ted Kremenek | 4b170e5 | 2008-02-12 18:08:17 +0000 | [diff] [blame] | 139 | if (isa<nonlval::ConcreteInt>(V) || |
| 140 | BC.getNumVisited(builder.getTargetBlock(false)->getBlockID()) < 1) { |
| 141 | |
| 142 | // Process the false branch. |
| 143 | |
| 144 | bool isFeasible = false; |
| 145 | |
| 146 | StateTy St = Assume(PrevState, V, false, isFeasible); |
| 147 | |
| 148 | if (isFeasible) |
| 149 | builder.generateNode(St, false); |
| 150 | else |
| 151 | builder.markInfeasible(false); |
| 152 | } |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 153 | else |
| 154 | builder.markInfeasible(false); |
Ted Kremenek | 6ff3cea | 2008-01-29 23:32:35 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 157 | /// ProcessIndirectGoto - Called by GRCoreEngine. Used to generate successor |
Ted Kremenek | 677f4ef | 2008-02-13 00:24:44 +0000 | [diff] [blame] | 158 | /// nodes by processing the 'effects' of a computed goto jump. |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 159 | void GRExprEngine::ProcessIndirectGoto(IndirectGotoNodeBuilder& builder) { |
Ted Kremenek | 677f4ef | 2008-02-13 00:24:44 +0000 | [diff] [blame] | 160 | |
| 161 | StateTy St = builder.getState(); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 162 | RVal V = GetRVal(St, builder.getTarget()); |
Ted Kremenek | 677f4ef | 2008-02-13 00:24:44 +0000 | [diff] [blame] | 163 | |
| 164 | // Three possibilities: |
| 165 | // |
| 166 | // (1) We know the computed label. |
| 167 | // (2) The label is NULL (or some other constant), or Uninitialized. |
| 168 | // (3) We have no clue about the label. Dispatch to all targets. |
| 169 | // |
| 170 | |
| 171 | typedef IndirectGotoNodeBuilder::iterator iterator; |
| 172 | |
| 173 | if (isa<lval::GotoLabel>(V)) { |
| 174 | LabelStmt* L = cast<lval::GotoLabel>(V).getLabel(); |
| 175 | |
| 176 | for (iterator I=builder.begin(), E=builder.end(); I != E; ++I) { |
Ted Kremenek | 79f63f5 | 2008-02-13 17:27:37 +0000 | [diff] [blame] | 177 | if (I.getLabel() == L) { |
| 178 | builder.generateNode(I, St); |
Ted Kremenek | 677f4ef | 2008-02-13 00:24:44 +0000 | [diff] [blame] | 179 | return; |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | assert (false && "No block with label."); |
| 184 | return; |
| 185 | } |
| 186 | |
| 187 | if (isa<lval::ConcreteInt>(V) || isa<UninitializedVal>(V)) { |
| 188 | // Dispatch to the first target and mark it as a sink. |
Ted Kremenek | 79f63f5 | 2008-02-13 17:27:37 +0000 | [diff] [blame] | 189 | NodeTy* N = builder.generateNode(builder.begin(), St, true); |
Ted Kremenek | 677f4ef | 2008-02-13 00:24:44 +0000 | [diff] [blame] | 190 | UninitBranches.insert(N); |
| 191 | return; |
| 192 | } |
| 193 | |
| 194 | // This is really a catch-all. We don't support symbolics yet. |
| 195 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 196 | assert (V.isUnknown()); |
Ted Kremenek | 677f4ef | 2008-02-13 00:24:44 +0000 | [diff] [blame] | 197 | |
| 198 | for (iterator I=builder.begin(), E=builder.end(); I != E; ++I) |
Ted Kremenek | 79f63f5 | 2008-02-13 17:27:37 +0000 | [diff] [blame] | 199 | builder.generateNode(I, St); |
Ted Kremenek | 677f4ef | 2008-02-13 00:24:44 +0000 | [diff] [blame] | 200 | } |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 201 | |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 202 | /// ProcessSwitch - Called by GRCoreEngine. Used to generate successor |
| 203 | /// nodes by processing the 'effects' of a switch statement. |
| 204 | void GRExprEngine::ProcessSwitch(SwitchNodeBuilder& builder) { |
| 205 | |
| 206 | typedef SwitchNodeBuilder::iterator iterator; |
| 207 | |
| 208 | StateTy St = builder.getState(); |
Ted Kremenek | bc965a6 | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 209 | Expr* CondE = builder.getCondition(); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 210 | RVal CondV = GetRVal(St, CondE); |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 211 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 212 | if (CondV.isUninit()) { |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 213 | NodeTy* N = builder.generateDefaultCaseNode(St, true); |
| 214 | UninitBranches.insert(N); |
| 215 | return; |
| 216 | } |
| 217 | |
| 218 | StateTy DefaultSt = St; |
| 219 | |
| 220 | // While most of this can be assumed (such as the signedness), having it |
| 221 | // just computed makes sure everything makes the same assumptions end-to-end. |
Ted Kremenek | bc965a6 | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 222 | |
| 223 | unsigned bits = getContext().getTypeSize(CondE->getType(), |
| 224 | CondE->getExprLoc()); |
| 225 | |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 226 | APSInt V1(bits, false); |
| 227 | APSInt V2 = V1; |
| 228 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 229 | for (iterator I = builder.begin(), EI = builder.end(); I != EI; ++I) { |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 230 | |
| 231 | CaseStmt* Case = cast<CaseStmt>(I.getCase()); |
| 232 | |
| 233 | // Evaluate the case. |
| 234 | if (!Case->getLHS()->isIntegerConstantExpr(V1, getContext(), 0, true)) { |
| 235 | assert (false && "Case condition must evaluate to an integer constant."); |
| 236 | return; |
| 237 | } |
| 238 | |
| 239 | // Get the RHS of the case, if it exists. |
| 240 | |
| 241 | if (Expr* E = Case->getRHS()) { |
| 242 | if (!E->isIntegerConstantExpr(V2, getContext(), 0, true)) { |
| 243 | assert (false && |
| 244 | "Case condition (RHS) must evaluate to an integer constant."); |
| 245 | return ; |
| 246 | } |
| 247 | |
| 248 | assert (V1 <= V2); |
| 249 | } |
| 250 | else V2 = V1; |
| 251 | |
| 252 | // FIXME: Eventually we should replace the logic below with a range |
| 253 | // comparison, rather than concretize the values within the range. |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 254 | // This should be easy once we have "ranges" for NonLVals. |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 255 | |
| 256 | do { |
| 257 | nonlval::ConcreteInt CaseVal(ValMgr.getValue(V1)); |
| 258 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 259 | RVal Res = EvalBinOp(BinaryOperator::EQ, CondV, CaseVal); |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 260 | |
| 261 | // Now "assume" that the case matches. |
Ted Kremenek | bc965a6 | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 262 | bool isFeasible = false; |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 263 | |
Ted Kremenek | b193413 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 264 | StateTy StNew = Assume(St, Res, true, isFeasible); |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 265 | |
| 266 | if (isFeasible) { |
| 267 | builder.generateCaseStmtNode(I, StNew); |
| 268 | |
| 269 | // If CondV evaluates to a constant, then we know that this |
| 270 | // is the *only* case that we can take, so stop evaluating the |
| 271 | // others. |
| 272 | if (isa<nonlval::ConcreteInt>(CondV)) |
| 273 | return; |
| 274 | } |
| 275 | |
| 276 | // Now "assume" that the case doesn't match. Add this state |
| 277 | // to the default state (if it is feasible). |
| 278 | |
Ted Kremenek | b193413 | 2008-02-14 19:37:24 +0000 | [diff] [blame] | 279 | StNew = Assume(DefaultSt, Res, false, isFeasible); |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 280 | |
| 281 | if (isFeasible) |
| 282 | DefaultSt = StNew; |
| 283 | |
| 284 | // Concretize the next value in the range. |
| 285 | ++V1; |
| 286 | |
| 287 | } while (V1 < V2); |
| 288 | } |
| 289 | |
| 290 | // If we reach here, than we know that the default branch is |
| 291 | // possible. |
| 292 | builder.generateDefaultCaseNode(DefaultSt); |
| 293 | } |
| 294 | |
| 295 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 296 | void GRExprEngine::VisitLogicalExpr(BinaryOperator* B, NodeTy* Pred, |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 297 | NodeSet& Dst) { |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 298 | |
| 299 | bool hasR2; |
| 300 | StateTy PrevState = Pred->getState(); |
| 301 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 302 | RVal R1 = GetRVal(PrevState, B->getLHS()); |
| 303 | RVal R2 = GetRVal(PrevState, B->getRHS(), hasR2); |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 304 | |
| 305 | if (hasR2) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 306 | if (R2.isUnknownOrUninit()) { |
| 307 | Nodify(Dst, B, Pred, SetRVal(PrevState, B, R2)); |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 308 | return; |
| 309 | } |
| 310 | } |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 311 | else if (R1.isUnknownOrUninit()) { |
| 312 | Nodify(Dst, B, Pred, SetRVal(PrevState, B, R1)); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 313 | return; |
| 314 | } |
| 315 | |
| 316 | // R1 is an expression that can evaluate to either 'true' or 'false'. |
| 317 | if (B->getOpcode() == BinaryOperator::LAnd) { |
| 318 | // hasR2 == 'false' means that LHS evaluated to 'false' and that |
| 319 | // we short-circuited, leading to a value of '0' for the '&&' expression. |
| 320 | if (hasR2 == false) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 321 | Nodify(Dst, B, Pred, SetRVal(PrevState, B, MakeConstantVal(0U, B))); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 322 | return; |
| 323 | } |
| 324 | } |
| 325 | else { |
| 326 | assert (B->getOpcode() == BinaryOperator::LOr); |
| 327 | // hasR2 == 'false' means that the LHS evaluate to 'true' and that |
| 328 | // we short-circuited, leading to a value of '1' for the '||' expression. |
| 329 | if (hasR2 == false) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 330 | Nodify(Dst, B, Pred, SetRVal(PrevState, B, MakeConstantVal(1U, B))); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 331 | return; |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | // If we reach here we did not short-circuit. Assume R2 == true and |
| 336 | // R2 == false. |
| 337 | |
| 338 | bool isFeasible; |
| 339 | StateTy St = Assume(PrevState, R2, true, isFeasible); |
| 340 | |
| 341 | if (isFeasible) |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 342 | Nodify(Dst, B, Pred, SetRVal(PrevState, B, MakeConstantVal(1U, B))); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 343 | |
| 344 | St = Assume(PrevState, R2, false, isFeasible); |
| 345 | |
| 346 | if (isFeasible) |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 347 | Nodify(Dst, B, Pred, SetRVal(PrevState, B, MakeConstantVal(0U, B))); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | |
| 351 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 352 | void GRExprEngine::ProcessStmt(Stmt* S, StmtNodeBuilder& builder) { |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 353 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 354 | Builder = &builder; |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 355 | StmtEntryNode = builder.getLastNode(); |
| 356 | CurrentStmt = S; |
| 357 | NodeSet Dst; |
| 358 | StateCleaned = false; |
| 359 | |
| 360 | Visit(S, StmtEntryNode, Dst); |
| 361 | |
| 362 | // If no nodes were generated, generate a new node that has all the |
| 363 | // dead mappings removed. |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 364 | |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 365 | if (Dst.size() == 1 && *Dst.begin() == StmtEntryNode) { |
| 366 | StateTy St = RemoveDeadBindings(S, StmtEntryNode->getState()); |
| 367 | builder.generateNode(S, St, StmtEntryNode); |
| 368 | } |
Ted Kremenek | a57214f | 2008-01-18 00:41:32 +0000 | [diff] [blame] | 369 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 370 | // For safety, NULL out these variables. |
| 371 | |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 372 | CurrentStmt = NULL; |
| 373 | StmtEntryNode = NULL; |
| 374 | Builder = NULL; |
Ted Kremenek | 68d70a8 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 375 | } |
| 376 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 377 | GRExprEngine::NodeTy* |
| 378 | GRExprEngine::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, StateTy St) { |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 379 | |
| 380 | // If the state hasn't changed, don't generate a new node. |
Ted Kremenek | 02b5b40 | 2008-02-07 15:20:13 +0000 | [diff] [blame] | 381 | if (St == Pred->getState()) |
Ted Kremenek | 80d52d0 | 2008-02-07 05:48:01 +0000 | [diff] [blame] | 382 | return NULL; |
Ted Kremenek | afba4b2 | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 383 | |
Ted Kremenek | 80d52d0 | 2008-02-07 05:48:01 +0000 | [diff] [blame] | 384 | NodeTy* N = Builder->generateNode(S, St, Pred); |
| 385 | Dst.Add(N); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 386 | |
Ted Kremenek | 80d52d0 | 2008-02-07 05:48:01 +0000 | [diff] [blame] | 387 | return N; |
Ted Kremenek | afba4b2 | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 388 | } |
Ted Kremenek | 68d70a8 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 389 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 390 | void GRExprEngine::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, |
Ted Kremenek | f20c201 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 391 | const StateTy::BufferTy& SB) { |
| 392 | |
| 393 | for (StateTy::BufferTy::const_iterator I=SB.begin(), E=SB.end(); I!=E; ++I) |
| 394 | Nodify(Dst, S, Pred, *I); |
| 395 | } |
| 396 | |
Ted Kremenek | 6d40992 | 2008-02-13 18:06:44 +0000 | [diff] [blame] | 397 | void GRExprEngine::VisitDeclRefExpr(DeclRefExpr* D, NodeTy* Pred, NodeSet& Dst){ |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 398 | |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 399 | if (D != CurrentStmt) { |
| 400 | Dst.Add(Pred); // No-op. Simply propagate the current state unchanged. |
| 401 | return; |
| 402 | } |
| 403 | |
| 404 | // If we are here, we are loading the value of the decl and binding |
| 405 | // it to the block-level expression. |
| 406 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 407 | StateTy St = Pred->getState(); |
| 408 | Nodify(Dst, D, Pred, SetRVal(St, D, GetRVal(St, D))); |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 409 | } |
| 410 | |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 411 | void GRExprEngine::VisitCall(CallExpr* CE, NodeTy* Pred, |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 412 | CallExpr::arg_iterator AI, |
| 413 | CallExpr::arg_iterator AE, |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 414 | NodeSet& Dst) { |
| 415 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 416 | // Process the arguments. |
| 417 | |
| 418 | if (AI != AE) { |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 419 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 420 | NodeSet DstTmp; |
| 421 | Visit(*AI, Pred, DstTmp); |
| 422 | ++AI; |
| 423 | |
| 424 | for (NodeSet::iterator DI=DstTmp.begin(), DE=DstTmp.end(); DI != DE; ++DI) |
| 425 | VisitCall(CE, *DI, AI, AE, Dst); |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 426 | |
| 427 | return; |
| 428 | } |
| 429 | |
| 430 | // If we reach here we have processed all of the arguments. Evaluate |
| 431 | // the callee expression. |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 432 | NodeSet DstTmp; |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 433 | Visit(CE->getCallee(), Pred, DstTmp); |
| 434 | |
| 435 | // Finally, evaluate the function call. |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 436 | for (NodeSet::iterator DI = DstTmp.begin(), DE = DstTmp.end(); DI!=DE; ++DI) { |
| 437 | |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 438 | StateTy St = (*DI)->getState(); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 439 | RVal L = GetLVal(St, CE->getCallee()); |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 440 | |
| 441 | // Check for uninitialized control-flow. |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 442 | |
| 443 | if (L.isUninit()) { |
| 444 | |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 445 | NodeTy* N = Builder->generateNode(CE, St, *DI); |
| 446 | N->markAsSink(); |
| 447 | UninitBranches.insert(N); |
| 448 | continue; |
| 449 | } |
| 450 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 451 | // FIXME: EvalCall must handle the case where the callee is Unknown. |
| 452 | assert (!L.isUnknown()); |
| 453 | |
| 454 | Nodify(Dst, CE, *DI, EvalCall(CE, cast<LVal>(L), (*DI)->getState())); |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 455 | } |
| 456 | } |
| 457 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 458 | void GRExprEngine::VisitCast(Expr* CastE, Expr* Ex, NodeTy* Pred, NodeSet& Dst){ |
Ted Kremenek | 54eddae | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 459 | |
Ted Kremenek | 5f585b0 | 2008-02-19 18:52:54 +0000 | [diff] [blame] | 460 | NodeSet S1; |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 461 | Visit(Ex, Pred, S1); |
Ted Kremenek | 54eddae | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 462 | |
Ted Kremenek | 5f585b0 | 2008-02-19 18:52:54 +0000 | [diff] [blame] | 463 | QualType T = CastE->getType(); |
| 464 | |
Ted Kremenek | 5a9b6aa | 2008-02-19 18:47:04 +0000 | [diff] [blame] | 465 | // Check for redundant casts or casting to "void" |
| 466 | if (T->isVoidType() || |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 467 | Ex->getType() == T || |
| 468 | (T->isPointerType() && Ex->getType()->isFunctionType())) { |
Ted Kremenek | 5f585b0 | 2008-02-19 18:52:54 +0000 | [diff] [blame] | 469 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 470 | for (NodeSet::iterator I1 = S1.begin(), E1 = S1.end(); I1 != E1; ++I1) |
Ted Kremenek | 5f585b0 | 2008-02-19 18:52:54 +0000 | [diff] [blame] | 471 | Dst.Add(*I1); |
| 472 | |
Ted Kremenek | 54eddae | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 473 | return; |
| 474 | } |
| 475 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 476 | for (NodeSet::iterator I1 = S1.begin(), E1 = S1.end(); I1 != E1; ++I1) { |
Ted Kremenek | 54eddae | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 477 | NodeTy* N = *I1; |
| 478 | StateTy St = N->getState(); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 479 | RVal V = GetRVal(St, Ex); |
Ted Kremenek | 9cfda3f | 2008-02-21 18:43:30 +0000 | [diff] [blame] | 480 | Nodify(Dst, CastE, N, SetRVal(St, CastE, EvalCast(V, CastE->getType()))); |
Ted Kremenek | 54eddae | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 481 | } |
Ted Kremenek | b9c30e3 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 482 | } |
| 483 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 484 | void GRExprEngine::VisitDeclStmt(DeclStmt* DS, GRExprEngine::NodeTy* Pred, |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 485 | GRExprEngine::NodeSet& Dst) { |
Ted Kremenek | b9c30e3 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 486 | |
| 487 | StateTy St = Pred->getState(); |
| 488 | |
| 489 | for (const ScopedDecl* D = DS->getDecl(); D; D = D->getNextDeclarator()) |
Ted Kremenek | 8c9bc34 | 2008-01-28 22:51:57 +0000 | [diff] [blame] | 490 | if (const VarDecl* VD = dyn_cast<VarDecl>(D)) { |
Ted Kremenek | e025800 | 2008-02-19 00:29:51 +0000 | [diff] [blame] | 491 | |
| 492 | // FIXME: Add support for local arrays. |
| 493 | if (VD->getType()->isArrayType()) |
| 494 | continue; |
| 495 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 496 | const Expr* Ex = VD->getInit(); |
| 497 | |
| 498 | St = SetRVal(St, lval::DeclVal(VD), |
| 499 | Ex ? GetRVal(St, Ex) : UninitializedVal()); |
Ted Kremenek | 8c9bc34 | 2008-01-28 22:51:57 +0000 | [diff] [blame] | 500 | } |
Ted Kremenek | b9c30e3 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 501 | |
| 502 | Nodify(Dst, DS, Pred, St); |
| 503 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 504 | if (Dst.empty()) { Dst.Add(Pred); } |
Ted Kremenek | b9c30e3 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 505 | } |
Ted Kremenek | 54eddae | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 506 | |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 507 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 508 | void GRExprEngine::VisitGuardedExpr(Expr* Ex, Expr* L, Expr* R, |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 509 | NodeTy* Pred, NodeSet& Dst) { |
| 510 | |
| 511 | StateTy St = Pred->getState(); |
| 512 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 513 | RVal V = GetRVal(St, L); |
| 514 | if (isa<UnknownVal>(V)) V = GetRVal(St, R); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 515 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 516 | Nodify(Dst, Ex, Pred, SetRVal(St, Ex, V)); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 517 | } |
| 518 | |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 519 | /// VisitSizeOfAlignOfTypeExpr - Transfer function for sizeof(type). |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 520 | void GRExprEngine::VisitSizeOfAlignOfTypeExpr(SizeOfAlignOfTypeExpr* Ex, |
| 521 | NodeTy* Pred, |
| 522 | NodeSet& Dst) { |
Ted Kremenek | 9cfda3f | 2008-02-21 18:43:30 +0000 | [diff] [blame] | 523 | |
| 524 | assert (Ex->isSizeOf() && "FIXME: AlignOf(Expr) not yet implemented."); |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 525 | |
| 526 | // 6.5.3.4 sizeof: "The result type is an integer." |
| 527 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 528 | QualType T = Ex->getArgumentType(); |
Ted Kremenek | 9cfda3f | 2008-02-21 18:43:30 +0000 | [diff] [blame] | 529 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 530 | |
Ted Kremenek | 571f519 | 2008-02-21 18:15:29 +0000 | [diff] [blame] | 531 | // FIXME: Add support for VLAs. |
Eli Friedman | 82ce9a8 | 2008-02-15 12:28:27 +0000 | [diff] [blame] | 532 | if (!T.getTypePtr()->isConstantSizeType()) |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 533 | return; |
| 534 | |
Ted Kremenek | 571f519 | 2008-02-21 18:15:29 +0000 | [diff] [blame] | 535 | |
| 536 | uint64_t size = 1; // Handle sizeof(void) |
| 537 | |
| 538 | if (T != getContext().VoidTy) { |
| 539 | SourceLocation Loc = Ex->getExprLoc(); |
| 540 | size = getContext().getTypeSize(T, Loc) / 8; |
| 541 | } |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 542 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 543 | Nodify(Dst, Ex, Pred, |
| 544 | SetRVal(Pred->getState(), Ex, |
Ted Kremenek | 571f519 | 2008-02-21 18:15:29 +0000 | [diff] [blame] | 545 | NonLVal::MakeVal(ValMgr, size, Ex->getType()))); |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 546 | |
| 547 | } |
| 548 | |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 549 | void GRExprEngine::VisitDeref(UnaryOperator* U, NodeTy* Pred, NodeSet& Dst) { |
| 550 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 551 | Expr* Ex = U->getSubExpr()->IgnoreParens(); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 552 | |
| 553 | NodeSet DstTmp; |
| 554 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 555 | if (!isa<DeclRefExpr>(Ex)) |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 556 | DstTmp.Add(Pred); |
| 557 | else |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 558 | Visit(Ex, Pred, DstTmp); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 559 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 560 | for (NodeSet::iterator I = DstTmp.begin(), DE = DstTmp.end(); I != DE; ++I) { |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 561 | |
| 562 | NodeTy* N = *I; |
| 563 | StateTy St = N->getState(); |
| 564 | |
| 565 | // FIXME: Bifurcate when dereferencing a symbolic with no constraints? |
| 566 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 567 | RVal V = GetRVal(St, Ex); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 568 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 569 | // Check for dereferences of uninitialized values. |
| 570 | |
| 571 | if (V.isUninit()) { |
| 572 | |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 573 | NodeTy* Succ = Builder->generateNode(U, St, N); |
| 574 | |
| 575 | if (Succ) { |
| 576 | Succ->markAsSink(); |
| 577 | UninitDeref.insert(Succ); |
| 578 | } |
| 579 | |
| 580 | continue; |
| 581 | } |
| 582 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 583 | // Check for dereferences of unknown values. Treat as No-Ops. |
| 584 | |
| 585 | if (V.isUnknown()) { |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 586 | Dst.Add(N); |
| 587 | continue; |
| 588 | } |
| 589 | |
| 590 | // After a dereference, one of two possible situations arise: |
| 591 | // (1) A crash, because the pointer was NULL. |
| 592 | // (2) The pointer is not NULL, and the dereference works. |
| 593 | // |
| 594 | // We add these assumptions. |
| 595 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 596 | LVal LV = cast<LVal>(V); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 597 | bool isFeasibleNotNull; |
| 598 | |
| 599 | // "Assume" that the pointer is Not-NULL. |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 600 | |
| 601 | StateTy StNotNull = Assume(St, LV, true, isFeasibleNotNull); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 602 | |
| 603 | if (isFeasibleNotNull) { |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 604 | |
| 605 | // FIXME: Currently symbolic analysis "generates" new symbols |
| 606 | // for the contents of values. We need a better approach. |
| 607 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 608 | Nodify(Dst, U, N, SetRVal(StNotNull, U, |
| 609 | GetRVal(StNotNull, LV, U->getType()))); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 610 | } |
| 611 | |
| 612 | bool isFeasibleNull; |
| 613 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 614 | // Now "assume" that the pointer is NULL. |
| 615 | |
| 616 | StateTy StNull = Assume(St, LV, false, isFeasibleNull); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 617 | |
| 618 | if (isFeasibleNull) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 619 | |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 620 | // We don't use "Nodify" here because the node will be a sink |
| 621 | // and we have no intention of processing it later. |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 622 | |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 623 | NodeTy* NullNode = Builder->generateNode(U, StNull, N); |
| 624 | |
| 625 | if (NullNode) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 626 | |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 627 | NullNode->markAsSink(); |
| 628 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 629 | if (isFeasibleNotNull) ImplicitNullDeref.insert(NullNode); |
| 630 | else ExplicitNullDeref.insert(NullNode); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 631 | } |
| 632 | } |
| 633 | } |
| 634 | } |
| 635 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 636 | void GRExprEngine::VisitUnaryOperator(UnaryOperator* U, NodeTy* Pred, |
| 637 | NodeSet& Dst) { |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 638 | |
Ted Kremenek | 1be5eb9 | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 639 | NodeSet S1; |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 640 | |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 641 | assert (U->getOpcode() != UnaryOperator::Deref); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 642 | assert (U->getOpcode() != UnaryOperator::SizeOf); |
| 643 | assert (U->getOpcode() != UnaryOperator::AlignOf); |
| 644 | |
| 645 | bool use_GetLVal = false; |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 646 | |
| 647 | switch (U->getOpcode()) { |
| 648 | case UnaryOperator::PostInc: |
| 649 | case UnaryOperator::PostDec: |
| 650 | case UnaryOperator::PreInc: |
| 651 | case UnaryOperator::PreDec: |
| 652 | case UnaryOperator::AddrOf: |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 653 | // Evalue subexpression as an LVal. |
| 654 | use_GetLVal = true; |
| 655 | VisitLVal(U->getSubExpr(), Pred, S1); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 656 | break; |
| 657 | |
| 658 | default: |
| 659 | Visit(U->getSubExpr(), Pred, S1); |
| 660 | break; |
| 661 | } |
| 662 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 663 | for (NodeSet::iterator I1 = S1.begin(), E1 = S1.end(); I1 != E1; ++I1) { |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 664 | |
Ted Kremenek | 1be5eb9 | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 665 | NodeTy* N1 = *I1; |
| 666 | StateTy St = N1->getState(); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 667 | |
| 668 | RVal SubV = use_GetLVal ? GetLVal(St, U->getSubExpr()) : |
| 669 | GetRVal(St, U->getSubExpr()); |
| 670 | |
| 671 | if (SubV.isUnknown()) { |
| 672 | Dst.Add(N1); |
| 673 | continue; |
| 674 | } |
| 675 | |
| 676 | if (SubV.isUninit()) { |
| 677 | Nodify(Dst, U, N1, SetRVal(St, U, SubV)); |
| 678 | continue; |
| 679 | } |
Ted Kremenek | 1be5eb9 | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 680 | |
Ted Kremenek | 22640ce | 2008-02-15 22:09:30 +0000 | [diff] [blame] | 681 | if (U->isIncrementDecrementOp()) { |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 682 | |
| 683 | // Handle ++ and -- (both pre- and post-increment). |
| 684 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 685 | LVal SubLV = cast<LVal>(SubV); |
| 686 | RVal V = GetRVal(St, SubLV, U->getType()); |
| 687 | |
Ted Kremenek | b8782e1 | 2008-02-21 19:15:37 +0000 | [diff] [blame] | 688 | if (V.isUnknown()) { |
| 689 | Dst.Add(N1); |
| 690 | continue; |
| 691 | } |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 692 | |
| 693 | // Propagate uninitialized values. |
| 694 | if (V.isUninit()) { |
| 695 | Nodify(Dst, U, N1, SetRVal(St, U, V)); |
| 696 | continue; |
| 697 | } |
| 698 | |
Ted Kremenek | b1669d4 | 2008-02-21 19:29:23 +0000 | [diff] [blame] | 699 | // Handle all other values. |
Ted Kremenek | 22640ce | 2008-02-15 22:09:30 +0000 | [diff] [blame] | 700 | |
| 701 | BinaryOperator::Opcode Op = U->isIncrementOp() ? BinaryOperator::Add |
| 702 | : BinaryOperator::Sub; |
| 703 | |
Ted Kremenek | b1669d4 | 2008-02-21 19:29:23 +0000 | [diff] [blame] | 704 | RVal Result = EvalBinOp(Op, V, MakeConstantVal(1U, U)); |
Ted Kremenek | 22640ce | 2008-02-15 22:09:30 +0000 | [diff] [blame] | 705 | |
| 706 | if (U->isPostfix()) |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 707 | St = SetRVal(SetRVal(St, U, V), SubLV, Result); |
Ted Kremenek | 22640ce | 2008-02-15 22:09:30 +0000 | [diff] [blame] | 708 | else |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 709 | St = SetRVal(SetRVal(St, U, Result), SubLV, Result); |
Ted Kremenek | 22640ce | 2008-02-15 22:09:30 +0000 | [diff] [blame] | 710 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 711 | Nodify(Dst, U, N1, St); |
Ted Kremenek | 22640ce | 2008-02-15 22:09:30 +0000 | [diff] [blame] | 712 | continue; |
| 713 | } |
| 714 | |
| 715 | // Handle all other unary operators. |
| 716 | |
Ted Kremenek | 1be5eb9 | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 717 | switch (U->getOpcode()) { |
Ted Kremenek | 15cb078 | 2008-02-06 22:50:25 +0000 | [diff] [blame] | 718 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 719 | case UnaryOperator::Minus: |
| 720 | St = SetRVal(St, U, EvalMinus(U, cast<NonLVal>(SubV))); |
Ted Kremenek | cacd736 | 2008-01-24 08:20:02 +0000 | [diff] [blame] | 721 | break; |
Ted Kremenek | cacd736 | 2008-01-24 08:20:02 +0000 | [diff] [blame] | 722 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 723 | case UnaryOperator::Not: |
| 724 | St = SetRVal(St, U, EvalComplement(cast<NonLVal>(SubV))); |
Ted Kremenek | 0cd9635 | 2008-02-20 04:12:31 +0000 | [diff] [blame] | 725 | break; |
Ted Kremenek | 0cd9635 | 2008-02-20 04:12:31 +0000 | [diff] [blame] | 726 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 727 | case UnaryOperator::LNot: |
Ted Kremenek | 2cb4664 | 2008-02-04 16:58:30 +0000 | [diff] [blame] | 728 | |
Ted Kremenek | a6683bf | 2008-02-06 17:56:00 +0000 | [diff] [blame] | 729 | // C99 6.5.3.3: "The expression !E is equivalent to (0==E)." |
| 730 | // |
| 731 | // Note: technically we do "E == 0", but this is the same in the |
| 732 | // transfer functions as "0 == E". |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 733 | |
| 734 | if (isa<LVal>(SubV)) { |
| 735 | lval::ConcreteInt V(ValMgr.getZeroWithPtrWidth()); |
| 736 | RVal Result = EvalBinOp(BinaryOperator::EQ, cast<LVal>(SubV), V); |
| 737 | St = SetRVal(St, U, Result); |
Ted Kremenek | a6683bf | 2008-02-06 17:56:00 +0000 | [diff] [blame] | 738 | } |
| 739 | else { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 740 | nonlval::ConcreteInt V(ValMgr.getZeroWithPtrWidth()); |
| 741 | RVal Result = EvalBinOp(BinaryOperator::EQ, cast<NonLVal>(SubV), V); |
| 742 | St = SetRVal(St, U, Result); |
Ted Kremenek | a6683bf | 2008-02-06 17:56:00 +0000 | [diff] [blame] | 743 | } |
| 744 | |
| 745 | break; |
Ted Kremenek | a6683bf | 2008-02-06 17:56:00 +0000 | [diff] [blame] | 746 | |
Ted Kremenek | c48b8e4 | 2008-01-31 02:35:41 +0000 | [diff] [blame] | 747 | case UnaryOperator::AddrOf: { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 748 | assert (isa<LVal>(SubV)); |
| 749 | St = SetRVal(St, U, SubV); |
Ted Kremenek | c48b8e4 | 2008-01-31 02:35:41 +0000 | [diff] [blame] | 750 | break; |
| 751 | } |
Ted Kremenek | 80d52d0 | 2008-02-07 05:48:01 +0000 | [diff] [blame] | 752 | |
Ted Kremenek | 1be5eb9 | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 753 | default: ; |
| 754 | assert (false && "Not implemented."); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | Nodify(Dst, U, N1, St); |
Ted Kremenek | 1be5eb9 | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 758 | } |
| 759 | } |
| 760 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 761 | void GRExprEngine::VisitSizeOfExpr(UnaryOperator* U, NodeTy* Pred, |
| 762 | NodeSet& Dst) { |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 763 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 764 | QualType T = U->getSubExpr()->getType(); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 765 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 766 | // FIXME: Add support for VLAs. |
| 767 | if (!T.getTypePtr()->isConstantSizeType()) |
| 768 | return; |
| 769 | |
| 770 | SourceLocation Loc = U->getExprLoc(); |
| 771 | uint64_t size = getContext().getTypeSize(T, Loc) / 8; |
| 772 | StateTy St = Pred->getState(); |
| 773 | St = SetRVal(St, U, NonLVal::MakeVal(ValMgr, size, U->getType(), Loc)); |
| 774 | |
| 775 | Nodify(Dst, U, Pred, St); |
| 776 | } |
| 777 | |
| 778 | void GRExprEngine::VisitLVal(Expr* Ex, NodeTy* Pred, NodeSet& Dst) { |
| 779 | |
| 780 | assert (Ex != CurrentStmt && !getCFG().isBlkExpr(Ex)); |
| 781 | |
| 782 | Ex = Ex->IgnoreParens(); |
| 783 | |
| 784 | if (isa<DeclRefExpr>(Ex)) { |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 785 | Dst.Add(Pred); |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 786 | return; |
Ted Kremenek | 9b32cd0 | 2008-02-07 04:16:04 +0000 | [diff] [blame] | 787 | } |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 788 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 789 | if (UnaryOperator* U = dyn_cast<UnaryOperator>(Ex)) { |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 790 | if (U->getOpcode() == UnaryOperator::Deref) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 791 | Ex = U->getSubExpr()->IgnoreParens(); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 792 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 793 | if (isa<DeclRefExpr>(Ex)) |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 794 | Dst.Add(Pred); |
| 795 | else |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 796 | Visit(Ex, Pred, Dst); |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 797 | |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 798 | return; |
| 799 | } |
| 800 | } |
| 801 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 802 | Visit(Ex, Pred, Dst); |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 803 | } |
| 804 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 805 | void GRExprEngine::VisitBinaryOperator(BinaryOperator* B, |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 806 | GRExprEngine::NodeTy* Pred, |
| 807 | GRExprEngine::NodeSet& Dst) { |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 808 | NodeSet S1; |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 809 | |
| 810 | if (B->isAssignmentOp()) |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 811 | VisitLVal(B->getLHS(), Pred, S1); |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 812 | else |
| 813 | Visit(B->getLHS(), Pred, S1); |
Ted Kremenek | afba4b2 | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 814 | |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 815 | for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 816 | |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 817 | NodeTy* N1 = *I1; |
Ted Kremenek | e860db8 | 2008-01-17 00:52:48 +0000 | [diff] [blame] | 818 | |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 819 | // When getting the value for the LHS, check if we are in an assignment. |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 820 | // In such cases, we want to (initially) treat the LHS as an LVal, |
| 821 | // so we use GetLVal instead of GetRVal so that DeclRefExpr's are |
| 822 | // evaluated to LValDecl's instead of to an NonLVal. |
| 823 | |
| 824 | RVal LeftV = B->isAssignmentOp() ? GetLVal(N1->getState(), B->getLHS()) |
| 825 | : GetRVal(N1->getState(), B->getLHS()); |
Ted Kremenek | afba4b2 | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 826 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 827 | // Visit the RHS... |
| 828 | |
| 829 | NodeSet S2; |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 830 | Visit(B->getRHS(), N1, S2); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 831 | |
| 832 | // Process the binary operator. |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 833 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 834 | for (NodeSet::iterator I2 = S2.begin(), E2 = S2.end(); I2 != E2; ++I2) { |
Ted Kremenek | 15cb078 | 2008-02-06 22:50:25 +0000 | [diff] [blame] | 835 | |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 836 | NodeTy* N2 = *I2; |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 837 | StateTy St = N2->getState(); |
| 838 | RVal RightV = GetRVal(St, B->getRHS()); |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 839 | |
Ted Kremenek | 15cb078 | 2008-02-06 22:50:25 +0000 | [diff] [blame] | 840 | BinaryOperator::Opcode Op = B->getOpcode(); |
| 841 | |
| 842 | if (Op <= BinaryOperator::Or) { |
| 843 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 844 | // Process non-assignements except commas or short-circuited |
| 845 | // logical expressions (LAnd and LOr). |
| 846 | |
| 847 | RVal Result = EvalBinOp(Op, LeftV, RightV); |
| 848 | |
| 849 | if (Result.isUnknown()) { |
| 850 | Dst.Add(N2); |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 851 | continue; |
| 852 | } |
| 853 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 854 | Nodify(Dst, B, N2, SetRVal(St, B, Result)); |
Ted Kremenek | 15cb078 | 2008-02-06 22:50:25 +0000 | [diff] [blame] | 855 | continue; |
| 856 | } |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 857 | |
| 858 | // Process assignments. |
| 859 | |
| 860 | switch (Op) { |
| 861 | |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 862 | case BinaryOperator::Assign: { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 863 | |
| 864 | // Simple assignments. |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 865 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 866 | if (LeftV.isUninit()) { |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 867 | HandleUninitializedStore(B, N2); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 868 | continue; |
| 869 | } |
| 870 | |
| 871 | if (LeftV.isUnknown()) { |
| 872 | St = SetRVal(St, B, RightV); |
| 873 | break; |
| 874 | } |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 875 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 876 | St = SetRVal(SetRVal(St, B, RightV), cast<LVal>(LeftV), RightV); |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 877 | break; |
| 878 | } |
| 879 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 880 | // Compound assignment operators. |
Ted Kremenek | 19072e0 | 2008-01-29 19:43:15 +0000 | [diff] [blame] | 881 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 882 | default: { |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 883 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 884 | assert (B->isCompoundAssignmentOp()); |
| 885 | |
| 886 | if (LeftV.isUninit()) { |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 887 | HandleUninitializedStore(B, N2); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 888 | continue; |
| 889 | } |
| 890 | |
| 891 | if (LeftV.isUnknown()) { |
| 892 | |
| 893 | // While we do not know the location to store RightV, |
| 894 | // the entire expression does evaluate to RightV. |
| 895 | |
| 896 | if (RightV.isUnknown()) { |
| 897 | Dst.Add(N2); |
| 898 | continue; |
| 899 | } |
| 900 | |
| 901 | St = SetRVal(St, B, RightV); |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 902 | break; |
| 903 | } |
| 904 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 905 | // At this pointer we know that the LHS evaluates to an LVal |
| 906 | // that is neither "Unknown" or "Unintialized." |
| 907 | |
| 908 | LVal LeftLV = cast<LVal>(LeftV); |
| 909 | |
| 910 | // Propagate uninitialized values (right-side). |
| 911 | |
| 912 | if (RightV.isUninit()) { |
| 913 | St = SetRVal(SetRVal(St, B, RightV), LeftLV, RightV); |
Ted Kremenek | 9d4895c | 2008-02-19 20:53:06 +0000 | [diff] [blame] | 914 | break; |
| 915 | } |
| 916 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 917 | // Fetch the value of the LHS (the value of the variable, etc.). |
| 918 | |
| 919 | RVal V = GetRVal(N1->getState(), LeftLV, B->getLHS()->getType()); |
| 920 | |
| 921 | // Propagate uninitialized value (left-side). |
| 922 | |
| 923 | if (V.isUninit()) { |
| 924 | St = SetRVal(St, B, V); |
| 925 | break; |
| 926 | } |
| 927 | |
| 928 | // Propagate unknown values. |
| 929 | |
Ted Kremenek | b8782e1 | 2008-02-21 19:15:37 +0000 | [diff] [blame] | 930 | if (V.isUnknown()) { |
| 931 | Dst.Add(N2); |
| 932 | continue; |
| 933 | } |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 934 | |
| 935 | if (RightV.isUnknown()) { |
| 936 | St = SetRVal(SetRVal(St, LeftLV, RightV), B, RightV); |
| 937 | break; |
| 938 | } |
| 939 | |
| 940 | // Neither the LHS or the RHS have Unknown/Uninit values. Process |
| 941 | // the operation and store the result. |
Ted Kremenek | 15cb078 | 2008-02-06 22:50:25 +0000 | [diff] [blame] | 942 | |
Ted Kremenek | 106f37c | 2008-02-08 07:05:39 +0000 | [diff] [blame] | 943 | if (Op >= BinaryOperator::AndAssign) |
| 944 | ((int&) Op) -= (BinaryOperator::AndAssign - BinaryOperator::And); |
| 945 | else |
Ted Kremenek | 22640ce | 2008-02-15 22:09:30 +0000 | [diff] [blame] | 946 | ((int&) Op) -= BinaryOperator::MulAssign; |
Ted Kremenek | 15cb078 | 2008-02-06 22:50:25 +0000 | [diff] [blame] | 947 | |
Ted Kremenek | 9cfda3f | 2008-02-21 18:43:30 +0000 | [diff] [blame] | 948 | // Get the computation type. |
| 949 | QualType CTy = cast<CompoundAssignOperator>(B)->getComputationType(); |
| 950 | |
| 951 | // Perform promotions. |
| 952 | V = EvalCast(V, CTy); |
Ted Kremenek | 666ab92 | 2008-02-21 18:46:24 +0000 | [diff] [blame] | 953 | RightV = EvalCast(RightV, CTy); |
Ted Kremenek | 9cfda3f | 2008-02-21 18:43:30 +0000 | [diff] [blame] | 954 | |
| 955 | // Evaluate operands and promote to result type. |
| 956 | RVal Result = EvalCast(EvalBinOp(Op, V, RightV), B->getType()); |
| 957 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 958 | St = SetRVal(SetRVal(St, B, Result), LeftLV, Result); |
Ted Kremenek | 15cb078 | 2008-02-06 22:50:25 +0000 | [diff] [blame] | 959 | } |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 960 | } |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 961 | |
| 962 | Nodify(Dst, B, N2, St); |
Ted Kremenek | afba4b2 | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 963 | } |
Ted Kremenek | 68d70a8 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 964 | } |
Ted Kremenek | 68d70a8 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 965 | } |
Ted Kremenek | d2500ab | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 966 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 967 | void GRExprEngine::HandleUninitializedStore(Stmt* S, NodeTy* Pred) { |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 968 | NodeTy* N = Builder->generateNode(S, Pred->getState(), Pred); |
| 969 | N->markAsSink(); |
| 970 | UninitStores.insert(N); |
| 971 | } |
Ted Kremenek | be96245 | 2008-01-16 19:42:59 +0000 | [diff] [blame] | 972 | |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 973 | void GRExprEngine::Visit(Stmt* S, NodeTy* Pred, NodeSet& Dst) { |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 974 | |
| 975 | // FIXME: add metadata to the CFG so that we can disable |
| 976 | // this check when we KNOW that there is no block-level subexpression. |
| 977 | // The motivation is that this check requires a hashtable lookup. |
| 978 | |
| 979 | if (S != CurrentStmt && getCFG().isBlkExpr(S)) { |
| 980 | Dst.Add(Pred); |
| 981 | return; |
| 982 | } |
| 983 | |
| 984 | switch (S->getStmtClass()) { |
Ted Kremenek | 5bde36b | 2008-02-12 21:37:25 +0000 | [diff] [blame] | 985 | |
| 986 | default: |
| 987 | // Cases we intentionally have "default" handle: |
Ted Kremenek | 18044ff | 2008-02-19 02:01:16 +0000 | [diff] [blame] | 988 | // AddrLabelExpr |
Ted Kremenek | 5bde36b | 2008-02-12 21:37:25 +0000 | [diff] [blame] | 989 | |
| 990 | Dst.Add(Pred); // No-op. Simply propagate the current state unchanged. |
| 991 | break; |
| 992 | |
Ted Kremenek | 744a786 | 2008-02-08 20:29:23 +0000 | [diff] [blame] | 993 | case Stmt::BinaryOperatorClass: { |
| 994 | BinaryOperator* B = cast<BinaryOperator>(S); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 995 | |
Ted Kremenek | 744a786 | 2008-02-08 20:29:23 +0000 | [diff] [blame] | 996 | if (B->isLogicalOp()) { |
| 997 | VisitLogicalExpr(B, Pred, Dst); |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 998 | break; |
| 999 | } |
Ted Kremenek | 744a786 | 2008-02-08 20:29:23 +0000 | [diff] [blame] | 1000 | else if (B->getOpcode() == BinaryOperator::Comma) { |
Ted Kremenek | 106f37c | 2008-02-08 07:05:39 +0000 | [diff] [blame] | 1001 | StateTy St = Pred->getState(); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1002 | Nodify(Dst, B, Pred, SetRVal(St, B, GetRVal(St, B->getRHS()))); |
Ted Kremenek | 106f37c | 2008-02-08 07:05:39 +0000 | [diff] [blame] | 1003 | break; |
| 1004 | } |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 1005 | |
| 1006 | VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); |
| 1007 | break; |
| 1008 | } |
Ted Kremenek | d9268e3 | 2008-02-19 01:44:53 +0000 | [diff] [blame] | 1009 | |
| 1010 | case Stmt::CallExprClass: { |
| 1011 | CallExpr* C = cast<CallExpr>(S); |
| 1012 | VisitCall(C, Pred, C->arg_begin(), C->arg_end(), Dst); |
| 1013 | break; |
| 1014 | } |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 1015 | |
| 1016 | case Stmt::CastExprClass: { |
| 1017 | CastExpr* C = cast<CastExpr>(S); |
| 1018 | VisitCast(C, C->getSubExpr(), Pred, Dst); |
| 1019 | break; |
Ted Kremenek | 744a786 | 2008-02-08 20:29:23 +0000 | [diff] [blame] | 1020 | } |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 1021 | |
Ted Kremenek | 18044ff | 2008-02-19 02:01:16 +0000 | [diff] [blame] | 1022 | // While explicitly creating a node+state for visiting a CharacterLiteral |
| 1023 | // seems wasteful, it also solves a bunch of problems when handling |
| 1024 | // the ?, &&, and ||. |
| 1025 | |
| 1026 | case Stmt::CharacterLiteralClass: { |
| 1027 | CharacterLiteral* C = cast<CharacterLiteral>(S); |
| 1028 | StateTy St = Pred->getState(); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1029 | NonLVal X = NonLVal::MakeVal(ValMgr, C->getValue(), C->getType(), |
Ted Kremenek | 18044ff | 2008-02-19 02:01:16 +0000 | [diff] [blame] | 1030 | C->getLoc()); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1031 | Nodify(Dst, C, Pred, SetRVal(St, C, X)); |
Ted Kremenek | 18044ff | 2008-02-19 02:01:16 +0000 | [diff] [blame] | 1032 | break; |
| 1033 | } |
| 1034 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1035 | // FIXME: ChooseExpr is really a constant. We need to fix |
| 1036 | // the CFG do not model them as explicit control-flow. |
| 1037 | |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 1038 | case Stmt::ChooseExprClass: { // __builtin_choose_expr |
| 1039 | ChooseExpr* C = cast<ChooseExpr>(S); |
| 1040 | VisitGuardedExpr(C, C->getLHS(), C->getRHS(), Pred, Dst); |
| 1041 | break; |
| 1042 | } |
Ted Kremenek | 1f0eb99 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 1043 | |
Ted Kremenek | 9914e9c | 2008-01-23 23:38:00 +0000 | [diff] [blame] | 1044 | case Stmt::CompoundAssignOperatorClass: |
Ted Kremenek | f031b87 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 1045 | VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); |
| 1046 | break; |
| 1047 | |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 1048 | case Stmt::ConditionalOperatorClass: { // '?' operator |
| 1049 | ConditionalOperator* C = cast<ConditionalOperator>(S); |
| 1050 | VisitGuardedExpr(C, C->getLHS(), C->getRHS(), Pred, Dst); |
| 1051 | break; |
| 1052 | } |
| 1053 | |
| 1054 | case Stmt::DeclRefExprClass: |
| 1055 | VisitDeclRefExpr(cast<DeclRefExpr>(S), Pred, Dst); |
| 1056 | break; |
| 1057 | |
| 1058 | case Stmt::DeclStmtClass: |
| 1059 | VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst); |
| 1060 | break; |
| 1061 | |
Ted Kremenek | 18044ff | 2008-02-19 02:01:16 +0000 | [diff] [blame] | 1062 | // While explicitly creating a node+state for visiting an IntegerLiteral |
| 1063 | // seems wasteful, it also solves a bunch of problems when handling |
| 1064 | // the ?, &&, and ||. |
| 1065 | |
| 1066 | case Stmt::IntegerLiteralClass: { |
| 1067 | StateTy St = Pred->getState(); |
| 1068 | IntegerLiteral* I = cast<IntegerLiteral>(S); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1069 | NonLVal X = NonLVal::MakeVal(ValMgr, I); |
| 1070 | Nodify(Dst, I, Pred, SetRVal(St, I, X)); |
Ted Kremenek | 18044ff | 2008-02-19 02:01:16 +0000 | [diff] [blame] | 1071 | break; |
| 1072 | } |
| 1073 | |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 1074 | case Stmt::ImplicitCastExprClass: { |
| 1075 | ImplicitCastExpr* C = cast<ImplicitCastExpr>(S); |
| 1076 | VisitCast(C, C->getSubExpr(), Pred, Dst); |
| 1077 | break; |
| 1078 | } |
| 1079 | |
| 1080 | case Stmt::ParenExprClass: |
| 1081 | Visit(cast<ParenExpr>(S)->getSubExpr(), Pred, Dst); |
| 1082 | break; |
| 1083 | |
| 1084 | case Stmt::SizeOfAlignOfTypeExprClass: |
| 1085 | VisitSizeOfAlignOfTypeExpr(cast<SizeOfAlignOfTypeExpr>(S), Pred, Dst); |
| 1086 | break; |
| 1087 | |
Ted Kremenek | 106f37c | 2008-02-08 07:05:39 +0000 | [diff] [blame] | 1088 | case Stmt::StmtExprClass: { |
Ted Kremenek | 744a786 | 2008-02-08 20:29:23 +0000 | [diff] [blame] | 1089 | StmtExpr* SE = cast<StmtExpr>(S); |
| 1090 | |
Ted Kremenek | 106f37c | 2008-02-08 07:05:39 +0000 | [diff] [blame] | 1091 | StateTy St = Pred->getState(); |
Ted Kremenek | 744a786 | 2008-02-08 20:29:23 +0000 | [diff] [blame] | 1092 | Expr* LastExpr = cast<Expr>(*SE->getSubStmt()->body_rbegin()); |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1093 | Nodify(Dst, SE, Pred, SetRVal(St, SE, GetRVal(St, LastExpr))); |
Ted Kremenek | 106f37c | 2008-02-08 07:05:39 +0000 | [diff] [blame] | 1094 | break; |
| 1095 | } |
| 1096 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1097 | // FIXME: We may wish to always bind state to ReturnStmts so |
| 1098 | // that users can quickly query what was the state at the |
| 1099 | // exit points of a function. |
| 1100 | |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 1101 | case Stmt::ReturnStmtClass: { |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 1102 | if (Expr* R = cast<ReturnStmt>(S)->getRetValue()) |
| 1103 | Visit(R, Pred, Dst); |
| 1104 | else |
| 1105 | Dst.Add(Pred); |
| 1106 | |
| 1107 | break; |
Ted Kremenek | fd85f29 | 2008-02-12 19:49:57 +0000 | [diff] [blame] | 1108 | } |
Ted Kremenek | e1f38b6 | 2008-02-07 01:08:27 +0000 | [diff] [blame] | 1109 | |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 1110 | case Stmt::UnaryOperatorClass: { |
| 1111 | UnaryOperator* U = cast<UnaryOperator>(S); |
| 1112 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1113 | switch (U->getOpcode()) { |
| 1114 | case UnaryOperator::Deref: VisitDeref(U, Pred, Dst); break; |
| 1115 | case UnaryOperator::Plus: Visit(U->getSubExpr(), Pred, Dst); break; |
| 1116 | case UnaryOperator::SizeOf: VisitSizeOfExpr(U, Pred, Dst); break; |
| 1117 | default: VisitUnaryOperator(U, Pred, Dst); break; |
| 1118 | } |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 1119 | |
Ted Kremenek | b9c30e3 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 1120 | break; |
Ted Kremenek | b996ebc | 2008-02-20 04:02:35 +0000 | [diff] [blame] | 1121 | } |
Ted Kremenek | ab8ed95 | 2008-01-17 18:25:22 +0000 | [diff] [blame] | 1122 | } |
Ted Kremenek | be96245 | 2008-01-16 19:42:59 +0000 | [diff] [blame] | 1123 | } |
| 1124 | |
Ted Kremenek | d2500ab | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 1125 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1126 | // "Assume" logic. |
| 1127 | //===----------------------------------------------------------------------===// |
| 1128 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1129 | GRExprEngine::StateTy GRExprEngine::Assume(StateTy St, LVal Cond, |
Ted Kremenek | bc965a6 | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 1130 | bool Assumption, |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1131 | bool& isFeasible) { |
Ted Kremenek | 6e24a80 | 2008-02-01 06:36:40 +0000 | [diff] [blame] | 1132 | switch (Cond.getSubKind()) { |
| 1133 | default: |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1134 | assert (false && "'Assume' not implemented for this LVal."); |
Ted Kremenek | 6e24a80 | 2008-02-01 06:36:40 +0000 | [diff] [blame] | 1135 | return St; |
| 1136 | |
Ted Kremenek | 13f3156 | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 1137 | case lval::SymbolValKind: |
| 1138 | if (Assumption) |
| 1139 | return AssumeSymNE(St, cast<lval::SymbolVal>(Cond).getSymbol(), |
| 1140 | ValMgr.getZeroWithPtrWidth(), isFeasible); |
| 1141 | else |
| 1142 | return AssumeSymEQ(St, cast<lval::SymbolVal>(Cond).getSymbol(), |
| 1143 | ValMgr.getZeroWithPtrWidth(), isFeasible); |
| 1144 | |
Ted Kremenek | 0033fbb | 2008-02-06 04:31:33 +0000 | [diff] [blame] | 1145 | |
Ted Kremenek | 1b63a3b | 2008-02-05 21:52:21 +0000 | [diff] [blame] | 1146 | case lval::DeclValKind: |
Ted Kremenek | 6e24a80 | 2008-02-01 06:36:40 +0000 | [diff] [blame] | 1147 | isFeasible = Assumption; |
| 1148 | return St; |
Ted Kremenek | 13f3156 | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 1149 | |
Ted Kremenek | 1b63a3b | 2008-02-05 21:52:21 +0000 | [diff] [blame] | 1150 | case lval::ConcreteIntKind: { |
| 1151 | bool b = cast<lval::ConcreteInt>(Cond).getValue() != 0; |
Ted Kremenek | 6e24a80 | 2008-02-01 06:36:40 +0000 | [diff] [blame] | 1152 | isFeasible = b ? Assumption : !Assumption; |
| 1153 | return St; |
| 1154 | } |
| 1155 | } |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1156 | } |
| 1157 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1158 | GRExprEngine::StateTy GRExprEngine::Assume(StateTy St, NonLVal Cond, |
Ted Kremenek | 13f3156 | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 1159 | bool Assumption, |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1160 | bool& isFeasible) { |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1161 | switch (Cond.getSubKind()) { |
| 1162 | default: |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1163 | assert (false && "'Assume' not implemented for this NonLVal."); |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1164 | return St; |
| 1165 | |
Ted Kremenek | ab359c1 | 2008-02-06 17:32:17 +0000 | [diff] [blame] | 1166 | |
| 1167 | case nonlval::SymbolValKind: { |
Ted Kremenek | 5bde36b | 2008-02-12 21:37:25 +0000 | [diff] [blame] | 1168 | nonlval::SymbolVal& SV = cast<nonlval::SymbolVal>(Cond); |
Ted Kremenek | ab359c1 | 2008-02-06 17:32:17 +0000 | [diff] [blame] | 1169 | SymbolID sym = SV.getSymbol(); |
| 1170 | |
| 1171 | if (Assumption) |
| 1172 | return AssumeSymNE(St, sym, ValMgr.getValue(0, SymMgr.getType(sym)), |
| 1173 | isFeasible); |
| 1174 | else |
| 1175 | return AssumeSymEQ(St, sym, ValMgr.getValue(0, SymMgr.getType(sym)), |
| 1176 | isFeasible); |
| 1177 | } |
| 1178 | |
Ted Kremenek | 0033fbb | 2008-02-06 04:31:33 +0000 | [diff] [blame] | 1179 | case nonlval::SymIntConstraintValKind: |
| 1180 | return |
| 1181 | AssumeSymInt(St, Assumption, |
| 1182 | cast<nonlval::SymIntConstraintVal>(Cond).getConstraint(), |
| 1183 | isFeasible); |
| 1184 | |
Ted Kremenek | 1b63a3b | 2008-02-05 21:52:21 +0000 | [diff] [blame] | 1185 | case nonlval::ConcreteIntKind: { |
| 1186 | bool b = cast<nonlval::ConcreteInt>(Cond).getValue() != 0; |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1187 | isFeasible = b ? Assumption : !Assumption; |
| 1188 | return St; |
| 1189 | } |
| 1190 | } |
| 1191 | } |
| 1192 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1193 | GRExprEngine::StateTy |
| 1194 | GRExprEngine::AssumeSymNE(StateTy St, SymbolID sym, |
Ted Kremenek | 13f3156 | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 1195 | const llvm::APSInt& V, bool& isFeasible) { |
Ted Kremenek | bc965a6 | 2008-02-18 22:57:02 +0000 | [diff] [blame] | 1196 | |
Ted Kremenek | 13f3156 | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 1197 | // First, determine if sym == X, where X != V. |
| 1198 | if (const llvm::APSInt* X = St.getSymVal(sym)) { |
| 1199 | isFeasible = *X != V; |
| 1200 | return St; |
| 1201 | } |
| 1202 | |
| 1203 | // Second, determine if sym != V. |
| 1204 | if (St.isNotEqual(sym, V)) { |
| 1205 | isFeasible = true; |
| 1206 | return St; |
| 1207 | } |
| 1208 | |
| 1209 | // If we reach here, sym is not a constant and we don't know if it is != V. |
| 1210 | // Make that assumption. |
| 1211 | |
| 1212 | isFeasible = true; |
| 1213 | return StateMgr.AddNE(St, sym, V); |
| 1214 | } |
| 1215 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1216 | GRExprEngine::StateTy |
| 1217 | GRExprEngine::AssumeSymEQ(StateTy St, SymbolID sym, |
Ted Kremenek | 13f3156 | 2008-02-06 00:54:14 +0000 | [diff] [blame] | 1218 | const llvm::APSInt& V, bool& isFeasible) { |
| 1219 | |
| 1220 | // First, determine if sym == X, where X != V. |
| 1221 | if (const llvm::APSInt* X = St.getSymVal(sym)) { |
| 1222 | isFeasible = *X == V; |
| 1223 | return St; |
| 1224 | } |
| 1225 | |
| 1226 | // Second, determine if sym != V. |
| 1227 | if (St.isNotEqual(sym, V)) { |
| 1228 | isFeasible = false; |
| 1229 | return St; |
| 1230 | } |
| 1231 | |
| 1232 | // If we reach here, sym is not a constant and we don't know if it is == V. |
| 1233 | // Make that assumption. |
| 1234 | |
| 1235 | isFeasible = true; |
| 1236 | return StateMgr.AddEQ(St, sym, V); |
| 1237 | } |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1238 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1239 | GRExprEngine::StateTy |
| 1240 | GRExprEngine::AssumeSymInt(StateTy St, bool Assumption, |
Ted Kremenek | 0033fbb | 2008-02-06 04:31:33 +0000 | [diff] [blame] | 1241 | const SymIntConstraint& C, bool& isFeasible) { |
| 1242 | |
| 1243 | switch (C.getOpcode()) { |
| 1244 | default: |
| 1245 | // No logic yet for other operators. |
| 1246 | return St; |
| 1247 | |
| 1248 | case BinaryOperator::EQ: |
| 1249 | if (Assumption) |
| 1250 | return AssumeSymEQ(St, C.getSymbol(), C.getInt(), isFeasible); |
| 1251 | else |
| 1252 | return AssumeSymNE(St, C.getSymbol(), C.getInt(), isFeasible); |
| 1253 | |
| 1254 | case BinaryOperator::NE: |
| 1255 | if (Assumption) |
| 1256 | return AssumeSymNE(St, C.getSymbol(), C.getInt(), isFeasible); |
| 1257 | else |
| 1258 | return AssumeSymEQ(St, C.getSymbol(), C.getInt(), isFeasible); |
| 1259 | } |
| 1260 | } |
| 1261 | |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1262 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 3862eb1 | 2008-02-14 22:36:46 +0000 | [diff] [blame] | 1263 | // Visualization. |
Ted Kremenek | d2500ab | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 1264 | //===----------------------------------------------------------------------===// |
| 1265 | |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1266 | #ifndef NDEBUG |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1267 | static GRExprEngine* GraphPrintCheckerState; |
Ted Kremenek | 428d39e | 2008-01-30 23:24:39 +0000 | [diff] [blame] | 1268 | |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1269 | namespace llvm { |
| 1270 | template<> |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1271 | struct VISIBILITY_HIDDEN DOTGraphTraits<GRExprEngine::NodeTy*> : |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1272 | public DefaultDOTGraphTraits { |
Ted Kremenek | 08cfd83 | 2008-02-08 21:10:02 +0000 | [diff] [blame] | 1273 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1274 | static void PrintVarBindings(std::ostream& Out, GRExprEngine::StateTy St) { |
Ted Kremenek | 08cfd83 | 2008-02-08 21:10:02 +0000 | [diff] [blame] | 1275 | |
| 1276 | Out << "Variables:\\l"; |
| 1277 | |
Ted Kremenek | 3ec7be9 | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 1278 | bool isFirst = true; |
| 1279 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1280 | for (GRExprEngine::StateTy::vb_iterator I=St.vb_begin(), |
Ted Kremenek | 08cfd83 | 2008-02-08 21:10:02 +0000 | [diff] [blame] | 1281 | E=St.vb_end(); I!=E;++I) { |
| 1282 | |
| 1283 | if (isFirst) |
| 1284 | isFirst = false; |
| 1285 | else |
| 1286 | Out << "\\l"; |
| 1287 | |
| 1288 | Out << ' ' << I.getKey()->getName() << " : "; |
| 1289 | I.getData().print(Out); |
| 1290 | } |
| 1291 | |
| 1292 | } |
| 1293 | |
Ted Kremenek | 17c5f11 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 1294 | |
Ted Kremenek | 6d40992 | 2008-02-13 18:06:44 +0000 | [diff] [blame] | 1295 | static void PrintSubExprBindings(std::ostream& Out, GRExprEngine::StateTy St){ |
Ted Kremenek | 17c5f11 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 1296 | |
| 1297 | bool isFirst = true; |
| 1298 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1299 | for (GRExprEngine::StateTy::seb_iterator I=St.seb_begin(), E=St.seb_end(); |
Ted Kremenek | 17c5f11 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 1300 | I != E;++I) { |
| 1301 | |
| 1302 | if (isFirst) { |
| 1303 | Out << "\\l\\lSub-Expressions:\\l"; |
| 1304 | isFirst = false; |
| 1305 | } |
| 1306 | else |
| 1307 | Out << "\\l"; |
| 1308 | |
| 1309 | Out << " (" << (void*) I.getKey() << ") "; |
| 1310 | I.getKey()->printPretty(Out); |
| 1311 | Out << " : "; |
| 1312 | I.getData().print(Out); |
| 1313 | } |
| 1314 | } |
| 1315 | |
Ted Kremenek | 6d40992 | 2008-02-13 18:06:44 +0000 | [diff] [blame] | 1316 | static void PrintBlkExprBindings(std::ostream& Out, GRExprEngine::StateTy St){ |
Ted Kremenek | 17c5f11 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 1317 | |
Ted Kremenek | 08cfd83 | 2008-02-08 21:10:02 +0000 | [diff] [blame] | 1318 | bool isFirst = true; |
| 1319 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1320 | for (GRExprEngine::StateTy::beb_iterator I=St.beb_begin(), E=St.beb_end(); |
Ted Kremenek | 17c5f11 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 1321 | I != E; ++I) { |
Ted Kremenek | 3ec7be9 | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 1322 | if (isFirst) { |
Ted Kremenek | 17c5f11 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 1323 | Out << "\\l\\lBlock-level Expressions:\\l"; |
Ted Kremenek | 3ec7be9 | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 1324 | isFirst = false; |
| 1325 | } |
| 1326 | else |
| 1327 | Out << "\\l"; |
Ted Kremenek | 08cfd83 | 2008-02-08 21:10:02 +0000 | [diff] [blame] | 1328 | |
Ted Kremenek | 17c5f11 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 1329 | Out << " (" << (void*) I.getKey() << ") "; |
| 1330 | I.getKey()->printPretty(Out); |
Ted Kremenek | 3ec7be9 | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 1331 | Out << " : "; |
| 1332 | I.getData().print(Out); |
| 1333 | } |
| 1334 | } |
| 1335 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1336 | static void PrintEQ(std::ostream& Out, GRExprEngine::StateTy St) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1337 | ValueState::ConstEqTy CE = St.getImpl()->ConstEq; |
Ted Kremenek | e653669 | 2008-02-06 03:56:15 +0000 | [diff] [blame] | 1338 | |
| 1339 | if (CE.isEmpty()) |
| 1340 | return; |
| 1341 | |
| 1342 | Out << "\\l\\|'==' constraints:"; |
| 1343 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1344 | for (ValueState::ConstEqTy::iterator I=CE.begin(), E=CE.end(); I!=E;++I) |
Ted Kremenek | e653669 | 2008-02-06 03:56:15 +0000 | [diff] [blame] | 1345 | Out << "\\l $" << I.getKey() << " : " << I.getData()->toString(); |
| 1346 | } |
| 1347 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1348 | static void PrintNE(std::ostream& Out, GRExprEngine::StateTy St) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1349 | ValueState::ConstNotEqTy NE = St.getImpl()->ConstNotEq; |
Ted Kremenek | e653669 | 2008-02-06 03:56:15 +0000 | [diff] [blame] | 1350 | |
| 1351 | if (NE.isEmpty()) |
| 1352 | return; |
| 1353 | |
| 1354 | Out << "\\l\\|'!=' constraints:"; |
| 1355 | |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1356 | for (ValueState::ConstNotEqTy::iterator I=NE.begin(), EI=NE.end(); |
Ted Kremenek | e653669 | 2008-02-06 03:56:15 +0000 | [diff] [blame] | 1357 | I != EI; ++I){ |
| 1358 | |
| 1359 | Out << "\\l $" << I.getKey() << " : "; |
| 1360 | bool isFirst = true; |
| 1361 | |
| 1362 | ValueState::IntSetTy::iterator J=I.getData().begin(), |
| 1363 | EJ=I.getData().end(); |
| 1364 | for ( ; J != EJ; ++J) { |
| 1365 | if (isFirst) isFirst = false; |
| 1366 | else Out << ", "; |
| 1367 | |
| 1368 | Out << (*J)->toString(); |
| 1369 | } |
| 1370 | } |
Ted Kremenek | a853de6 | 2008-02-14 22:54:53 +0000 | [diff] [blame] | 1371 | } |
| 1372 | |
| 1373 | static std::string getNodeAttributes(const GRExprEngine::NodeTy* N, void*) { |
| 1374 | |
| 1375 | if (GraphPrintCheckerState->isImplicitNullDeref(N) || |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 1376 | GraphPrintCheckerState->isExplicitNullDeref(N) || |
Ted Kremenek | 9d4895c | 2008-02-19 20:53:06 +0000 | [diff] [blame] | 1377 | GraphPrintCheckerState->isUninitDeref(N) || |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 1378 | GraphPrintCheckerState->isUninitStore(N) || |
| 1379 | GraphPrintCheckerState->isUninitControlFlow(N)) |
Ted Kremenek | a853de6 | 2008-02-14 22:54:53 +0000 | [diff] [blame] | 1380 | return "color=\"red\",style=\"filled\""; |
| 1381 | |
| 1382 | return ""; |
| 1383 | } |
Ted Kremenek | e653669 | 2008-02-06 03:56:15 +0000 | [diff] [blame] | 1384 | |
Ted Kremenek | 30fa28b | 2008-02-13 17:41:41 +0000 | [diff] [blame] | 1385 | static std::string getNodeLabel(const GRExprEngine::NodeTy* N, void*) { |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1386 | std::ostringstream Out; |
Ted Kremenek | bacd6cd | 2008-01-23 22:30:44 +0000 | [diff] [blame] | 1387 | |
| 1388 | // Program Location. |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1389 | ProgramPoint Loc = N->getLocation(); |
| 1390 | |
| 1391 | switch (Loc.getKind()) { |
| 1392 | case ProgramPoint::BlockEntranceKind: |
| 1393 | Out << "Block Entrance: B" |
| 1394 | << cast<BlockEntrance>(Loc).getBlock()->getBlockID(); |
| 1395 | break; |
| 1396 | |
| 1397 | case ProgramPoint::BlockExitKind: |
| 1398 | assert (false); |
| 1399 | break; |
| 1400 | |
| 1401 | case ProgramPoint::PostStmtKind: { |
| 1402 | const PostStmt& L = cast<PostStmt>(Loc); |
Ted Kremenek | 3ec7be9 | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 1403 | Out << L.getStmt()->getStmtClassName() << ':' |
| 1404 | << (void*) L.getStmt() << ' '; |
| 1405 | |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1406 | L.getStmt()->printPretty(Out); |
Ted Kremenek | 80d52d0 | 2008-02-07 05:48:01 +0000 | [diff] [blame] | 1407 | |
| 1408 | if (GraphPrintCheckerState->isImplicitNullDeref(N)) { |
| 1409 | Out << "\\|Implicit-Null Dereference.\\l"; |
| 1410 | } |
Ted Kremenek | ae7bdc1 | 2008-02-07 06:04:18 +0000 | [diff] [blame] | 1411 | else if (GraphPrintCheckerState->isExplicitNullDeref(N)) { |
| 1412 | Out << "\\|Explicit-Null Dereference.\\l"; |
| 1413 | } |
Ted Kremenek | 9d4895c | 2008-02-19 20:53:06 +0000 | [diff] [blame] | 1414 | else if (GraphPrintCheckerState->isUninitDeref(N)) { |
| 1415 | Out << "\\|Dereference of uninitialied value.\\l"; |
| 1416 | } |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 1417 | else if (GraphPrintCheckerState->isUninitStore(N)) { |
Ted Kremenek | 07baa25 | 2008-02-21 18:02:17 +0000 | [diff] [blame] | 1418 | Out << "\\|Store to Uninitialized LVal."; |
Ted Kremenek | bf988d0 | 2008-02-19 00:22:37 +0000 | [diff] [blame] | 1419 | } |
Ted Kremenek | 80d52d0 | 2008-02-07 05:48:01 +0000 | [diff] [blame] | 1420 | |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1421 | break; |
| 1422 | } |
| 1423 | |
| 1424 | default: { |
| 1425 | const BlockEdge& E = cast<BlockEdge>(Loc); |
| 1426 | Out << "Edge: (B" << E.getSrc()->getBlockID() << ", B" |
| 1427 | << E.getDst()->getBlockID() << ')'; |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1428 | |
| 1429 | if (Stmt* T = E.getSrc()->getTerminator()) { |
| 1430 | Out << "\\|Terminator: "; |
| 1431 | E.getSrc()->printTerminator(Out); |
| 1432 | |
Ted Kremenek | aee121c | 2008-02-13 23:08:21 +0000 | [diff] [blame] | 1433 | if (isa<SwitchStmt>(T)) { |
| 1434 | Stmt* Label = E.getDst()->getLabel(); |
| 1435 | |
| 1436 | if (Label) { |
| 1437 | if (CaseStmt* C = dyn_cast<CaseStmt>(Label)) { |
| 1438 | Out << "\\lcase "; |
| 1439 | C->getLHS()->printPretty(Out); |
| 1440 | |
| 1441 | if (Stmt* RHS = C->getRHS()) { |
| 1442 | Out << " .. "; |
| 1443 | RHS->printPretty(Out); |
| 1444 | } |
| 1445 | |
| 1446 | Out << ":"; |
| 1447 | } |
| 1448 | else { |
| 1449 | assert (isa<DefaultStmt>(Label)); |
| 1450 | Out << "\\ldefault:"; |
| 1451 | } |
| 1452 | } |
| 1453 | else |
| 1454 | Out << "\\l(implicit) default:"; |
| 1455 | } |
| 1456 | else if (isa<IndirectGotoStmt>(T)) { |
Ted Kremenek | 9096097 | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1457 | // FIXME |
| 1458 | } |
| 1459 | else { |
| 1460 | Out << "\\lCondition: "; |
| 1461 | if (*E.getSrc()->succ_begin() == E.getDst()) |
| 1462 | Out << "true"; |
| 1463 | else |
| 1464 | Out << "false"; |
| 1465 | } |
| 1466 | |
| 1467 | Out << "\\l"; |
| 1468 | } |
Ted Kremenek | 428d39e | 2008-01-30 23:24:39 +0000 | [diff] [blame] | 1469 | |
| 1470 | if (GraphPrintCheckerState->isUninitControlFlow(N)) { |
| 1471 | Out << "\\|Control-flow based on\\lUninitialized value.\\l"; |
| 1472 | } |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1473 | } |
| 1474 | } |
| 1475 | |
Ted Kremenek | 2d8dce3 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 1476 | Out << "\\|StateID: " << (void*) N->getState().getImpl() << "\\|"; |
Ted Kremenek | 08cfd83 | 2008-02-08 21:10:02 +0000 | [diff] [blame] | 1477 | |
Ted Kremenek | 17c5f11 | 2008-02-11 19:21:59 +0000 | [diff] [blame] | 1478 | N->getState().printDOT(Out); |
Ted Kremenek | bacd6cd | 2008-01-23 22:30:44 +0000 | [diff] [blame] | 1479 | |
Ted Kremenek | bacd6cd | 2008-01-23 22:30:44 +0000 | [diff] [blame] | 1480 | Out << "\\l"; |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1481 | return Out.str(); |
| 1482 | } |
| 1483 | }; |
| 1484 | } // end llvm namespace |
| 1485 | #endif |
| 1486 | |
Ted Kremenek | 3862eb1 | 2008-02-14 22:36:46 +0000 | [diff] [blame] | 1487 | void GRExprEngine::ViewGraph() { |
Ted Kremenek | dd9e97d | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1488 | #ifndef NDEBUG |
Ted Kremenek | 3862eb1 | 2008-02-14 22:36:46 +0000 | [diff] [blame] | 1489 | GraphPrintCheckerState = this; |
| 1490 | llvm::ViewGraph(*G.roots_begin(), "GRExprEngine"); |
Ted Kremenek | 428d39e | 2008-01-30 23:24:39 +0000 | [diff] [blame] | 1491 | GraphPrintCheckerState = NULL; |
Ted Kremenek | 3862eb1 | 2008-02-14 22:36:46 +0000 | [diff] [blame] | 1492 | #endif |
Ted Kremenek | d2500ab | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 1493 | } |