Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 1 | //===-- GRConstants.cpp - Simple, Path-Sens. Constant Prop. ------*- C++ -*-==// |
Ted Kremenek | 6492485 | 2008-01-31 02:35:41 +0000 | [diff] [blame] | 2 | // |
Ted Kremenek | 4af8431 | 2008-01-31 06:49:09 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
Ted Kremenek | d27f816 | 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 | // |
| 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 Kremenek | a90ccfe | 2008-01-31 19:34:24 +0000 | [diff] [blame] | 18 | #include "RValues.h" |
| 19 | #include "ValueState.h" |
| 20 | |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 21 | #include "clang/Analysis/PathSensitive/GREngine.h" |
| 22 | #include "clang/AST/Expr.h" |
Ted Kremenek | 874d63f | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 23 | #include "clang/AST/ASTContext.h" |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 24 | #include "clang/Analysis/Analyses/LiveVariables.h" |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 25 | |
| 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 Kremenek | 3c6c672 | 2008-01-16 17:56:25 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/SmallVector.h" |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 32 | #include "llvm/ADT/SmallPtrSet.h" |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 33 | #include "llvm/Support/Allocator.h" |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Compiler.h" |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 35 | #include "llvm/Support/Streams.h" |
| 36 | |
Ted Kremenek | 5ee4ff8 | 2008-01-25 22:55:56 +0000 | [diff] [blame] | 37 | #include <functional> |
| 38 | |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 39 | #ifndef NDEBUG |
| 40 | #include "llvm/Support/GraphWriter.h" |
| 41 | #include <sstream> |
| 42 | #endif |
| 43 | |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 44 | using namespace clang; |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 45 | using llvm::dyn_cast; |
| 46 | using llvm::cast; |
Ted Kremenek | 5ee4ff8 | 2008-01-25 22:55:56 +0000 | [diff] [blame] | 47 | using llvm::APSInt; |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 48 | |
| 49 | //===----------------------------------------------------------------------===// |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 50 | // The Checker. |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 51 | // |
| 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 Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 59 | //===----------------------------------------------------------------------===// |
| 60 | |
| 61 | namespace { |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 62 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 63 | class VISIBILITY_HIDDEN GRConstants { |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 64 | |
| 65 | public: |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 66 | typedef ValueStateManager::StateTy StateTy; |
Ted Kremenek | 7d7fe6d | 2008-01-29 22:56:11 +0000 | [diff] [blame] | 67 | typedef GRStmtNodeBuilder<GRConstants> StmtNodeBuilder; |
| 68 | typedef GRBranchNodeBuilder<GRConstants> BranchNodeBuilder; |
Ted Kremenek | cb48b9c | 2008-01-29 00:33:40 +0000 | [diff] [blame] | 69 | typedef ExplodedGraph<GRConstants> GraphTy; |
| 70 | typedef GraphTy::NodeTy NodeTy; |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 71 | |
| 72 | class NodeSet { |
| 73 | typedef llvm::SmallVector<NodeTy*,3> ImplTy; |
| 74 | ImplTy Impl; |
| 75 | public: |
| 76 | |
| 77 | NodeSet() {} |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 78 | NodeSet(NodeTy* N) { assert (N && !N->isSink()); Impl.push_back(N); } |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 79 | |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 80 | void Add(NodeTy* N) { if (N && !N->isSink()) Impl.push_back(N); } |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 81 | |
| 82 | typedef ImplTy::iterator iterator; |
| 83 | typedef ImplTy::const_iterator const_iterator; |
| 84 | |
| 85 | unsigned size() const { return Impl.size(); } |
Ted Kremenek | 9de04c4 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 86 | bool empty() const { return Impl.empty(); } |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 87 | |
| 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 Kremenek | cba2e43 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 94 | |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 95 | protected: |
Ted Kremenek | cb48b9c | 2008-01-29 00:33:40 +0000 | [diff] [blame] | 96 | /// G - the simulation graph. |
| 97 | GraphTy& G; |
| 98 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 99 | /// Liveness - live-variables information the ValueDecl* and block-level |
| 100 | /// Expr* in the CFG. Used to prune out dead state. |
Ted Kremenek | bffaa83 | 2008-01-29 05:13:23 +0000 | [diff] [blame] | 101 | LiveVariables Liveness; |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 102 | |
Ted Kremenek | f4b7a69 | 2008-01-29 22:11:49 +0000 | [diff] [blame] | 103 | /// Builder - The current GRStmtNodeBuilder which is used when building the nodes |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 104 | /// for a given statement. |
Ted Kremenek | 7d7fe6d | 2008-01-29 22:56:11 +0000 | [diff] [blame] | 105 | StmtNodeBuilder* Builder; |
| 106 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 107 | /// StateMgr - Object that manages the data for all created states. |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 108 | ValueStateManager StateMgr; |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 109 | |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 110 | /// ValueMgr - Object that manages the data for all created RValues. |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 111 | ValueManager& ValMgr; |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 112 | |
Ted Kremenek | 68fd257 | 2008-01-29 17:27:31 +0000 | [diff] [blame] | 113 | /// SymMgr - Object that manages the symbol information. |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 114 | SymbolManager& SymMgr; |
Ted Kremenek | 68fd257 | 2008-01-29 17:27:31 +0000 | [diff] [blame] | 115 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 116 | /// StmtEntryNode - The immediate predecessor node. |
| 117 | NodeTy* StmtEntryNode; |
| 118 | |
| 119 | /// CurrentStmt - The current block-level statement. |
| 120 | Stmt* CurrentStmt; |
| 121 | |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 122 | /// 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 Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 127 | bool StateCleaned; |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 128 | |
Ted Kremenek | cb48b9c | 2008-01-29 00:33:40 +0000 | [diff] [blame] | 129 | ASTContext& getContext() const { return G.getContext(); } |
Ted Kremenek | 7b8009a | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 130 | |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 131 | public: |
Ted Kremenek | bffaa83 | 2008-01-29 05:13:23 +0000 | [diff] [blame] | 132 | GRConstants(GraphTy& g) : G(g), Liveness(G.getCFG(), G.getFunctionDecl()), |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 133 | Builder(NULL), |
Ted Kremenek | 768ad16 | 2008-02-05 05:15:51 +0000 | [diff] [blame] | 134 | StateMgr(G.getContext(), G.getAllocator()), |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 135 | ValMgr(StateMgr.getValueManager()), |
| 136 | SymMgr(StateMgr.getSymbolManager()), |
| 137 | StmtEntryNode(NULL), CurrentStmt(NULL) { |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 138 | |
Ted Kremenek | cb48b9c | 2008-01-29 00:33:40 +0000 | [diff] [blame] | 139 | // Compute liveness information. |
Ted Kremenek | bffaa83 | 2008-01-29 05:13:23 +0000 | [diff] [blame] | 140 | Liveness.runOnCFG(G.getCFG()); |
| 141 | Liveness.runOnAllBlocks(G.getCFG(), NULL, true); |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 142 | } |
Ted Kremenek | cb48b9c | 2008-01-29 00:33:40 +0000 | [diff] [blame] | 143 | |
| 144 | /// getCFG - Returns the CFG associated with this analysis. |
| 145 | CFG& getCFG() { return G.getCFG(); } |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 146 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 147 | /// getInitialState - Return the initial state used for the root vertex |
| 148 | /// in the ExplodedGraph. |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 149 | StateTy getInitialState() { |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 150 | StateTy St = StateMgr.getInitialState(); |
Ted Kremenek | ff6e3c5 | 2008-01-29 00:43:03 +0000 | [diff] [blame] | 151 | |
| 152 | // Iterate the parameters. |
| 153 | FunctionDecl& F = G.getFunctionDecl(); |
| 154 | |
| 155 | for (FunctionDecl::param_iterator I=F.param_begin(), E=F.param_end(); |
Ted Kremenek | 4150abf | 2008-01-31 00:09:56 +0000 | [diff] [blame] | 156 | I!=E; ++I) |
Ted Kremenek | 329f854 | 2008-02-05 21:52:21 +0000 | [diff] [blame] | 157 | St = SetValue(St, lval::DeclVal(*I), RValue::GetSymbolValue(SymMgr, *I)); |
Ted Kremenek | ff6e3c5 | 2008-01-29 00:43:03 +0000 | [diff] [blame] | 158 | |
Ted Kremenek | cb48b9c | 2008-01-29 00:33:40 +0000 | [diff] [blame] | 159 | return St; |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 160 | } |
Ted Kremenek | 3b4f670 | 2008-01-30 23:24:39 +0000 | [diff] [blame] | 161 | |
| 162 | bool isUninitControlFlow(const NodeTy* N) const { |
| 163 | return N->isSink() && UninitBranches.count(const_cast<NodeTy*>(N)) != 0; |
| 164 | } |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 165 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 166 | /// ProcessStmt - Called by GREngine. Used to generate new successor |
| 167 | /// nodes by processing the 'effects' of a block-level statement. |
Ted Kremenek | 7d7fe6d | 2008-01-29 22:56:11 +0000 | [diff] [blame] | 168 | 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 Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 172 | void ProcessBranch(Expr* Condition, Stmt* Term, BranchNodeBuilder& builder); |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 173 | |
| 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 Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 180 | StateTy SetValue(StateTy St, Stmt* S, const RValue& V); |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 181 | |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 182 | StateTy SetValue(StateTy St, const Stmt* S, const RValue& V) { |
Ted Kremenek | 9de04c4 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 183 | return SetValue(St, const_cast<Stmt*>(S), V); |
| 184 | } |
| 185 | |
Ted Kremenek | cba2e43 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 186 | /// 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 Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 192 | StateTy SetValue(StateTy St, const LValue& LV, const RValue& V); |
Ted Kremenek | 1ccd31c | 2008-01-16 19:42:59 +0000 | [diff] [blame] | 193 | |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 194 | inline RValue GetValue(const StateTy& St, Stmt* S) { |
| 195 | return StateMgr.GetValue(St, S); |
| 196 | } |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 197 | |
| 198 | inline RValue GetValue(const StateTy& St, Stmt* S, bool& hasVal) { |
| 199 | return StateMgr.GetValue(St, S, &hasVal); |
| 200 | } |
| 201 | |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 202 | inline RValue GetValue(const StateTy& St, const Stmt* S) { |
Ted Kremenek | 9de04c4 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 203 | return GetValue(St, const_cast<Stmt*>(S)); |
| 204 | } |
| 205 | |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 206 | 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 Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 213 | |
| 214 | inline NonLValue GetRValueConstant(uint64_t X, Expr* E) { |
| 215 | return NonLValue::GetValue(ValMgr, X, E->getType(), E->getLocStart()); |
| 216 | } |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 217 | |
| 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 Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 230 | |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame^] | 231 | StateTy AssumeSymNE(StateTy St, SymbolID sym, const llvm::APSInt& V, |
| 232 | bool& isFeasible); |
| 233 | |
| 234 | StateTy AssumeSymEQ(StateTy St, SymbolID sym, const llvm::APSInt& V, |
| 235 | bool& isFeasible); |
| 236 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 237 | void Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, StateTy St); |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 238 | |
Ted Kremenek | cba2e43 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 239 | /// Nodify - This version of Nodify is used to batch process a set of states. |
| 240 | /// The states are not guaranteed to be unique. |
| 241 | void Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, const StateTy::BufferTy& SB); |
| 242 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 243 | /// Visit - Transfer function logic for all statements. Dispatches to |
| 244 | /// other functions that handle specific kinds of statements. |
| 245 | void Visit(Stmt* S, NodeTy* Pred, NodeSet& Dst); |
Ted Kremenek | 874d63f | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 246 | |
| 247 | /// VisitCast - Transfer function logic for all casts (implicit and explicit). |
| 248 | void VisitCast(Expr* CastE, Expr* E, NodeTy* Pred, NodeSet& Dst); |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 249 | |
Ted Kremenek | 7b8009a | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 250 | /// VisitUnaryOperator - Transfer function logic for unary operators. |
| 251 | void VisitUnaryOperator(UnaryOperator* B, NodeTy* Pred, NodeSet& Dst); |
| 252 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 253 | /// VisitBinaryOperator - Transfer function logic for binary operators. |
Ted Kremenek | 9de04c4 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 254 | void VisitBinaryOperator(BinaryOperator* B, NodeTy* Pred, NodeSet& Dst); |
| 255 | |
| 256 | /// VisitDeclStmt - Transfer function logic for DeclStmts. |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 257 | void VisitDeclStmt(DeclStmt* DS, NodeTy* Pred, NodeSet& Dst); |
| 258 | |
| 259 | /// VisitGuardedExpr - Transfer function logic for ?, __builtin_choose |
| 260 | void VisitGuardedExpr(Stmt* S, Stmt* LHS, Stmt* RHS, |
| 261 | NodeTy* Pred, NodeSet& Dst); |
| 262 | |
| 263 | /// VisitLogicalExpr - Transfer function logic for '&&', '||' |
| 264 | void VisitLogicalExpr(BinaryOperator* B, NodeTy* Pred, NodeSet& Dst); |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 265 | }; |
| 266 | } // end anonymous namespace |
| 267 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 268 | |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 269 | GRConstants::StateTy |
| 270 | GRConstants::SetValue(StateTy St, Stmt* S, const RValue& V) { |
| 271 | |
| 272 | if (!StateCleaned) { |
| 273 | St = RemoveDeadBindings(CurrentStmt, St); |
| 274 | StateCleaned = true; |
| 275 | } |
| 276 | |
| 277 | bool isBlkExpr = false; |
| 278 | |
| 279 | if (S == CurrentStmt) { |
| 280 | isBlkExpr = getCFG().isBlkExpr(S); |
| 281 | |
| 282 | if (!isBlkExpr) |
| 283 | return St; |
| 284 | } |
| 285 | |
| 286 | return StateMgr.SetValue(St, S, isBlkExpr, V); |
| 287 | } |
| 288 | |
Ted Kremenek | cba2e43 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 289 | const GRConstants::StateTy::BufferTy& |
| 290 | GRConstants::SetValue(StateTy St, Stmt* S, const RValue::BufferTy& RB, |
| 291 | StateTy::BufferTy& RetBuf) { |
| 292 | |
| 293 | assert (RetBuf.empty()); |
| 294 | |
| 295 | for (RValue::BufferTy::const_iterator I=RB.begin(), E=RB.end(); I!=E; ++I) |
| 296 | RetBuf.push_back(SetValue(St, S, *I)); |
| 297 | |
| 298 | return RetBuf; |
| 299 | } |
| 300 | |
Ted Kremenek | e070a1d | 2008-02-04 21:59:01 +0000 | [diff] [blame] | 301 | GRConstants::StateTy |
| 302 | GRConstants::SetValue(StateTy St, const LValue& LV, const RValue& V) { |
| 303 | |
| 304 | if (!LV.isValid()) |
| 305 | return St; |
| 306 | |
| 307 | if (!StateCleaned) { |
| 308 | St = RemoveDeadBindings(CurrentStmt, St); |
| 309 | StateCleaned = true; |
| 310 | } |
| 311 | |
| 312 | return StateMgr.SetValue(St, LV, V); |
| 313 | } |
| 314 | |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 315 | void GRConstants::ProcessBranch(Expr* Condition, Stmt* Term, |
Ted Kremenek | 71c29bd | 2008-01-29 23:32:35 +0000 | [diff] [blame] | 316 | BranchNodeBuilder& builder) { |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 317 | |
| 318 | StateTy PrevState = builder.getState(); |
Ted Kremenek | 71c29bd | 2008-01-29 23:32:35 +0000 | [diff] [blame] | 319 | |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 320 | // Remove old bindings for subexpressions. |
Ted Kremenek | b80cbfe | 2008-02-05 18:19:15 +0000 | [diff] [blame] | 321 | for (StateTy::vb_iterator I=PrevState.begin(), E=PrevState.end(); I!=E; ++I) |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 322 | if (I.getKey().isSubExpr()) |
| 323 | PrevState = StateMgr.Remove(PrevState, I.getKey()); |
Ted Kremenek | 71c29bd | 2008-01-29 23:32:35 +0000 | [diff] [blame] | 324 | |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 325 | // Remove terminator-specific bindings. |
| 326 | switch (Term->getStmtClass()) { |
| 327 | default: break; |
| 328 | |
| 329 | case Stmt::BinaryOperatorClass: { // '&&', '||' |
| 330 | BinaryOperator* B = cast<BinaryOperator>(Term); |
| 331 | // FIXME: Liveness analysis should probably remove these automatically. |
| 332 | // Verify later when we converge to an 'optimization' stage. |
| 333 | PrevState = StateMgr.Remove(PrevState, B->getRHS()); |
| 334 | break; |
| 335 | } |
| 336 | |
| 337 | case Stmt::ConditionalOperatorClass: { // '?' operator |
| 338 | ConditionalOperator* C = cast<ConditionalOperator>(Term); |
| 339 | // FIXME: Liveness analysis should probably remove these automatically. |
| 340 | // Verify later when we converge to an 'optimization' stage. |
| 341 | if (Expr* L = C->getLHS()) PrevState = StateMgr.Remove(PrevState, L); |
| 342 | PrevState = StateMgr.Remove(PrevState, C->getRHS()); |
| 343 | break; |
| 344 | } |
| 345 | |
| 346 | case Stmt::ChooseExprClass: { // __builtin_choose_expr |
| 347 | ChooseExpr* C = cast<ChooseExpr>(Term); |
| 348 | // FIXME: Liveness analysis should probably remove these automatically. |
| 349 | // Verify later when we converge to an 'optimization' stage. |
| 350 | PrevState = StateMgr.Remove(PrevState, C->getRHS()); |
| 351 | PrevState = StateMgr.Remove(PrevState, C->getRHS()); |
| 352 | break; |
| 353 | } |
| 354 | } |
| 355 | |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 356 | RValue V = GetValue(PrevState, Condition); |
| 357 | |
| 358 | switch (V.getBaseKind()) { |
| 359 | default: |
| 360 | break; |
| 361 | |
| 362 | case RValue::InvalidKind: |
| 363 | builder.generateNode(PrevState, true); |
| 364 | builder.generateNode(PrevState, false); |
| 365 | return; |
| 366 | |
| 367 | case RValue::UninitializedKind: { |
| 368 | NodeTy* N = builder.generateNode(PrevState, true); |
| 369 | |
| 370 | if (N) { |
| 371 | N->markAsSink(); |
| 372 | UninitBranches.insert(N); |
| 373 | } |
| 374 | |
| 375 | builder.markInfeasible(false); |
| 376 | return; |
| 377 | } |
| 378 | } |
| 379 | |
| 380 | // Process the true branch. |
| 381 | bool isFeasible = true; |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 382 | |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 383 | StateTy St = Assume(PrevState, V, true, isFeasible); |
| 384 | |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 385 | if (isFeasible) |
| 386 | builder.generateNode(St, true); |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 387 | else { |
| 388 | builder.markInfeasible(true); |
| 389 | isFeasible = true; |
| 390 | } |
| 391 | |
| 392 | // Process the false branch. |
| 393 | St = Assume(PrevState, V, false, isFeasible); |
| 394 | |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 395 | if (isFeasible) |
| 396 | builder.generateNode(St, false); |
| 397 | else |
| 398 | builder.markInfeasible(false); |
Ted Kremenek | 71c29bd | 2008-01-29 23:32:35 +0000 | [diff] [blame] | 399 | } |
| 400 | |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 401 | |
| 402 | void GRConstants::VisitLogicalExpr(BinaryOperator* B, NodeTy* Pred, |
| 403 | NodeSet& Dst) { |
| 404 | |
| 405 | bool hasR2; |
| 406 | StateTy PrevState = Pred->getState(); |
| 407 | |
| 408 | RValue R1 = GetValue(PrevState, B->getLHS()); |
| 409 | RValue R2 = GetValue(PrevState, B->getRHS(), hasR2); |
| 410 | |
| 411 | if (isa<InvalidValue>(R1) && |
| 412 | (isa<InvalidValue>(R2) || |
| 413 | isa<UninitializedValue>(R2))) { |
| 414 | |
| 415 | Nodify(Dst, B, Pred, SetValue(PrevState, B, R2)); |
| 416 | return; |
| 417 | } |
| 418 | else if (isa<UninitializedValue>(R1)) { |
| 419 | Nodify(Dst, B, Pred, SetValue(PrevState, B, R1)); |
| 420 | return; |
| 421 | } |
| 422 | |
| 423 | // R1 is an expression that can evaluate to either 'true' or 'false'. |
| 424 | if (B->getOpcode() == BinaryOperator::LAnd) { |
| 425 | // hasR2 == 'false' means that LHS evaluated to 'false' and that |
| 426 | // we short-circuited, leading to a value of '0' for the '&&' expression. |
| 427 | if (hasR2 == false) { |
| 428 | Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(0U, B))); |
| 429 | return; |
| 430 | } |
| 431 | } |
| 432 | else { |
| 433 | assert (B->getOpcode() == BinaryOperator::LOr); |
| 434 | // hasR2 == 'false' means that the LHS evaluate to 'true' and that |
| 435 | // we short-circuited, leading to a value of '1' for the '||' expression. |
| 436 | if (hasR2 == false) { |
| 437 | Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(1U, B))); |
| 438 | return; |
| 439 | } |
| 440 | } |
| 441 | |
| 442 | // If we reach here we did not short-circuit. Assume R2 == true and |
| 443 | // R2 == false. |
| 444 | |
| 445 | bool isFeasible; |
| 446 | StateTy St = Assume(PrevState, R2, true, isFeasible); |
| 447 | |
| 448 | if (isFeasible) |
| 449 | Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(1U, B))); |
| 450 | |
| 451 | St = Assume(PrevState, R2, false, isFeasible); |
| 452 | |
| 453 | if (isFeasible) |
| 454 | Nodify(Dst, B, Pred, SetValue(PrevState, B, GetRValueConstant(0U, B))); |
| 455 | } |
| 456 | |
| 457 | |
| 458 | |
Ted Kremenek | 7d7fe6d | 2008-01-29 22:56:11 +0000 | [diff] [blame] | 459 | void GRConstants::ProcessStmt(Stmt* S, StmtNodeBuilder& builder) { |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 460 | Builder = &builder; |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 461 | |
| 462 | StmtEntryNode = builder.getLastNode(); |
| 463 | CurrentStmt = S; |
| 464 | NodeSet Dst; |
| 465 | StateCleaned = false; |
| 466 | |
| 467 | Visit(S, StmtEntryNode, Dst); |
| 468 | |
| 469 | // If no nodes were generated, generate a new node that has all the |
| 470 | // dead mappings removed. |
| 471 | if (Dst.size() == 1 && *Dst.begin() == StmtEntryNode) { |
| 472 | StateTy St = RemoveDeadBindings(S, StmtEntryNode->getState()); |
| 473 | builder.generateNode(S, St, StmtEntryNode); |
| 474 | } |
Ted Kremenek | f84469b | 2008-01-18 00:41:32 +0000 | [diff] [blame] | 475 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 476 | CurrentStmt = NULL; |
| 477 | StmtEntryNode = NULL; |
| 478 | Builder = NULL; |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 479 | } |
| 480 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 481 | GRConstants::StateTy GRConstants::RemoveDeadBindings(Stmt* Loc, StateTy M) { |
Ted Kremenek | f84469b | 2008-01-18 00:41:32 +0000 | [diff] [blame] | 482 | // Note: in the code below, we can assign a new map to M since the |
| 483 | // iterators are iterating over the tree of the *original* map. |
Ted Kremenek | b80cbfe | 2008-02-05 18:19:15 +0000 | [diff] [blame] | 484 | StateTy::vb_iterator I = M.begin(), E = M.end(); |
Ted Kremenek | f84469b | 2008-01-18 00:41:32 +0000 | [diff] [blame] | 485 | |
Ted Kremenek | f84469b | 2008-01-18 00:41:32 +0000 | [diff] [blame] | 486 | |
Ted Kremenek | 65cac13 | 2008-01-29 05:25:31 +0000 | [diff] [blame] | 487 | for (; I!=E && !I.getKey().isSymbol(); ++I) { |
| 488 | // Remove old bindings for subexpressions and "dead" |
| 489 | // block-level expressions. |
| 490 | if (I.getKey().isSubExpr() || |
| 491 | I.getKey().isBlkExpr() && !Liveness.isLive(Loc,cast<Stmt>(I.getKey()))){ |
| 492 | M = StateMgr.Remove(M, I.getKey()); |
| 493 | } |
| 494 | else if (I.getKey().isDecl()) { // Remove bindings for "dead" decls. |
| 495 | if (VarDecl* V = dyn_cast<VarDecl>(cast<ValueDecl>(I.getKey()))) |
| 496 | if (!Liveness.isLive(Loc, V)) |
| 497 | M = StateMgr.Remove(M, I.getKey()); |
| 498 | } |
| 499 | } |
Ted Kremenek | 565256e | 2008-01-24 22:44:24 +0000 | [diff] [blame] | 500 | |
Ted Kremenek | e00fe3f | 2008-01-17 00:52:48 +0000 | [diff] [blame] | 501 | return M; |
Ted Kremenek | e00fe3f | 2008-01-17 00:52:48 +0000 | [diff] [blame] | 502 | } |
| 503 | |
Ted Kremenek | cba2e43 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 504 | void GRConstants::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, StateTy St) { |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 505 | |
| 506 | // If the state hasn't changed, don't generate a new node. |
| 507 | if (St == Pred->getState()) |
| 508 | return; |
Ted Kremenek | cb448ca | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 509 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 510 | Dst.Add(Builder->generateNode(S, St, Pred)); |
Ted Kremenek | cb448ca | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 511 | } |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 512 | |
Ted Kremenek | cba2e43 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 513 | void GRConstants::Nodify(NodeSet& Dst, Stmt* S, NodeTy* Pred, |
| 514 | const StateTy::BufferTy& SB) { |
| 515 | |
| 516 | for (StateTy::BufferTy::const_iterator I=SB.begin(), E=SB.end(); I!=E; ++I) |
| 517 | Nodify(Dst, S, Pred, *I); |
| 518 | } |
| 519 | |
| 520 | void GRConstants::VisitCast(Expr* CastE, Expr* E, NodeTy* Pred, NodeSet& Dst) { |
Ted Kremenek | 874d63f | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 521 | |
| 522 | QualType T = CastE->getType(); |
| 523 | |
| 524 | // Check for redundant casts. |
| 525 | if (E->getType() == T) { |
| 526 | Dst.Add(Pred); |
| 527 | return; |
| 528 | } |
| 529 | |
| 530 | NodeSet S1; |
| 531 | Visit(E, Pred, S1); |
| 532 | |
| 533 | for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) { |
| 534 | NodeTy* N = *I1; |
| 535 | StateTy St = N->getState(); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 536 | const RValue& V = GetValue(St, E); |
| 537 | Nodify(Dst, CastE, N, SetValue(St, CastE, V.Cast(ValMgr, CastE))); |
Ted Kremenek | 874d63f | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 538 | } |
Ted Kremenek | 9de04c4 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | void GRConstants::VisitDeclStmt(DeclStmt* DS, GRConstants::NodeTy* Pred, |
| 542 | GRConstants::NodeSet& Dst) { |
| 543 | |
| 544 | StateTy St = Pred->getState(); |
| 545 | |
| 546 | for (const ScopedDecl* D = DS->getDecl(); D; D = D->getNextDeclarator()) |
Ted Kremenek | 403c181 | 2008-01-28 22:51:57 +0000 | [diff] [blame] | 547 | if (const VarDecl* VD = dyn_cast<VarDecl>(D)) { |
| 548 | const Expr* E = VD->getInit(); |
Ted Kremenek | 329f854 | 2008-02-05 21:52:21 +0000 | [diff] [blame] | 549 | St = SetValue(St, lval::DeclVal(VD), |
Ted Kremenek | 403c181 | 2008-01-28 22:51:57 +0000 | [diff] [blame] | 550 | E ? GetValue(St, E) : UninitializedValue()); |
| 551 | } |
Ted Kremenek | 9de04c4 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 552 | |
| 553 | Nodify(Dst, DS, Pred, St); |
| 554 | |
| 555 | if (Dst.empty()) |
| 556 | Dst.Add(Pred); |
| 557 | } |
Ted Kremenek | 874d63f | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 558 | |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 559 | |
| 560 | void GRConstants::VisitGuardedExpr(Stmt* S, Stmt* LHS, Stmt* RHS, |
| 561 | NodeTy* Pred, NodeSet& Dst) { |
| 562 | |
| 563 | StateTy St = Pred->getState(); |
| 564 | |
| 565 | RValue R = GetValue(St, LHS); |
| 566 | if (isa<InvalidValue>(R)) R = GetValue(St, RHS); |
| 567 | |
| 568 | Nodify(Dst, S, Pred, SetValue(St, S, R)); |
| 569 | } |
| 570 | |
Ted Kremenek | 7b8009a | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 571 | void GRConstants::VisitUnaryOperator(UnaryOperator* U, |
| 572 | GRConstants::NodeTy* Pred, |
| 573 | GRConstants::NodeSet& Dst) { |
| 574 | NodeSet S1; |
| 575 | Visit(U->getSubExpr(), Pred, S1); |
| 576 | |
| 577 | for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) { |
| 578 | NodeTy* N1 = *I1; |
| 579 | StateTy St = N1->getState(); |
| 580 | |
| 581 | switch (U->getOpcode()) { |
| 582 | case UnaryOperator::PostInc: { |
| 583 | const LValue& L1 = GetLValue(St, U->getSubExpr()); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 584 | NonLValue R1 = cast<NonLValue>(GetValue(St, L1)); |
Ted Kremenek | 0ff9a4d | 2008-02-05 00:43:43 +0000 | [diff] [blame] | 585 | NonLValue Result = R1.Add(ValMgr, GetRValueConstant(1U, U)); |
Ted Kremenek | 7b8009a | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 586 | Nodify(Dst, U, N1, SetValue(SetValue(St, U, R1), L1, Result)); |
| 587 | break; |
| 588 | } |
| 589 | |
| 590 | case UnaryOperator::PostDec: { |
| 591 | const LValue& L1 = GetLValue(St, U->getSubExpr()); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 592 | NonLValue R1 = cast<NonLValue>(GetValue(St, L1)); |
Ted Kremenek | 0ff9a4d | 2008-02-05 00:43:43 +0000 | [diff] [blame] | 593 | NonLValue Result = R1.Sub(ValMgr, GetRValueConstant(1U, U)); |
Ted Kremenek | 7b8009a | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 594 | Nodify(Dst, U, N1, SetValue(SetValue(St, U, R1), L1, Result)); |
| 595 | break; |
| 596 | } |
| 597 | |
| 598 | case UnaryOperator::PreInc: { |
| 599 | const LValue& L1 = GetLValue(St, U->getSubExpr()); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 600 | NonLValue R1 = cast<NonLValue>(GetValue(St, L1)); |
Ted Kremenek | 0ff9a4d | 2008-02-05 00:43:43 +0000 | [diff] [blame] | 601 | NonLValue Result = R1.Add(ValMgr, GetRValueConstant(1U, U)); |
Ted Kremenek | 7b8009a | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 602 | Nodify(Dst, U, N1, SetValue(SetValue(St, U, Result), L1, Result)); |
| 603 | break; |
| 604 | } |
| 605 | |
| 606 | case UnaryOperator::PreDec: { |
| 607 | const LValue& L1 = GetLValue(St, U->getSubExpr()); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 608 | NonLValue R1 = cast<NonLValue>(GetValue(St, L1)); |
Ted Kremenek | 0ff9a4d | 2008-02-05 00:43:43 +0000 | [diff] [blame] | 609 | NonLValue Result = R1.Sub(ValMgr, GetRValueConstant(1U, U)); |
Ted Kremenek | 7b8009a | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 610 | Nodify(Dst, U, N1, SetValue(SetValue(St, U, Result), L1, Result)); |
| 611 | break; |
| 612 | } |
| 613 | |
Ted Kremenek | dacbb4f | 2008-01-24 08:20:02 +0000 | [diff] [blame] | 614 | case UnaryOperator::Minus: { |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 615 | const NonLValue& R1 = cast<NonLValue>(GetValue(St, U->getSubExpr())); |
| 616 | Nodify(Dst, U, N1, SetValue(St, U, R1.UnaryMinus(ValMgr, U))); |
Ted Kremenek | dacbb4f | 2008-01-24 08:20:02 +0000 | [diff] [blame] | 617 | break; |
| 618 | } |
| 619 | |
Ted Kremenek | c5d3b4c | 2008-02-04 16:58:30 +0000 | [diff] [blame] | 620 | case UnaryOperator::Not: { |
| 621 | const NonLValue& R1 = cast<NonLValue>(GetValue(St, U->getSubExpr())); |
| 622 | Nodify(Dst, U, N1, SetValue(St, U, R1.BitwiseComplement(ValMgr))); |
| 623 | break; |
| 624 | } |
| 625 | |
Ted Kremenek | 6492485 | 2008-01-31 02:35:41 +0000 | [diff] [blame] | 626 | case UnaryOperator::AddrOf: { |
| 627 | const LValue& L1 = GetLValue(St, U->getSubExpr()); |
| 628 | Nodify(Dst, U, N1, SetValue(St, U, L1)); |
| 629 | break; |
| 630 | } |
| 631 | |
| 632 | case UnaryOperator::Deref: { |
| 633 | const LValue& L1 = GetLValue(St, U->getSubExpr()); |
| 634 | Nodify(Dst, U, N1, SetValue(St, U, GetValue(St, L1))); |
| 635 | break; |
| 636 | } |
| 637 | |
Ted Kremenek | 7b8009a | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 638 | default: ; |
| 639 | assert (false && "Not implemented."); |
| 640 | } |
| 641 | } |
| 642 | } |
| 643 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 644 | void GRConstants::VisitBinaryOperator(BinaryOperator* B, |
| 645 | GRConstants::NodeTy* Pred, |
| 646 | GRConstants::NodeSet& Dst) { |
| 647 | NodeSet S1; |
| 648 | Visit(B->getLHS(), Pred, S1); |
Ted Kremenek | cb448ca | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 649 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 650 | for (NodeSet::iterator I1=S1.begin(), E1=S1.end(); I1 != E1; ++I1) { |
| 651 | NodeTy* N1 = *I1; |
Ted Kremenek | e00fe3f | 2008-01-17 00:52:48 +0000 | [diff] [blame] | 652 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 653 | // When getting the value for the LHS, check if we are in an assignment. |
| 654 | // In such cases, we want to (initially) treat the LHS as an LValue, |
| 655 | // so we use GetLValue instead of GetValue so that DeclRefExpr's are |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 656 | // evaluated to LValueDecl's instead of to an NonLValue. |
| 657 | const RValue& V1 = |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 658 | B->isAssignmentOp() ? GetLValue(N1->getState(), B->getLHS()) |
| 659 | : GetValue(N1->getState(), B->getLHS()); |
Ted Kremenek | cb448ca | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 660 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 661 | NodeSet S2; |
| 662 | Visit(B->getRHS(), N1, S2); |
| 663 | |
| 664 | for (NodeSet::iterator I2=S2.begin(), E2=S2.end(); I2 != E2; ++I2) { |
| 665 | NodeTy* N2 = *I2; |
| 666 | StateTy St = N2->getState(); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 667 | const RValue& V2 = GetValue(St, B->getRHS()); |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 668 | |
| 669 | switch (B->getOpcode()) { |
Ted Kremenek | 687af80 | 2008-01-29 19:43:15 +0000 | [diff] [blame] | 670 | default: |
| 671 | Dst.Add(N2); |
| 672 | break; |
| 673 | |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 674 | // Arithmetic operators. |
Ted Kremenek | 687af80 | 2008-01-29 19:43:15 +0000 | [diff] [blame] | 675 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 676 | case BinaryOperator::Add: { |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 677 | const NonLValue& R1 = cast<NonLValue>(V1); |
| 678 | const NonLValue& R2 = cast<NonLValue>(V2); |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 679 | |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 680 | Nodify(Dst, B, N2, SetValue(St, B, R1.Add(ValMgr, R2))); |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 681 | break; |
| 682 | } |
| 683 | |
| 684 | case BinaryOperator::Sub: { |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 685 | const NonLValue& R1 = cast<NonLValue>(V1); |
| 686 | const NonLValue& R2 = cast<NonLValue>(V2); |
| 687 | Nodify(Dst, B, N2, SetValue(St, B, R1.Sub(ValMgr, R2))); |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 688 | break; |
| 689 | } |
| 690 | |
Ted Kremenek | 2eafd0e | 2008-01-23 23:42:27 +0000 | [diff] [blame] | 691 | case BinaryOperator::Mul: { |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 692 | const NonLValue& R1 = cast<NonLValue>(V1); |
| 693 | const NonLValue& R2 = cast<NonLValue>(V2); |
| 694 | Nodify(Dst, B, N2, SetValue(St, B, R1.Mul(ValMgr, R2))); |
Ted Kremenek | 2eafd0e | 2008-01-23 23:42:27 +0000 | [diff] [blame] | 695 | break; |
| 696 | } |
| 697 | |
Ted Kremenek | 5ee4ff8 | 2008-01-25 22:55:56 +0000 | [diff] [blame] | 698 | case BinaryOperator::Div: { |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 699 | const NonLValue& R1 = cast<NonLValue>(V1); |
| 700 | const NonLValue& R2 = cast<NonLValue>(V2); |
| 701 | Nodify(Dst, B, N2, SetValue(St, B, R1.Div(ValMgr, R2))); |
Ted Kremenek | 5ee4ff8 | 2008-01-25 22:55:56 +0000 | [diff] [blame] | 702 | break; |
| 703 | } |
| 704 | |
Ted Kremenek | cce207d | 2008-01-28 22:26:15 +0000 | [diff] [blame] | 705 | case BinaryOperator::Rem: { |
| 706 | const NonLValue& R1 = cast<NonLValue>(V1); |
| 707 | const NonLValue& R2 = cast<NonLValue>(V2); |
| 708 | Nodify(Dst, B, N2, SetValue(St, B, R1.Rem(ValMgr, R2))); |
| 709 | break; |
| 710 | } |
| 711 | |
Ted Kremenek | 687af80 | 2008-01-29 19:43:15 +0000 | [diff] [blame] | 712 | // Assignment operators. |
| 713 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 714 | case BinaryOperator::Assign: { |
| 715 | const LValue& L1 = cast<LValue>(V1); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 716 | const NonLValue& R2 = cast<NonLValue>(V2); |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 717 | Nodify(Dst, B, N2, SetValue(SetValue(St, B, R2), L1, R2)); |
| 718 | break; |
| 719 | } |
Ted Kremenek | b4ae33f | 2008-01-23 23:38:00 +0000 | [diff] [blame] | 720 | |
| 721 | case BinaryOperator::AddAssign: { |
| 722 | const LValue& L1 = cast<LValue>(V1); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 723 | NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1)); |
| 724 | NonLValue Result = R1.Add(ValMgr, cast<NonLValue>(V2)); |
Ted Kremenek | b4ae33f | 2008-01-23 23:38:00 +0000 | [diff] [blame] | 725 | Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result)); |
| 726 | break; |
| 727 | } |
| 728 | |
| 729 | case BinaryOperator::SubAssign: { |
| 730 | const LValue& L1 = cast<LValue>(V1); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 731 | NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1)); |
| 732 | NonLValue Result = R1.Sub(ValMgr, cast<NonLValue>(V2)); |
Ted Kremenek | b4ae33f | 2008-01-23 23:38:00 +0000 | [diff] [blame] | 733 | Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result)); |
| 734 | break; |
| 735 | } |
Ted Kremenek | 2eafd0e | 2008-01-23 23:42:27 +0000 | [diff] [blame] | 736 | |
| 737 | case BinaryOperator::MulAssign: { |
| 738 | const LValue& L1 = cast<LValue>(V1); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 739 | NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1)); |
| 740 | NonLValue Result = R1.Mul(ValMgr, cast<NonLValue>(V2)); |
Ted Kremenek | 2eafd0e | 2008-01-23 23:42:27 +0000 | [diff] [blame] | 741 | Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result)); |
| 742 | break; |
| 743 | } |
Ted Kremenek | 5c1e262 | 2008-01-25 23:45:34 +0000 | [diff] [blame] | 744 | |
| 745 | case BinaryOperator::DivAssign: { |
| 746 | const LValue& L1 = cast<LValue>(V1); |
Ted Kremenek | bd03f1d | 2008-01-28 22:09:13 +0000 | [diff] [blame] | 747 | NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1)); |
| 748 | NonLValue Result = R1.Div(ValMgr, cast<NonLValue>(V2)); |
Ted Kremenek | 5c1e262 | 2008-01-25 23:45:34 +0000 | [diff] [blame] | 749 | Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result)); |
| 750 | break; |
| 751 | } |
Ted Kremenek | 10099a6 | 2008-01-28 22:28:54 +0000 | [diff] [blame] | 752 | |
| 753 | case BinaryOperator::RemAssign: { |
| 754 | const LValue& L1 = cast<LValue>(V1); |
| 755 | NonLValue R1 = cast<NonLValue>(GetValue(N1->getState(), L1)); |
| 756 | NonLValue Result = R1.Rem(ValMgr, cast<NonLValue>(V2)); |
| 757 | Nodify(Dst, B, N2, SetValue(SetValue(St, B, Result), L1, Result)); |
| 758 | break; |
| 759 | } |
Ted Kremenek | 687af80 | 2008-01-29 19:43:15 +0000 | [diff] [blame] | 760 | |
| 761 | // Equality operators. |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 762 | |
Ted Kremenek | 687af80 | 2008-01-29 19:43:15 +0000 | [diff] [blame] | 763 | case BinaryOperator::EQ: |
| 764 | // FIXME: should we allow XX.EQ() to return a set of values, |
| 765 | // allowing state bifurcation? In such cases, they will also |
| 766 | // modify the state (meaning that a new state will be returned |
| 767 | // as well). |
| 768 | assert (B->getType() == getContext().IntTy); |
| 769 | |
| 770 | if (isa<LValue>(V1)) { |
| 771 | const LValue& L1 = cast<LValue>(V1); |
| 772 | const LValue& L2 = cast<LValue>(V2); |
Ted Kremenek | cba2e43 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 773 | Nodify(Dst, B, N2, SetValue(St, B, L1.EQ(ValMgr, L2))); |
Ted Kremenek | 687af80 | 2008-01-29 19:43:15 +0000 | [diff] [blame] | 774 | } |
| 775 | else { |
| 776 | const NonLValue& R1 = cast<NonLValue>(V1); |
| 777 | const NonLValue& R2 = cast<NonLValue>(V2); |
Ted Kremenek | cba2e43 | 2008-02-05 19:35:18 +0000 | [diff] [blame] | 778 | Nodify(Dst, B, N2, SetValue(St, B, R1.EQ(ValMgr, R2))); |
Ted Kremenek | 687af80 | 2008-01-29 19:43:15 +0000 | [diff] [blame] | 779 | } |
| 780 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 781 | break; |
| 782 | } |
Ted Kremenek | cb448ca | 2008-01-16 00:53:15 +0000 | [diff] [blame] | 783 | } |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 784 | } |
Ted Kremenek | d27f816 | 2008-01-15 23:55:06 +0000 | [diff] [blame] | 785 | } |
Ted Kremenek | ee98546 | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 786 | |
Ted Kremenek | 1ccd31c | 2008-01-16 19:42:59 +0000 | [diff] [blame] | 787 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 788 | void GRConstants::Visit(Stmt* S, GRConstants::NodeTy* Pred, |
| 789 | GRConstants::NodeSet& Dst) { |
| 790 | |
| 791 | // FIXME: add metadata to the CFG so that we can disable |
| 792 | // this check when we KNOW that there is no block-level subexpression. |
| 793 | // The motivation is that this check requires a hashtable lookup. |
| 794 | |
| 795 | if (S != CurrentStmt && getCFG().isBlkExpr(S)) { |
| 796 | Dst.Add(Pred); |
| 797 | return; |
| 798 | } |
| 799 | |
| 800 | switch (S->getStmtClass()) { |
| 801 | case Stmt::BinaryOperatorClass: |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 802 | |
| 803 | if (cast<BinaryOperator>(S)->isLogicalOp()) { |
| 804 | VisitLogicalExpr(cast<BinaryOperator>(S), Pred, Dst); |
| 805 | break; |
| 806 | } |
| 807 | |
| 808 | // Fall-through. |
| 809 | |
Ted Kremenek | b4ae33f | 2008-01-23 23:38:00 +0000 | [diff] [blame] | 810 | case Stmt::CompoundAssignOperatorClass: |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 811 | VisitBinaryOperator(cast<BinaryOperator>(S), Pred, Dst); |
| 812 | break; |
| 813 | |
Ted Kremenek | 7b8009a | 2008-01-24 02:28:56 +0000 | [diff] [blame] | 814 | case Stmt::UnaryOperatorClass: |
| 815 | VisitUnaryOperator(cast<UnaryOperator>(S), Pred, Dst); |
| 816 | break; |
| 817 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 818 | case Stmt::ParenExprClass: |
| 819 | Visit(cast<ParenExpr>(S)->getSubExpr(), Pred, Dst); |
| 820 | break; |
| 821 | |
Ted Kremenek | 874d63f | 2008-01-24 02:02:54 +0000 | [diff] [blame] | 822 | case Stmt::ImplicitCastExprClass: { |
| 823 | ImplicitCastExpr* C = cast<ImplicitCastExpr>(S); |
| 824 | VisitCast(C, C->getSubExpr(), Pred, Dst); |
| 825 | break; |
| 826 | } |
| 827 | |
| 828 | case Stmt::CastExprClass: { |
| 829 | CastExpr* C = cast<CastExpr>(S); |
| 830 | VisitCast(C, C->getSubExpr(), Pred, Dst); |
| 831 | break; |
| 832 | } |
| 833 | |
Ted Kremenek | f233d48 | 2008-02-05 00:26:40 +0000 | [diff] [blame] | 834 | case Stmt::ConditionalOperatorClass: { // '?' operator |
| 835 | ConditionalOperator* C = cast<ConditionalOperator>(S); |
| 836 | VisitGuardedExpr(S, C->getLHS(), C->getRHS(), Pred, Dst); |
| 837 | break; |
| 838 | } |
| 839 | |
| 840 | case Stmt::ChooseExprClass: { // __builtin_choose_expr |
| 841 | ChooseExpr* C = cast<ChooseExpr>(S); |
| 842 | VisitGuardedExpr(S, C->getLHS(), C->getRHS(), Pred, Dst); |
| 843 | break; |
| 844 | } |
| 845 | |
Ted Kremenek | 9de04c4 | 2008-01-24 20:55:43 +0000 | [diff] [blame] | 846 | case Stmt::DeclStmtClass: |
| 847 | VisitDeclStmt(cast<DeclStmt>(S), Pred, Dst); |
| 848 | break; |
| 849 | |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 850 | default: |
| 851 | Dst.Add(Pred); // No-op. Simply propagate the current state unchanged. |
| 852 | break; |
Ted Kremenek | 79649df | 2008-01-17 18:25:22 +0000 | [diff] [blame] | 853 | } |
Ted Kremenek | 1ccd31c | 2008-01-16 19:42:59 +0000 | [diff] [blame] | 854 | } |
| 855 | |
Ted Kremenek | ee98546 | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 856 | //===----------------------------------------------------------------------===// |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 857 | // "Assume" logic. |
| 858 | //===----------------------------------------------------------------------===// |
| 859 | |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame^] | 860 | GRConstants::StateTy GRConstants::Assume(StateTy St, LValue Cond, |
| 861 | bool Assumption, |
Ted Kremenek | a90ccfe | 2008-01-31 19:34:24 +0000 | [diff] [blame] | 862 | bool& isFeasible) { |
Ted Kremenek | a6e4d21 | 2008-02-01 06:36:40 +0000 | [diff] [blame] | 863 | |
| 864 | switch (Cond.getSubKind()) { |
| 865 | default: |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame^] | 866 | assert (false && "'Assume' not implemented for this LValue."); |
Ted Kremenek | a6e4d21 | 2008-02-01 06:36:40 +0000 | [diff] [blame] | 867 | return St; |
| 868 | |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame^] | 869 | case lval::SymbolValKind: |
| 870 | if (Assumption) |
| 871 | return AssumeSymNE(St, cast<lval::SymbolVal>(Cond).getSymbol(), |
| 872 | ValMgr.getZeroWithPtrWidth(), isFeasible); |
| 873 | else |
| 874 | return AssumeSymEQ(St, cast<lval::SymbolVal>(Cond).getSymbol(), |
| 875 | ValMgr.getZeroWithPtrWidth(), isFeasible); |
| 876 | |
Ted Kremenek | 329f854 | 2008-02-05 21:52:21 +0000 | [diff] [blame] | 877 | case lval::DeclValKind: |
Ted Kremenek | a6e4d21 | 2008-02-01 06:36:40 +0000 | [diff] [blame] | 878 | isFeasible = Assumption; |
| 879 | return St; |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame^] | 880 | |
Ted Kremenek | 329f854 | 2008-02-05 21:52:21 +0000 | [diff] [blame] | 881 | case lval::ConcreteIntKind: { |
| 882 | bool b = cast<lval::ConcreteInt>(Cond).getValue() != 0; |
Ted Kremenek | a6e4d21 | 2008-02-01 06:36:40 +0000 | [diff] [blame] | 883 | isFeasible = b ? Assumption : !Assumption; |
| 884 | return St; |
| 885 | } |
| 886 | } |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 887 | } |
| 888 | |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame^] | 889 | GRConstants::StateTy GRConstants::Assume(StateTy St, NonLValue Cond, |
| 890 | bool Assumption, |
Ted Kremenek | a90ccfe | 2008-01-31 19:34:24 +0000 | [diff] [blame] | 891 | bool& isFeasible) { |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 892 | |
| 893 | switch (Cond.getSubKind()) { |
| 894 | default: |
| 895 | assert (false && "'Assume' not implemented for this NonLValue."); |
| 896 | return St; |
| 897 | |
Ted Kremenek | 329f854 | 2008-02-05 21:52:21 +0000 | [diff] [blame] | 898 | case nonlval::ConcreteIntKind: { |
| 899 | bool b = cast<nonlval::ConcreteInt>(Cond).getValue() != 0; |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 900 | isFeasible = b ? Assumption : !Assumption; |
| 901 | return St; |
| 902 | } |
| 903 | } |
| 904 | } |
| 905 | |
Ted Kremenek | 862d5bb | 2008-02-06 00:54:14 +0000 | [diff] [blame^] | 906 | GRConstants::StateTy |
| 907 | GRConstants::AssumeSymNE(StateTy St, SymbolID sym, |
| 908 | const llvm::APSInt& V, bool& isFeasible) { |
| 909 | |
| 910 | // First, determine if sym == X, where X != V. |
| 911 | if (const llvm::APSInt* X = St.getSymVal(sym)) { |
| 912 | isFeasible = *X != V; |
| 913 | return St; |
| 914 | } |
| 915 | |
| 916 | // Second, determine if sym != V. |
| 917 | if (St.isNotEqual(sym, V)) { |
| 918 | isFeasible = true; |
| 919 | return St; |
| 920 | } |
| 921 | |
| 922 | // If we reach here, sym is not a constant and we don't know if it is != V. |
| 923 | // Make that assumption. |
| 924 | |
| 925 | isFeasible = true; |
| 926 | return StateMgr.AddNE(St, sym, V); |
| 927 | } |
| 928 | |
| 929 | GRConstants::StateTy |
| 930 | GRConstants::AssumeSymEQ(StateTy St, SymbolID sym, |
| 931 | const llvm::APSInt& V, bool& isFeasible) { |
| 932 | |
| 933 | // First, determine if sym == X, where X != V. |
| 934 | if (const llvm::APSInt* X = St.getSymVal(sym)) { |
| 935 | isFeasible = *X == V; |
| 936 | return St; |
| 937 | } |
| 938 | |
| 939 | // Second, determine if sym != V. |
| 940 | if (St.isNotEqual(sym, V)) { |
| 941 | isFeasible = false; |
| 942 | return St; |
| 943 | } |
| 944 | |
| 945 | // If we reach here, sym is not a constant and we don't know if it is == V. |
| 946 | // Make that assumption. |
| 947 | |
| 948 | isFeasible = true; |
| 949 | return StateMgr.AddEQ(St, sym, V); |
| 950 | } |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 951 | |
| 952 | //===----------------------------------------------------------------------===// |
Ted Kremenek | ee98546 | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 953 | // Driver. |
| 954 | //===----------------------------------------------------------------------===// |
| 955 | |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 956 | #ifndef NDEBUG |
Ted Kremenek | 3b4f670 | 2008-01-30 23:24:39 +0000 | [diff] [blame] | 957 | static GRConstants* GraphPrintCheckerState; |
| 958 | |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 959 | namespace llvm { |
| 960 | template<> |
| 961 | struct VISIBILITY_HIDDEN DOTGraphTraits<GRConstants::NodeTy*> : |
| 962 | public DefaultDOTGraphTraits { |
Ted Kremenek | 9ff731d | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 963 | |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 964 | static void PrintKindLabel(std::ostream& Out, VarBindKey::Kind kind) { |
Ted Kremenek | 803c9ed | 2008-01-23 22:30:44 +0000 | [diff] [blame] | 965 | switch (kind) { |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 966 | case VarBindKey::IsSubExpr: Out << "Sub-Expressions:\\l"; break; |
| 967 | case VarBindKey::IsDecl: Out << "Variables:\\l"; break; |
| 968 | case VarBindKey::IsBlkExpr: Out << "Block-level Expressions:\\l"; break; |
| 969 | default: assert (false && "Unknown VarBindKey type."); |
Ted Kremenek | 803c9ed | 2008-01-23 22:30:44 +0000 | [diff] [blame] | 970 | } |
| 971 | } |
| 972 | |
Ted Kremenek | 9ff731d | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 973 | static void PrintKind(std::ostream& Out, GRConstants::StateTy M, |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 974 | VarBindKey::Kind kind, bool isFirstGroup = false) { |
Ted Kremenek | 9ff731d | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 975 | bool isFirst = true; |
| 976 | |
Ted Kremenek | b80cbfe | 2008-02-05 18:19:15 +0000 | [diff] [blame] | 977 | for (GRConstants::StateTy::vb_iterator I=M.begin(), E=M.end();I!=E;++I) { |
Ted Kremenek | 9ff731d | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 978 | if (I.getKey().getKind() != kind) |
| 979 | continue; |
| 980 | |
| 981 | if (isFirst) { |
| 982 | if (!isFirstGroup) Out << "\\l\\l"; |
| 983 | PrintKindLabel(Out, kind); |
| 984 | isFirst = false; |
| 985 | } |
| 986 | else |
| 987 | Out << "\\l"; |
| 988 | |
| 989 | Out << ' '; |
| 990 | |
| 991 | if (ValueDecl* V = dyn_cast<ValueDecl>(I.getKey())) |
| 992 | Out << V->getName(); |
| 993 | else { |
| 994 | Stmt* E = cast<Stmt>(I.getKey()); |
| 995 | Out << " (" << (void*) E << ") "; |
| 996 | E->printPretty(Out); |
| 997 | } |
| 998 | |
| 999 | Out << " : "; |
| 1000 | I.getData().print(Out); |
| 1001 | } |
| 1002 | } |
| 1003 | |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1004 | static std::string getNodeLabel(const GRConstants::NodeTy* N, void*) { |
| 1005 | std::ostringstream Out; |
Ted Kremenek | 803c9ed | 2008-01-23 22:30:44 +0000 | [diff] [blame] | 1006 | |
| 1007 | // Program Location. |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1008 | ProgramPoint Loc = N->getLocation(); |
| 1009 | |
| 1010 | switch (Loc.getKind()) { |
| 1011 | case ProgramPoint::BlockEntranceKind: |
| 1012 | Out << "Block Entrance: B" |
| 1013 | << cast<BlockEntrance>(Loc).getBlock()->getBlockID(); |
| 1014 | break; |
| 1015 | |
| 1016 | case ProgramPoint::BlockExitKind: |
| 1017 | assert (false); |
| 1018 | break; |
| 1019 | |
| 1020 | case ProgramPoint::PostStmtKind: { |
| 1021 | const PostStmt& L = cast<PostStmt>(Loc); |
Ted Kremenek | 9ff731d | 2008-01-24 22:27:20 +0000 | [diff] [blame] | 1022 | Out << L.getStmt()->getStmtClassName() << ':' |
| 1023 | << (void*) L.getStmt() << ' '; |
| 1024 | |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1025 | L.getStmt()->printPretty(Out); |
| 1026 | break; |
| 1027 | } |
| 1028 | |
| 1029 | default: { |
| 1030 | const BlockEdge& E = cast<BlockEdge>(Loc); |
| 1031 | Out << "Edge: (B" << E.getSrc()->getBlockID() << ", B" |
| 1032 | << E.getDst()->getBlockID() << ')'; |
Ted Kremenek | b38911f | 2008-01-30 23:03:39 +0000 | [diff] [blame] | 1033 | |
| 1034 | if (Stmt* T = E.getSrc()->getTerminator()) { |
| 1035 | Out << "\\|Terminator: "; |
| 1036 | E.getSrc()->printTerminator(Out); |
| 1037 | |
| 1038 | if (isa<SwitchStmt>(T)) { |
| 1039 | // FIXME |
| 1040 | } |
| 1041 | else { |
| 1042 | Out << "\\lCondition: "; |
| 1043 | if (*E.getSrc()->succ_begin() == E.getDst()) |
| 1044 | Out << "true"; |
| 1045 | else |
| 1046 | Out << "false"; |
| 1047 | } |
| 1048 | |
| 1049 | Out << "\\l"; |
| 1050 | } |
Ted Kremenek | 3b4f670 | 2008-01-30 23:24:39 +0000 | [diff] [blame] | 1051 | |
| 1052 | if (GraphPrintCheckerState->isUninitControlFlow(N)) { |
| 1053 | Out << "\\|Control-flow based on\\lUninitialized value.\\l"; |
| 1054 | } |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1055 | } |
| 1056 | } |
| 1057 | |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 1058 | Out << "\\|StateID: " << (void*) N->getState().getImpl() << "\\|"; |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1059 | |
Ted Kremenek | 9153f73 | 2008-02-05 07:17:49 +0000 | [diff] [blame] | 1060 | PrintKind(Out, N->getState(), VarBindKey::IsDecl, true); |
| 1061 | PrintKind(Out, N->getState(), VarBindKey::IsBlkExpr); |
| 1062 | PrintKind(Out, N->getState(), VarBindKey::IsSubExpr); |
Ted Kremenek | 803c9ed | 2008-01-23 22:30:44 +0000 | [diff] [blame] | 1063 | |
Ted Kremenek | 803c9ed | 2008-01-23 22:30:44 +0000 | [diff] [blame] | 1064 | Out << "\\l"; |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1065 | return Out.str(); |
| 1066 | } |
| 1067 | }; |
| 1068 | } // end llvm namespace |
| 1069 | #endif |
| 1070 | |
Ted Kremenek | ee98546 | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 1071 | namespace clang { |
Ted Kremenek | cb48b9c | 2008-01-29 00:33:40 +0000 | [diff] [blame] | 1072 | void RunGRConstants(CFG& cfg, FunctionDecl& FD, ASTContext& Ctx) { |
| 1073 | GREngine<GRConstants> Engine(cfg, FD, Ctx); |
Ted Kremenek | ee98546 | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 1074 | Engine.ExecuteWorkList(); |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1075 | #ifndef NDEBUG |
Ted Kremenek | 3b4f670 | 2008-01-30 23:24:39 +0000 | [diff] [blame] | 1076 | GraphPrintCheckerState = &Engine.getCheckerState(); |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1077 | llvm::ViewGraph(*Engine.getGraph().roots_begin(),"GRConstants"); |
Ted Kremenek | 3b4f670 | 2008-01-30 23:24:39 +0000 | [diff] [blame] | 1078 | GraphPrintCheckerState = NULL; |
Ted Kremenek | aa66a32 | 2008-01-16 21:46:15 +0000 | [diff] [blame] | 1079 | #endif |
Ted Kremenek | ee98546 | 2008-01-16 18:18:48 +0000 | [diff] [blame] | 1080 | } |
Ted Kremenek | ab2b8c5 | 2008-01-23 19:59:44 +0000 | [diff] [blame] | 1081 | } // end clang namespace |