blob: d841eec801eb67806fd10c6c190e7cc43d441ff5 [file] [log] [blame]
Ted Kremenekd27f8162008-01-15 23:55:06 +00001//===-- GRConstants.cpp - Simple, Path-Sens. Constant Prop. ------*- C++ -*-==//
Ted Kremenek64924852008-01-31 02:35:41 +00002//
Ted Kremenek4af84312008-01-31 06:49:09 +00003// The LLVM Compiler Infrastructure
Ted Kremenekd27f8162008-01-15 23:55:06 +00004//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Constant Propagation via Graph Reachability
11//
12// This files defines a simple analysis that performs path-sensitive
13// constant propagation within a function. An example use of this analysis
14// is to perform simple checks for NULL dereferences.
15//
16//===----------------------------------------------------------------------===//
17
Ted Kremeneka90ccfe2008-01-31 19:34:24 +000018#include "RValues.h"
19#include "ValueState.h"
20
Ted Kremenekd27f8162008-01-15 23:55:06 +000021#include "clang/Analysis/PathSensitive/GREngine.h"
22#include "clang/AST/Expr.h"
Ted Kremenek874d63f2008-01-24 02:02:54 +000023#include "clang/AST/ASTContext.h"
Ted Kremenekd27f8162008-01-15 23:55:06 +000024#include "clang/Analysis/Analyses/LiveVariables.h"
Ted Kremenekd27f8162008-01-15 23:55:06 +000025
26#include "llvm/Support/Casting.h"
27#include "llvm/Support/DataTypes.h"
28#include "llvm/ADT/APSInt.h"
29#include "llvm/ADT/FoldingSet.h"
30#include "llvm/ADT/ImmutableMap.h"
Ted Kremenek3c6c6722008-01-16 17:56:25 +000031#include "llvm/ADT/SmallVector.h"
Ted Kremenekb38911f2008-01-30 23:03:39 +000032#include "llvm/ADT/SmallPtrSet.h"
Ted Kremenekab2b8c52008-01-23 19:59:44 +000033#include "llvm/Support/Allocator.h"
Ted Kremenekd27f8162008-01-15 23:55:06 +000034#include "llvm/Support/Compiler.h"
Ted Kremenekab2b8c52008-01-23 19:59:44 +000035#include "llvm/Support/Streams.h"
36
Ted Kremenek5ee4ff82008-01-25 22:55:56 +000037#include <functional>
38
Ted Kremenekaa66a322008-01-16 21:46:15 +000039#ifndef NDEBUG
40#include "llvm/Support/GraphWriter.h"
41#include <sstream>
42#endif
43
Ted Kremenekd27f8162008-01-15 23:55:06 +000044using namespace clang;
Ted Kremenekd27f8162008-01-15 23:55:06 +000045using llvm::dyn_cast;
46using llvm::cast;
Ted Kremenek5ee4ff82008-01-25 22:55:56 +000047using llvm::APSInt;
Ted Kremenekd27f8162008-01-15 23:55:06 +000048
49//===----------------------------------------------------------------------===//
Ted Kremenekbd03f1d2008-01-28 22:09:13 +000050// The Checker.
Ted Kremenekb38911f2008-01-30 23:03:39 +000051//
52// FIXME: This checker logic should be eventually broken into two components.
53// The first is the "meta"-level checking logic; the code that
54// does the Stmt visitation, fetching values from the map, etc.
55// The second part does the actual state manipulation. This way we
56// get more of a separate of concerns of these two pieces, with the
57// latter potentially being refactored back into the main checking
58// logic.
Ted Kremenekd27f8162008-01-15 23:55:06 +000059//===----------------------------------------------------------------------===//
60
61namespace {
Ted Kremenekd27f8162008-01-15 23:55:06 +000062
Ted Kremenekab2b8c52008-01-23 19:59:44 +000063class VISIBILITY_HIDDEN GRConstants {
Ted Kremenekd27f8162008-01-15 23:55:06 +000064
65public:
Ted Kremeneke070a1d2008-02-04 21:59:01 +000066 typedef ValueStateManager::StateTy StateTy;
Ted Kremenek7d7fe6d2008-01-29 22:56:11 +000067 typedef GRStmtNodeBuilder<GRConstants> StmtNodeBuilder;
68 typedef GRBranchNodeBuilder<GRConstants> BranchNodeBuilder;
Ted Kremenekcb48b9c2008-01-29 00:33:40 +000069 typedef ExplodedGraph<GRConstants> GraphTy;
70 typedef GraphTy::NodeTy NodeTy;
Ted Kremenekab2b8c52008-01-23 19:59:44 +000071
72 class NodeSet {
73 typedef llvm::SmallVector<NodeTy*,3> ImplTy;
74 ImplTy Impl;
75 public:
76
77 NodeSet() {}
Ted Kremenekb38911f2008-01-30 23:03:39 +000078 NodeSet(NodeTy* N) { assert (N && !N->isSink()); Impl.push_back(N); }
Ted Kremenekab2b8c52008-01-23 19:59:44 +000079
Ted Kremenekb38911f2008-01-30 23:03:39 +000080 void Add(NodeTy* N) { if (N && !N->isSink()) Impl.push_back(N); }
Ted Kremenekab2b8c52008-01-23 19:59:44 +000081
82 typedef ImplTy::iterator iterator;
83 typedef ImplTy::const_iterator const_iterator;
84
85 unsigned size() const { return Impl.size(); }
Ted Kremenek9de04c42008-01-24 20:55:43 +000086 bool empty() const { return Impl.empty(); }
Ted Kremenekab2b8c52008-01-23 19:59:44 +000087
88 iterator begin() { return Impl.begin(); }
89 iterator end() { return Impl.end(); }
90
91 const_iterator begin() const { return Impl.begin(); }
92 const_iterator end() const { return Impl.end(); }
93 };
Ted Kremenekcba2e432008-02-05 19:35:18 +000094
Ted Kremenekd27f8162008-01-15 23:55:06 +000095protected:
Ted Kremenekcb48b9c2008-01-29 00:33:40 +000096 /// G - the simulation graph.
97 GraphTy& G;
98
Ted Kremenekab2b8c52008-01-23 19:59:44 +000099 /// Liveness - live-variables information the ValueDecl* and block-level
100 /// Expr* in the CFG. Used to prune out dead state.
Ted Kremenekbffaa832008-01-29 05:13:23 +0000101 LiveVariables Liveness;
Ted Kremenekd27f8162008-01-15 23:55:06 +0000102
Ted Kremenekf4b7a692008-01-29 22:11:49 +0000103 /// Builder - The current GRStmtNodeBuilder which is used when building the nodes
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000104 /// for a given statement.
Ted Kremenek7d7fe6d2008-01-29 22:56:11 +0000105 StmtNodeBuilder* Builder;
106
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000107 /// StateMgr - Object that manages the data for all created states.
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000108 ValueStateManager StateMgr;
Ted Kremenekd27f8162008-01-15 23:55:06 +0000109
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000110 /// ValueMgr - Object that manages the data for all created RValues.
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000111 ValueManager& ValMgr;
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000112
Ted Kremenek68fd2572008-01-29 17:27:31 +0000113 /// SymMgr - Object that manages the symbol information.
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000114 SymbolManager& SymMgr;
Ted Kremenek68fd2572008-01-29 17:27:31 +0000115
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000116 /// StmtEntryNode - The immediate predecessor node.
117 NodeTy* StmtEntryNode;
118
119 /// CurrentStmt - The current block-level statement.
120 Stmt* CurrentStmt;
121
Ted Kremenekb38911f2008-01-30 23:03:39 +0000122 /// UninitBranches - Nodes in the ExplodedGraph that result from
123 /// taking a branch based on an uninitialized value.
124 typedef llvm::SmallPtrSet<NodeTy*,5> UninitBranchesTy;
125 UninitBranchesTy UninitBranches;
126
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000127 bool StateCleaned;
Ted Kremenekd27f8162008-01-15 23:55:06 +0000128
Ted Kremenekcb48b9c2008-01-29 00:33:40 +0000129 ASTContext& getContext() const { return G.getContext(); }
Ted Kremenek7b8009a2008-01-24 02:28:56 +0000130
Ted Kremenekd27f8162008-01-15 23:55:06 +0000131public:
Ted Kremenekbffaa832008-01-29 05:13:23 +0000132 GRConstants(GraphTy& g) : G(g), Liveness(G.getCFG(), G.getFunctionDecl()),
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000133 Builder(NULL),
Ted Kremenek768ad162008-02-05 05:15:51 +0000134 StateMgr(G.getContext(), G.getAllocator()),
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000135 ValMgr(StateMgr.getValueManager()),
136 SymMgr(StateMgr.getSymbolManager()),
137 StmtEntryNode(NULL), CurrentStmt(NULL) {
Ted Kremenekd27f8162008-01-15 23:55:06 +0000138
Ted Kremenekcb48b9c2008-01-29 00:33:40 +0000139 // Compute liveness information.
Ted Kremenekbffaa832008-01-29 05:13:23 +0000140 Liveness.runOnCFG(G.getCFG());
141 Liveness.runOnAllBlocks(G.getCFG(), NULL, true);
Ted Kremenekd27f8162008-01-15 23:55:06 +0000142 }
Ted Kremenekcb48b9c2008-01-29 00:33:40 +0000143
144 /// getCFG - Returns the CFG associated with this analysis.
145 CFG& getCFG() { return G.getCFG(); }
Ted Kremenekd27f8162008-01-15 23:55:06 +0000146
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000147 /// getInitialState - Return the initial state used for the root vertex
148 /// in the ExplodedGraph.
Ted Kremenekd27f8162008-01-15 23:55:06 +0000149 StateTy getInitialState() {
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000150 StateTy St = StateMgr.getInitialState();
Ted Kremenekff6e3c52008-01-29 00:43:03 +0000151
152 // Iterate the parameters.
153 FunctionDecl& F = G.getFunctionDecl();
154
155 for (FunctionDecl::param_iterator I=F.param_begin(), E=F.param_end();
Ted Kremenek4150abf2008-01-31 00:09:56 +0000156 I!=E; ++I)
Ted Kremenek329f8542008-02-05 21:52:21 +0000157 St = SetValue(St, lval::DeclVal(*I), RValue::GetSymbolValue(SymMgr, *I));
Ted Kremenekff6e3c52008-01-29 00:43:03 +0000158
Ted Kremenekcb48b9c2008-01-29 00:33:40 +0000159 return St;
Ted Kremenekd27f8162008-01-15 23:55:06 +0000160 }
Ted Kremenek3b4f6702008-01-30 23:24:39 +0000161
162 bool isUninitControlFlow(const NodeTy* N) const {
163 return N->isSink() && UninitBranches.count(const_cast<NodeTy*>(N)) != 0;
164 }
Ted Kremenekd27f8162008-01-15 23:55:06 +0000165
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000166 /// ProcessStmt - Called by GREngine. Used to generate new successor
167 /// nodes by processing the 'effects' of a block-level statement.
Ted Kremenek7d7fe6d2008-01-29 22:56:11 +0000168 void ProcessStmt(Stmt* S, StmtNodeBuilder& builder);
169
170 /// ProcessBranch - Called by GREngine. Used to generate successor
171 /// nodes by processing the 'effects' of a branch condition.
Ted Kremenekf233d482008-02-05 00:26:40 +0000172 void ProcessBranch(Expr* Condition, Stmt* Term, BranchNodeBuilder& builder);
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000173
174 /// RemoveDeadBindings - Return a new state that is the same as 'M' except
175 /// that all subexpression mappings are removed and that any
176 /// block-level expressions that are not live at 'S' also have their
177 /// mappings removed.
178 StateTy RemoveDeadBindings(Stmt* S, StateTy M);
179
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000180 StateTy SetValue(StateTy St, Stmt* S, const RValue& V);
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000181
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000182 StateTy SetValue(StateTy St, const Stmt* S, const RValue& V) {
Ted Kremenek9de04c42008-01-24 20:55:43 +0000183 return SetValue(St, const_cast<Stmt*>(S), V);
184 }
185
Ted Kremenekcba2e432008-02-05 19:35:18 +0000186 /// SetValue - This version of SetValue is used to batch process a set
187 /// of different possible RValues and return a set of different states.
188 const StateTy::BufferTy& SetValue(StateTy St, Stmt* S,
189 const RValue::BufferTy& V,
190 StateTy::BufferTy& RetBuf);
191
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000192 StateTy SetValue(StateTy St, const LValue& LV, const RValue& V);
Ted Kremenek1ccd31c2008-01-16 19:42:59 +0000193
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000194 inline RValue GetValue(const StateTy& St, Stmt* S) {
195 return StateMgr.GetValue(St, S);
196 }
Ted Kremenekf233d482008-02-05 00:26:40 +0000197
198 inline RValue GetValue(const StateTy& St, Stmt* S, bool& hasVal) {
199 return StateMgr.GetValue(St, S, &hasVal);
200 }
201
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000202 inline RValue GetValue(const StateTy& St, const Stmt* S) {
Ted Kremenek9de04c42008-01-24 20:55:43 +0000203 return GetValue(St, const_cast<Stmt*>(S));
204 }
205
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000206 inline RValue GetValue(const StateTy& St, const LValue& LV) {
207 return StateMgr.GetValue(St, LV);
208 }
209
210 inline LValue GetLValue(const StateTy& St, Stmt* S) {
211 return StateMgr.GetLValue(St, S);
212 }
Ted Kremenekf233d482008-02-05 00:26:40 +0000213
214 inline NonLValue GetRValueConstant(uint64_t X, Expr* E) {
215 return NonLValue::GetValue(ValMgr, X, E->getType(), E->getLocStart());
216 }
Ted Kremenekb38911f2008-01-30 23:03:39 +0000217
218 /// Assume - Create new state by assuming that a given expression
219 /// is true or false.
220 inline StateTy Assume(StateTy St, RValue Cond, bool Assumption,
221 bool& isFeasible) {
222 if (isa<LValue>(Cond))
223 return Assume(St, cast<LValue>(Cond), Assumption, isFeasible);
224 else
225 return Assume(St, cast<NonLValue>(Cond), Assumption, isFeasible);
226 }
227
228 StateTy Assume(StateTy St, LValue Cond, bool Assumption, bool& isFeasible);
229 StateTy Assume(StateTy St, NonLValue Cond, bool Assumption, bool& isFeasible);
Ted Kremenekd27f8162008-01-15 23:55:06 +0000230
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000231 void Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, StateTy St);
Ted Kremenekd27f8162008-01-15 23:55:06 +0000232
Ted Kremenekcba2e432008-02-05 19:35:18 +0000233 /// Nodify - This version of Nodify is used to batch process a set of states.
234 /// The states are not guaranteed to be unique.
235 void Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, const StateTy::BufferTy& SB);
236
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000237 /// Visit - Transfer function logic for all statements. Dispatches to
238 /// other functions that handle specific kinds of statements.
239 void Visit(Stmt* S, NodeTy* Pred, NodeSet& Dst);
Ted Kremenek874d63f2008-01-24 02:02:54 +0000240
241 /// VisitCast - Transfer function logic for all casts (implicit and explicit).
242 void VisitCast(Expr* CastE, Expr* E, NodeTy* Pred, NodeSet& Dst);
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000243
Ted Kremenek7b8009a2008-01-24 02:28:56 +0000244 /// VisitUnaryOperator - Transfer function logic for unary operators.
245 void VisitUnaryOperator(UnaryOperator* B, NodeTy* Pred, NodeSet& Dst);
246
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000247 /// VisitBinaryOperator - Transfer function logic for binary operators.
Ted Kremenek9de04c42008-01-24 20:55:43 +0000248 void VisitBinaryOperator(BinaryOperator* B, NodeTy* Pred, NodeSet& Dst);
249
250 /// VisitDeclStmt - Transfer function logic for DeclStmts.
Ted Kremenekf233d482008-02-05 00:26:40 +0000251 void VisitDeclStmt(DeclStmt* DS, NodeTy* Pred, NodeSet& Dst);
252
253 /// VisitGuardedExpr - Transfer function logic for ?, __builtin_choose
254 void VisitGuardedExpr(Stmt* S, Stmt* LHS, Stmt* RHS,
255 NodeTy* Pred, NodeSet& Dst);
256
257 /// VisitLogicalExpr - Transfer function logic for '&&', '||'
258 void VisitLogicalExpr(BinaryOperator* B, NodeTy* Pred, NodeSet& Dst);
Ted Kremenekd27f8162008-01-15 23:55:06 +0000259};
260} // end anonymous namespace
261
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000262
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000263GRConstants::StateTy
264GRConstants::SetValue(StateTy St, Stmt* S, const RValue& V) {
265
266 if (!StateCleaned) {
267 St = RemoveDeadBindings(CurrentStmt, St);
268 StateCleaned = true;
269 }
270
271 bool isBlkExpr = false;
272
273 if (S == CurrentStmt) {
274 isBlkExpr = getCFG().isBlkExpr(S);
275
276 if (!isBlkExpr)
277 return St;
278 }
279
280 return StateMgr.SetValue(St, S, isBlkExpr, V);
281}
282
Ted Kremenekcba2e432008-02-05 19:35:18 +0000283const GRConstants::StateTy::BufferTy&
284GRConstants::SetValue(StateTy St, Stmt* S, const RValue::BufferTy& RB,
285 StateTy::BufferTy& RetBuf) {
286
287 assert (RetBuf.empty());
288
289 for (RValue::BufferTy::const_iterator I=RB.begin(), E=RB.end(); I!=E; ++I)
290 RetBuf.push_back(SetValue(St, S, *I));
291
292 return RetBuf;
293}
294
Ted Kremeneke070a1d2008-02-04 21:59:01 +0000295GRConstants::StateTy
296GRConstants::SetValue(StateTy St, const LValue& LV, const RValue& V) {
297
298 if (!LV.isValid())
299 return St;
300
301 if (!StateCleaned) {
302 St = RemoveDeadBindings(CurrentStmt, St);
303 StateCleaned = true;
304 }
305
306 return StateMgr.SetValue(St, LV, V);
307}
308
Ted Kremenekf233d482008-02-05 00:26:40 +0000309void GRConstants::ProcessBranch(Expr* Condition, Stmt* Term,
Ted Kremenek71c29bd2008-01-29 23:32:35 +0000310 BranchNodeBuilder& builder) {
Ted Kremenekb38911f2008-01-30 23:03:39 +0000311
312 StateTy PrevState = builder.getState();
Ted Kremenek71c29bd2008-01-29 23:32:35 +0000313
Ted Kremenekb38911f2008-01-30 23:03:39 +0000314 // Remove old bindings for subexpressions.
Ted Kremenekb80cbfe2008-02-05 18:19:15 +0000315 for (StateTy::vb_iterator I=PrevState.begin(), E=PrevState.end(); I!=E; ++I)
Ted Kremenekb38911f2008-01-30 23:03:39 +0000316 if (I.getKey().isSubExpr())
317 PrevState = StateMgr.Remove(PrevState, I.getKey());
Ted Kremenek71c29bd2008-01-29 23:32:35 +0000318
Ted Kremenekf233d482008-02-05 00:26:40 +0000319 // Remove terminator-specific bindings.
320 switch (Term->getStmtClass()) {
321 default: break;
322
323 case Stmt::BinaryOperatorClass: { // '&&', '||'
324 BinaryOperator* B = cast<BinaryOperator>(Term);
325 // FIXME: Liveness analysis should probably remove these automatically.
326 // Verify later when we converge to an 'optimization' stage.
327 PrevState = StateMgr.Remove(PrevState, B->getRHS());
328 break;
329 }
330
331 case Stmt::ConditionalOperatorClass: { // '?' operator
332 ConditionalOperator* C = cast<ConditionalOperator>(Term);
333 // FIXME: Liveness analysis should probably remove these automatically.
334 // Verify later when we converge to an 'optimization' stage.
335 if (Expr* L = C->getLHS()) PrevState = StateMgr.Remove(PrevState, L);
336 PrevState = StateMgr.Remove(PrevState, C->getRHS());
337 break;
338 }
339
340 case Stmt::ChooseExprClass: { // __builtin_choose_expr
341 ChooseExpr* C = cast<ChooseExpr>(Term);
342 // FIXME: Liveness analysis should probably remove these automatically.
343 // Verify later when we converge to an 'optimization' stage.
344 PrevState = StateMgr.Remove(PrevState, C->getRHS());
345 PrevState = StateMgr.Remove(PrevState, C->getRHS());
346 break;
347 }
348 }
349
Ted Kremenekb38911f2008-01-30 23:03:39 +0000350 RValue V = GetValue(PrevState, Condition);
351
352 switch (V.getBaseKind()) {
353 default:
354 break;
355
356 case RValue::InvalidKind:
357 builder.generateNode(PrevState, true);
358 builder.generateNode(PrevState, false);
359 return;
360
361 case RValue::UninitializedKind: {
362 NodeTy* N = builder.generateNode(PrevState, true);
363
364 if (N) {
365 N->markAsSink();
366 UninitBranches.insert(N);
367 }
368
369 builder.markInfeasible(false);
370 return;
371 }
372 }
373
374 // Process the true branch.
375 bool isFeasible = true;
Ted Kremenekf233d482008-02-05 00:26:40 +0000376
Ted Kremenekb38911f2008-01-30 23:03:39 +0000377 StateTy St = Assume(PrevState, V, true, isFeasible);
378
Ted Kremenekf233d482008-02-05 00:26:40 +0000379 if (isFeasible)
380 builder.generateNode(St, true);
Ted Kremenekb38911f2008-01-30 23:03:39 +0000381 else {
382 builder.markInfeasible(true);
383 isFeasible = true;
384 }
385
386 // Process the false branch.
387 St = Assume(PrevState, V, false, isFeasible);
388
Ted Kremenekf233d482008-02-05 00:26:40 +0000389 if (isFeasible)
390 builder.generateNode(St, false);
391 else
392 builder.markInfeasible(false);
Ted Kremenek71c29bd2008-01-29 23:32:35 +0000393}
394
Ted Kremenekf233d482008-02-05 00:26:40 +0000395
396void GRConstants::VisitLogicalExpr(BinaryOperator* B, NodeTy* Pred,
397 NodeSet& Dst) {
398
399 bool hasR2;
400 StateTy PrevState = Pred->getState();
401
402 RValue R1 = GetValue(PrevState, B->getLHS());
403 RValue R2 = GetValue(PrevState, B->getRHS(), hasR2);
404
405 if (isa<InvalidValue>(R1) &&
406 (isa<InvalidValue>(R2) ||
407 isa<UninitializedValue>(R2))) {
408
409 Nodify(Dst, B, Pred, SetValue(PrevState, B, R2));
410 return;
411 }
412 else if (isa<UninitializedValue>(R1)) {
413 Nodify(Dst, B, Pred, SetValue(PrevState, B, R1));
414 return;
415 }
416
417 // R1 is an expression that can evaluate to either 'true' or 'false'.
418 if (B->getOpcode() == BinaryOperator::LAnd) {
419 // hasR2 == 'false' means that LHS evaluated to 'false' and that
420 // we short-circuited, leading to a value of '0' for the '&&' expression.
421 if (hasR2 == false) {
422 Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(0U, B)));
423 return;
424 }
425 }
426 else {
427 assert (B->getOpcode() == BinaryOperator::LOr);
428 // hasR2 == 'false' means that the LHS evaluate to 'true' and that
429 // we short-circuited, leading to a value of '1' for the '||' expression.
430 if (hasR2 == false) {
431 Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(1U, B)));
432 return;
433 }
434 }
435
436 // If we reach here we did not short-circuit. Assume R2 == true and
437 // R2 == false.
438
439 bool isFeasible;
440 StateTy St = Assume(PrevState, R2, true, isFeasible);
441
442 if (isFeasible)
443 Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(1U, B)));
444
445 St = Assume(PrevState, R2, false, isFeasible);
446
447 if (isFeasible)
448 Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(0U, B)));
449}
450
451
452
Ted Kremenek7d7fe6d2008-01-29 22:56:11 +0000453void GRConstants::ProcessStmt(Stmt* S, StmtNodeBuilder& builder) {
Ted Kremenekd27f8162008-01-15 23:55:06 +0000454 Builder = &builder;
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000455
456 StmtEntryNode = builder.getLastNode();
457 CurrentStmt = S;
458 NodeSet Dst;
459 StateCleaned = false;
460
461 Visit(S, StmtEntryNode, Dst);
462
463 // If no nodes were generated, generate a new node that has all the
464 // dead mappings removed.
465 if (Dst.size() == 1 && *Dst.begin() == StmtEntryNode) {
466 StateTy St = RemoveDeadBindings(S, StmtEntryNode->getState());
467 builder.generateNode(S, St, StmtEntryNode);
468 }
Ted Kremenekf84469b2008-01-18 00:41:32 +0000469
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000470 CurrentStmt = NULL;
471 StmtEntryNode = NULL;
472 Builder = NULL;
Ted Kremenekd27f8162008-01-15 23:55:06 +0000473}
474
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000475GRConstants::StateTy GRConstants::RemoveDeadBindings(Stmt* Loc, StateTy M) {
Ted Kremenekf84469b2008-01-18 00:41:32 +0000476 // Note: in the code below, we can assign a new map to M since the
477 // iterators are iterating over the tree of the *original* map.
Ted Kremenekb80cbfe2008-02-05 18:19:15 +0000478 StateTy::vb_iterator I = M.begin(), E = M.end();
Ted Kremenekf84469b2008-01-18 00:41:32 +0000479
Ted Kremenekf84469b2008-01-18 00:41:32 +0000480
Ted Kremenek65cac132008-01-29 05:25:31 +0000481 for (; I!=E && !I.getKey().isSymbol(); ++I) {
482 // Remove old bindings for subexpressions and "dead"
483 // block-level expressions.
484 if (I.getKey().isSubExpr() ||
485 I.getKey().isBlkExpr() && !Liveness.isLive(Loc,cast<Stmt>(I.getKey()))){
486 M = StateMgr.Remove(M, I.getKey());
487 }
488 else if (I.getKey().isDecl()) { // Remove bindings for "dead" decls.
489 if (VarDecl* V = dyn_cast<VarDecl>(cast<ValueDecl>(I.getKey())))
490 if (!Liveness.isLive(Loc, V))
491 M = StateMgr.Remove(M, I.getKey());
492 }
493 }
Ted Kremenek565256e2008-01-24 22:44:24 +0000494
Ted Kremeneke00fe3f2008-01-17 00:52:48 +0000495 return M;
Ted Kremeneke00fe3f2008-01-17 00:52:48 +0000496}
497
Ted Kremenekcba2e432008-02-05 19:35:18 +0000498void GRConstants::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, StateTy St) {
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000499
500 // If the state hasn't changed, don't generate a new node.
501 if (St == Pred->getState())
502 return;
Ted Kremenekcb448ca2008-01-16 00:53:15 +0000503
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000504 Dst.Add(Builder->generateNode(S, St, Pred));
Ted Kremenekcb448ca2008-01-16 00:53:15 +0000505}
Ted Kremenekd27f8162008-01-15 23:55:06 +0000506
Ted Kremenekcba2e432008-02-05 19:35:18 +0000507void GRConstants::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred,
508 const StateTy::BufferTy& SB) {
509
510 for (StateTy::BufferTy::const_iterator I=SB.begin(), E=SB.end(); I!=E; ++I)
511 Nodify(Dst, S, Pred, *I);
512}
513
514void GRConstants::VisitCast(Expr* CastE, Expr* E, NodeTy* Pred, NodeSet& Dst) {
Ted Kremenek874d63f2008-01-24 02:02:54 +0000515
516 QualType T = CastE->getType();
517
518 // Check for redundant casts.
519 if (E->getType() == T) {
520 Dst.Add(Pred);
521 return;
522 }
523
524 NodeSet S1;
525 Visit(E, Pred, S1);
526
527 for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) {
528 NodeTy* N = *I1;
529 StateTy St = N->getState();
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000530 const RValue& V = GetValue(St, E);
531 Nodify(Dst, CastE, N, SetValue(St, CastE, V.Cast(ValMgr, CastE)));
Ted Kremenek874d63f2008-01-24 02:02:54 +0000532 }
Ted Kremenek9de04c42008-01-24 20:55:43 +0000533}
534
535void GRConstants::VisitDeclStmt(DeclStmt* DS, GRConstants::NodeTy* Pred,
536 GRConstants::NodeSet& Dst) {
537
538 StateTy St = Pred->getState();
539
540 for (const ScopedDecl* D = DS->getDecl(); D; D = D->getNextDeclarator())
Ted Kremenek403c1812008-01-28 22:51:57 +0000541 if (const VarDecl* VD = dyn_cast<VarDecl>(D)) {
542 const Expr* E = VD->getInit();
Ted Kremenek329f8542008-02-05 21:52:21 +0000543 St = SetValue(St, lval::DeclVal(VD),
Ted Kremenek403c1812008-01-28 22:51:57 +0000544 E ? GetValue(St, E) : UninitializedValue());
545 }
Ted Kremenek9de04c42008-01-24 20:55:43 +0000546
547 Nodify(Dst, DS, Pred, St);
548
549 if (Dst.empty())
550 Dst.Add(Pred);
551}
Ted Kremenek874d63f2008-01-24 02:02:54 +0000552
Ted Kremenekf233d482008-02-05 00:26:40 +0000553
554void GRConstants::VisitGuardedExpr(Stmt* S, Stmt* LHS, Stmt* RHS,
555 NodeTy* Pred, NodeSet& Dst) {
556
557 StateTy St = Pred->getState();
558
559 RValue R = GetValue(St, LHS);
560 if (isa<InvalidValue>(R)) R = GetValue(St, RHS);
561
562 Nodify(Dst, S, Pred, SetValue(St, S, R));
563}
564
Ted Kremenek7b8009a2008-01-24 02:28:56 +0000565void GRConstants::VisitUnaryOperator(UnaryOperator* U,
566 GRConstants::NodeTy* Pred,
567 GRConstants::NodeSet& Dst) {
568 NodeSet S1;
569 Visit(U->getSubExpr(), Pred, S1);
570
571 for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) {
572 NodeTy* N1 = *I1;
573 StateTy St = N1->getState();
574
575 switch (U->getOpcode()) {
576 case UnaryOperator::PostInc: {
577 const LValue& L1 = GetLValue(St, U->getSubExpr());
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000578 NonLValue R1 = cast<NonLValue>(GetValue(St, L1));
Ted Kremenek0ff9a4d2008-02-05 00:43:43 +0000579 NonLValue Result = R1.Add(ValMgr, GetRValueConstant(1U, U));
Ted Kremenek7b8009a2008-01-24 02:28:56 +0000580 Nodify(Dst, U, N1, SetValue(SetValue(St, U, R1), L1, Result));
581 break;
582 }
583
584 case UnaryOperator::PostDec: {
585 const LValue& L1 = GetLValue(St, U->getSubExpr());
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000586 NonLValue R1 = cast<NonLValue>(GetValue(St, L1));
Ted Kremenek0ff9a4d2008-02-05 00:43:43 +0000587 NonLValue Result = R1.Sub(ValMgr, GetRValueConstant(1U, U));
Ted Kremenek7b8009a2008-01-24 02:28:56 +0000588 Nodify(Dst, U, N1, SetValue(SetValue(St, U, R1), L1, Result));
589 break;
590 }
591
592 case UnaryOperator::PreInc: {
593 const LValue& L1 = GetLValue(St, U->getSubExpr());
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000594 NonLValue R1 = cast<NonLValue>(GetValue(St, L1));
Ted Kremenek0ff9a4d2008-02-05 00:43:43 +0000595 NonLValue Result = R1.Add(ValMgr, GetRValueConstant(1U, U));
Ted Kremenek7b8009a2008-01-24 02:28:56 +0000596 Nodify(Dst, U, N1, SetValue(SetValue(St, U, Result), L1, Result));
597 break;
598 }
599
600 case UnaryOperator::PreDec: {
601 const LValue& L1 = GetLValue(St, U->getSubExpr());
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000602 NonLValue R1 = cast<NonLValue>(GetValue(St, L1));
Ted Kremenek0ff9a4d2008-02-05 00:43:43 +0000603 NonLValue Result = R1.Sub(ValMgr, GetRValueConstant(1U, U));
Ted Kremenek7b8009a2008-01-24 02:28:56 +0000604 Nodify(Dst, U, N1, SetValue(SetValue(St, U, Result), L1, Result));
605 break;
606 }
607
Ted Kremenekdacbb4f2008-01-24 08:20:02 +0000608 case UnaryOperator::Minus: {
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000609 const NonLValue& R1 = cast<NonLValue>(GetValue(St, U->getSubExpr()));
610 Nodify(Dst, U, N1, SetValue(St, U, R1.UnaryMinus(ValMgr, U)));
Ted Kremenekdacbb4f2008-01-24 08:20:02 +0000611 break;
612 }
613
Ted Kremenekc5d3b4c2008-02-04 16:58:30 +0000614 case UnaryOperator::Not: {
615 const NonLValue& R1 = cast<NonLValue>(GetValue(St, U->getSubExpr()));
616 Nodify(Dst, U, N1, SetValue(St, U, R1.BitwiseComplement(ValMgr)));
617 break;
618 }
619
Ted Kremenek64924852008-01-31 02:35:41 +0000620 case UnaryOperator::AddrOf: {
621 const LValue& L1 = GetLValue(St, U->getSubExpr());
622 Nodify(Dst, U, N1, SetValue(St, U, L1));
623 break;
624 }
625
626 case UnaryOperator::Deref: {
627 const LValue& L1 = GetLValue(St, U->getSubExpr());
628 Nodify(Dst, U, N1, SetValue(St, U, GetValue(St, L1)));
629 break;
630 }
631
Ted Kremenek7b8009a2008-01-24 02:28:56 +0000632 default: ;
633 assert (false && "Not implemented.");
634 }
635 }
636}
637
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000638void GRConstants::VisitBinaryOperator(BinaryOperator* B,
639 GRConstants::NodeTy* Pred,
640 GRConstants::NodeSet& Dst) {
641 NodeSet S1;
642 Visit(B->getLHS(), Pred, S1);
Ted Kremenekcb448ca2008-01-16 00:53:15 +0000643
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000644 for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) {
645 NodeTy* N1 = *I1;
Ted Kremeneke00fe3f2008-01-17 00:52:48 +0000646
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000647 // When getting the value for the LHS, check if we are in an assignment.
648 // In such cases, we want to (initially) treat the LHS as an LValue,
649 // so we use GetLValue instead of GetValue so that DeclRefExpr's are
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000650 // evaluated to LValueDecl's instead of to an NonLValue.
651 const RValue& V1 =
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000652 B->isAssignmentOp() ? GetLValue(N1->getState(), B->getLHS())
653 : GetValue(N1->getState(), B->getLHS());
Ted Kremenekcb448ca2008-01-16 00:53:15 +0000654
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000655 NodeSet S2;
656 Visit(B->getRHS(), N1, S2);
657
658 for (NodeSet::iterator I2=S2.begin(), E2=S2.end(); I2 != E2; ++I2) {
659 NodeTy* N2 = *I2;
660 StateTy St = N2->getState();
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000661 const RValue& V2 = GetValue(St, B->getRHS());
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000662
663 switch (B->getOpcode()) {
Ted Kremenek687af802008-01-29 19:43:15 +0000664 default:
665 Dst.Add(N2);
666 break;
667
Ted Kremenekf233d482008-02-05 00:26:40 +0000668 // Arithmetic operators.
Ted Kremenek687af802008-01-29 19:43:15 +0000669
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000670 case BinaryOperator::Add: {
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000671 const NonLValue& R1 = cast<NonLValue>(V1);
672 const NonLValue& R2 = cast<NonLValue>(V2);
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000673
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000674 Nodify(Dst, B, N2, SetValue(St, B, R1.Add(ValMgr, R2)));
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000675 break;
676 }
677
678 case BinaryOperator::Sub: {
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000679 const NonLValue& R1 = cast<NonLValue>(V1);
680 const NonLValue& R2 = cast<NonLValue>(V2);
681 Nodify(Dst, B, N2, SetValue(St, B, R1.Sub(ValMgr, R2)));
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000682 break;
683 }
684
Ted Kremenek2eafd0e2008-01-23 23:42:27 +0000685 case BinaryOperator::Mul: {
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000686 const NonLValue& R1 = cast<NonLValue>(V1);
687 const NonLValue& R2 = cast<NonLValue>(V2);
688 Nodify(Dst, B, N2, SetValue(St, B, R1.Mul(ValMgr, R2)));
Ted Kremenek2eafd0e2008-01-23 23:42:27 +0000689 break;
690 }
691
Ted Kremenek5ee4ff82008-01-25 22:55:56 +0000692 case BinaryOperator::Div: {
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000693 const NonLValue& R1 = cast<NonLValue>(V1);
694 const NonLValue& R2 = cast<NonLValue>(V2);
695 Nodify(Dst, B, N2, SetValue(St, B, R1.Div(ValMgr, R2)));
Ted Kremenek5ee4ff82008-01-25 22:55:56 +0000696 break;
697 }
698
Ted Kremenekcce207d2008-01-28 22:26:15 +0000699 case BinaryOperator::Rem: {
700 const NonLValue& R1 = cast<NonLValue>(V1);
701 const NonLValue& R2 = cast<NonLValue>(V2);
702 Nodify(Dst, B, N2, SetValue(St, B, R1.Rem(ValMgr, R2)));
703 break;
704 }
705
Ted Kremenek687af802008-01-29 19:43:15 +0000706 // Assignment operators.
707
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000708 case BinaryOperator::Assign: {
709 const LValue& L1 = cast<LValue>(V1);
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000710 const NonLValue& R2 = cast<NonLValue>(V2);
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000711 Nodify(Dst, B, N2, SetValue(SetValue(St, B, R2), L1, R2));
712 break;
713 }
Ted Kremenekb4ae33f2008-01-23 23:38:00 +0000714
715 case BinaryOperator::AddAssign: {
716 const LValue& L1 = cast<LValue>(V1);
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000717 NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
718 NonLValue Result = R1.Add(ValMgr, cast<NonLValue>(V2));
Ted Kremenekb4ae33f2008-01-23 23:38:00 +0000719 Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
720 break;
721 }
722
723 case BinaryOperator::SubAssign: {
724 const LValue& L1 = cast<LValue>(V1);
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000725 NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
726 NonLValue Result = R1.Sub(ValMgr, cast<NonLValue>(V2));
Ted Kremenekb4ae33f2008-01-23 23:38:00 +0000727 Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
728 break;
729 }
Ted Kremenek2eafd0e2008-01-23 23:42:27 +0000730
731 case BinaryOperator::MulAssign: {
732 const LValue& L1 = cast<LValue>(V1);
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000733 NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
734 NonLValue Result = R1.Mul(ValMgr, cast<NonLValue>(V2));
Ted Kremenek2eafd0e2008-01-23 23:42:27 +0000735 Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
736 break;
737 }
Ted Kremenek5c1e2622008-01-25 23:45:34 +0000738
739 case BinaryOperator::DivAssign: {
740 const LValue& L1 = cast<LValue>(V1);
Ted Kremenekbd03f1d2008-01-28 22:09:13 +0000741 NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
742 NonLValue Result = R1.Div(ValMgr, cast<NonLValue>(V2));
Ted Kremenek5c1e2622008-01-25 23:45:34 +0000743 Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
744 break;
745 }
Ted Kremenek10099a62008-01-28 22:28:54 +0000746
747 case BinaryOperator::RemAssign: {
748 const LValue& L1 = cast<LValue>(V1);
749 NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1));
750 NonLValue Result = R1.Rem(ValMgr, cast<NonLValue>(V2));
751 Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result));
752 break;
753 }
Ted Kremenek687af802008-01-29 19:43:15 +0000754
755 // Equality operators.
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000756
Ted Kremenek687af802008-01-29 19:43:15 +0000757 case BinaryOperator::EQ:
758 // FIXME: should we allow XX.EQ() to return a set of values,
759 // allowing state bifurcation? In such cases, they will also
760 // modify the state (meaning that a new state will be returned
761 // as well).
762 assert (B->getType() == getContext().IntTy);
763
764 if (isa<LValue>(V1)) {
765 const LValue& L1 = cast<LValue>(V1);
766 const LValue& L2 = cast<LValue>(V2);
Ted Kremenekcba2e432008-02-05 19:35:18 +0000767 Nodify(Dst, B, N2, SetValue(St, B, L1.EQ(ValMgr, L2)));
Ted Kremenek687af802008-01-29 19:43:15 +0000768 }
769 else {
770 const NonLValue& R1 = cast<NonLValue>(V1);
771 const NonLValue& R2 = cast<NonLValue>(V2);
Ted Kremenekcba2e432008-02-05 19:35:18 +0000772 Nodify(Dst, B, N2, SetValue(St, B, R1.EQ(ValMgr, R2)));
Ted Kremenek687af802008-01-29 19:43:15 +0000773 }
774
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000775 break;
776 }
Ted Kremenekcb448ca2008-01-16 00:53:15 +0000777 }
Ted Kremenekd27f8162008-01-15 23:55:06 +0000778 }
Ted Kremenekd27f8162008-01-15 23:55:06 +0000779}
Ted Kremenekee985462008-01-16 18:18:48 +0000780
Ted Kremenek1ccd31c2008-01-16 19:42:59 +0000781
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000782void GRConstants::Visit(Stmt* S, GRConstants::NodeTy* Pred,
783 GRConstants::NodeSet& Dst) {
784
785 // FIXME: add metadata to the CFG so that we can disable
786 // this check when we KNOW that there is no block-level subexpression.
787 // The motivation is that this check requires a hashtable lookup.
788
789 if (S != CurrentStmt && getCFG().isBlkExpr(S)) {
790 Dst.Add(Pred);
791 return;
792 }
793
794 switch (S->getStmtClass()) {
795 case Stmt::BinaryOperatorClass:
Ted Kremenekf233d482008-02-05 00:26:40 +0000796
797 if (cast<BinaryOperator>(S)->isLogicalOp()) {
798 VisitLogicalExpr(cast<BinaryOperator>(S), Pred, Dst);
799 break;
800 }
801
802 // Fall-through.
803
Ted Kremenekb4ae33f2008-01-23 23:38:00 +0000804 case Stmt::CompoundAssignOperatorClass:
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000805 VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst);
806 break;
807
Ted Kremenek7b8009a2008-01-24 02:28:56 +0000808 case Stmt::UnaryOperatorClass:
809 VisitUnaryOperator(cast<UnaryOperator>(S), Pred, Dst);
810 break;
811
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000812 case Stmt::ParenExprClass:
813 Visit(cast<ParenExpr>(S)->getSubExpr(), Pred, Dst);
814 break;
815
Ted Kremenek874d63f2008-01-24 02:02:54 +0000816 case Stmt::ImplicitCastExprClass: {
817 ImplicitCastExpr* C = cast<ImplicitCastExpr>(S);
818 VisitCast(C, C->getSubExpr(), Pred, Dst);
819 break;
820 }
821
822 case Stmt::CastExprClass: {
823 CastExpr* C = cast<CastExpr>(S);
824 VisitCast(C, C->getSubExpr(), Pred, Dst);
825 break;
826 }
827
Ted Kremenekf233d482008-02-05 00:26:40 +0000828 case Stmt::ConditionalOperatorClass: { // '?' operator
829 ConditionalOperator* C = cast<ConditionalOperator>(S);
830 VisitGuardedExpr(S, C->getLHS(), C->getRHS(), Pred, Dst);
831 break;
832 }
833
834 case Stmt::ChooseExprClass: { // __builtin_choose_expr
835 ChooseExpr* C = cast<ChooseExpr>(S);
836 VisitGuardedExpr(S, C->getLHS(), C->getRHS(), Pred, Dst);
837 break;
838 }
839
Ted Kremenek9de04c42008-01-24 20:55:43 +0000840 case Stmt::DeclStmtClass:
841 VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst);
842 break;
843
Ted Kremenekab2b8c52008-01-23 19:59:44 +0000844 default:
845 Dst.Add(Pred); // No-op. Simply propagate the current state unchanged.
846 break;
Ted Kremenek79649df2008-01-17 18:25:22 +0000847 }
Ted Kremenek1ccd31c2008-01-16 19:42:59 +0000848}
849
Ted Kremenekee985462008-01-16 18:18:48 +0000850//===----------------------------------------------------------------------===//
Ted Kremenekb38911f2008-01-30 23:03:39 +0000851// "Assume" logic.
852//===----------------------------------------------------------------------===//
853
Ted Kremeneka90ccfe2008-01-31 19:34:24 +0000854GRConstants::StateTy GRConstants::Assume(StateTy St, LValue Cond, bool Assumption,
855 bool& isFeasible) {
Ted Kremeneka6e4d212008-02-01 06:36:40 +0000856
857 switch (Cond.getSubKind()) {
858 default:
859 assert (false && "'Assume' not implemented for this NonLValue.");
860 return St;
861
Ted Kremenek329f8542008-02-05 21:52:21 +0000862 case lval::DeclValKind:
Ted Kremeneka6e4d212008-02-01 06:36:40 +0000863 isFeasible = Assumption;
864 return St;
865
Ted Kremenek329f8542008-02-05 21:52:21 +0000866 case lval::ConcreteIntKind: {
867 bool b = cast<lval::ConcreteInt>(Cond).getValue() != 0;
Ted Kremeneka6e4d212008-02-01 06:36:40 +0000868 isFeasible = b ? Assumption : !Assumption;
869 return St;
870 }
871 }
Ted Kremenekb38911f2008-01-30 23:03:39 +0000872}
873
Ted Kremeneka90ccfe2008-01-31 19:34:24 +0000874GRConstants::StateTy GRConstants::Assume(StateTy St, NonLValue Cond, bool Assumption,
875 bool& isFeasible) {
Ted Kremenekb38911f2008-01-30 23:03:39 +0000876
877 switch (Cond.getSubKind()) {
878 default:
879 assert (false && "'Assume' not implemented for this NonLValue.");
880 return St;
881
Ted Kremenek329f8542008-02-05 21:52:21 +0000882 case nonlval::ConcreteIntKind: {
883 bool b = cast<nonlval::ConcreteInt>(Cond).getValue() != 0;
Ted Kremenekb38911f2008-01-30 23:03:39 +0000884 isFeasible = b ? Assumption : !Assumption;
885 return St;
886 }
887 }
888}
889
890
891//===----------------------------------------------------------------------===//
Ted Kremenekee985462008-01-16 18:18:48 +0000892// Driver.
893//===----------------------------------------------------------------------===//
894
Ted Kremenekaa66a322008-01-16 21:46:15 +0000895#ifndef NDEBUG
Ted Kremenek3b4f6702008-01-30 23:24:39 +0000896static GRConstants* GraphPrintCheckerState;
897
Ted Kremenekaa66a322008-01-16 21:46:15 +0000898namespace llvm {
899template<>
900struct VISIBILITY_HIDDEN DOTGraphTraits<GRConstants::NodeTy*> :
901 public DefaultDOTGraphTraits {
Ted Kremenek9ff731d2008-01-24 22:27:20 +0000902
Ted Kremenek9153f732008-02-05 07:17:49 +0000903 static void PrintKindLabel(std::ostream& Out, VarBindKey::Kind kind) {
Ted Kremenek803c9ed2008-01-23 22:30:44 +0000904 switch (kind) {
Ted Kremenek9153f732008-02-05 07:17:49 +0000905 case VarBindKey::IsSubExpr: Out << "Sub-Expressions:\\l"; break;
906 case VarBindKey::IsDecl: Out << "Variables:\\l"; break;
907 case VarBindKey::IsBlkExpr: Out << "Block-level Expressions:\\l"; break;
908 default: assert (false && "Unknown VarBindKey type.");
Ted Kremenek803c9ed2008-01-23 22:30:44 +0000909 }
910 }
911
Ted Kremenek9ff731d2008-01-24 22:27:20 +0000912 static void PrintKind(std::ostream& Out, GRConstants::StateTy M,
Ted Kremenek9153f732008-02-05 07:17:49 +0000913 VarBindKey::Kind kind, bool isFirstGroup = false) {
Ted Kremenek9ff731d2008-01-24 22:27:20 +0000914 bool isFirst = true;
915
Ted Kremenekb80cbfe2008-02-05 18:19:15 +0000916 for (GRConstants::StateTy::vb_iterator I=M.begin(), E=M.end();I!=E;++I) {
Ted Kremenek9ff731d2008-01-24 22:27:20 +0000917 if (I.getKey().getKind() != kind)
918 continue;
919
920 if (isFirst) {
921 if (!isFirstGroup) Out << "\\l\\l";
922 PrintKindLabel(Out, kind);
923 isFirst = false;
924 }
925 else
926 Out << "\\l";
927
928 Out << ' ';
929
930 if (ValueDecl* V = dyn_cast<ValueDecl>(I.getKey()))
931 Out << V->getName();
932 else {
933 Stmt* E = cast<Stmt>(I.getKey());
934 Out << " (" << (void*) E << ") ";
935 E->printPretty(Out);
936 }
937
938 Out << " : ";
939 I.getData().print(Out);
940 }
941 }
942
Ted Kremenekaa66a322008-01-16 21:46:15 +0000943 static std::string getNodeLabel(const GRConstants::NodeTy* N, void*) {
944 std::ostringstream Out;
Ted Kremenek803c9ed2008-01-23 22:30:44 +0000945
946 // Program Location.
Ted Kremenekaa66a322008-01-16 21:46:15 +0000947 ProgramPoint Loc = N->getLocation();
948
949 switch (Loc.getKind()) {
950 case ProgramPoint::BlockEntranceKind:
951 Out << "Block Entrance: B"
952 << cast<BlockEntrance>(Loc).getBlock()->getBlockID();
953 break;
954
955 case ProgramPoint::BlockExitKind:
956 assert (false);
957 break;
958
959 case ProgramPoint::PostStmtKind: {
960 const PostStmt& L = cast<PostStmt>(Loc);
Ted Kremenek9ff731d2008-01-24 22:27:20 +0000961 Out << L.getStmt()->getStmtClassName() << ':'
962 << (void*) L.getStmt() << ' ';
963
Ted Kremenekaa66a322008-01-16 21:46:15 +0000964 L.getStmt()->printPretty(Out);
965 break;
966 }
967
968 default: {
969 const BlockEdge& E = cast<BlockEdge>(Loc);
970 Out << "Edge: (B" << E.getSrc()->getBlockID() << ", B"
971 << E.getDst()->getBlockID() << ')';
Ted Kremenekb38911f2008-01-30 23:03:39 +0000972
973 if (Stmt* T = E.getSrc()->getTerminator()) {
974 Out << "\\|Terminator: ";
975 E.getSrc()->printTerminator(Out);
976
977 if (isa<SwitchStmt>(T)) {
978 // FIXME
979 }
980 else {
981 Out << "\\lCondition: ";
982 if (*E.getSrc()->succ_begin() == E.getDst())
983 Out << "true";
984 else
985 Out << "false";
986 }
987
988 Out << "\\l";
989 }
Ted Kremenek3b4f6702008-01-30 23:24:39 +0000990
991 if (GraphPrintCheckerState->isUninitControlFlow(N)) {
992 Out << "\\|Control-flow based on\\lUninitialized value.\\l";
993 }
Ted Kremenekaa66a322008-01-16 21:46:15 +0000994 }
995 }
996
Ted Kremenek9153f732008-02-05 07:17:49 +0000997 Out << "\\|StateID: " << (void*) N->getState().getImpl() << "\\|";
Ted Kremenekaa66a322008-01-16 21:46:15 +0000998
Ted Kremenek9153f732008-02-05 07:17:49 +0000999 PrintKind(Out, N->getState(), VarBindKey::IsDecl, true);
1000 PrintKind(Out, N->getState(), VarBindKey::IsBlkExpr);
1001 PrintKind(Out, N->getState(), VarBindKey::IsSubExpr);
Ted Kremenek803c9ed2008-01-23 22:30:44 +00001002
Ted Kremenek803c9ed2008-01-23 22:30:44 +00001003 Out << "\\l";
Ted Kremenekaa66a322008-01-16 21:46:15 +00001004 return Out.str();
1005 }
1006};
1007} // end llvm namespace
1008#endif
1009
Ted Kremenekee985462008-01-16 18:18:48 +00001010namespace clang {
Ted Kremenekcb48b9c2008-01-29 00:33:40 +00001011void RunGRConstants(CFG& cfg, FunctionDecl& FD, ASTContext& Ctx) {
1012 GREngine<GRConstants> Engine(cfg, FD, Ctx);
Ted Kremenekee985462008-01-16 18:18:48 +00001013 Engine.ExecuteWorkList();
Ted Kremenekaa66a322008-01-16 21:46:15 +00001014#ifndef NDEBUG
Ted Kremenek3b4f6702008-01-30 23:24:39 +00001015 GraphPrintCheckerState = &Engine.getCheckerState();
Ted Kremenekaa66a322008-01-16 21:46:15 +00001016 llvm::ViewGraph(*Engine.getGraph().roots_begin(),"GRConstants");
Ted Kremenek3b4f6702008-01-30 23:24:39 +00001017 GraphPrintCheckerState = NULL;
Ted Kremenekaa66a322008-01-16 21:46:15 +00001018#endif
Ted Kremenekee985462008-01-16 18:18:48 +00001019}
Ted Kremenekab2b8c52008-01-23 19:59:44 +00001020} // end clang namespace