blob: e54d0ffe00d845bd01b7f158462a7f9f3cbbd2ce [file] [log] [blame]
Ted Kremenek45021952009-02-14 17:08:39 +00001//== SimpleConstraintManager.cpp --------------------------------*- C++ -*--==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines SimpleConstraintManager, a class that holds code shared
11// between BasicConstraintManager and RangeConstraintManager.
12//
13//===----------------------------------------------------------------------===//
14
15#include "SimpleConstraintManager.h"
Ted Kremenek21142582010-12-23 19:38:26 +000016#include "clang/StaticAnalyzer/PathSensitive/ExprEngine.h"
17#include "clang/StaticAnalyzer/PathSensitive/GRState.h"
18#include "clang/StaticAnalyzer/PathSensitive/Checker.h"
Ted Kremenek45021952009-02-14 17:08:39 +000019
20namespace clang {
21
Ted Kremenek9ef65372010-12-23 07:20:52 +000022namespace ento {
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +000023
Ted Kremenek45021952009-02-14 17:08:39 +000024SimpleConstraintManager::~SimpleConstraintManager() {}
25
Ted Kremenek66b52712009-03-11 02:22:59 +000026bool SimpleConstraintManager::canReasonAbout(SVal X) const {
Ted Kremeneke0e4ebf2009-03-26 03:35:11 +000027 if (nonloc::SymExprVal *SymVal = dyn_cast<nonloc::SymExprVal>(&X)) {
28 const SymExpr *SE = SymVal->getSymbolicExpression();
Mike Stump1eb44332009-09-09 15:08:12 +000029
Ted Kremeneke0e4ebf2009-03-26 03:35:11 +000030 if (isa<SymbolData>(SE))
31 return true;
Mike Stump1eb44332009-09-09 15:08:12 +000032
Ted Kremeneke0e4ebf2009-03-26 03:35:11 +000033 if (const SymIntExpr *SIE = dyn_cast<SymIntExpr>(SE)) {
34 switch (SIE->getOpcode()) {
35 // We don't reason yet about bitwise-constraints on symbolic values.
John McCall2de56d12010-08-25 11:45:40 +000036 case BO_And:
37 case BO_Or:
38 case BO_Xor:
Ted Kremeneke0e4ebf2009-03-26 03:35:11 +000039 return false;
Jordy Roseba0f61c2010-06-18 22:49:11 +000040 // We don't reason yet about these arithmetic constraints on
41 // symbolic values.
John McCall2de56d12010-08-25 11:45:40 +000042 case BO_Mul:
43 case BO_Div:
44 case BO_Rem:
45 case BO_Shl:
46 case BO_Shr:
Ted Kremeneke0e4ebf2009-03-26 03:35:11 +000047 return false;
48 // All other cases.
49 default:
50 return true;
Mike Stump1eb44332009-09-09 15:08:12 +000051 }
Ted Kremeneke0e4ebf2009-03-26 03:35:11 +000052 }
53
54 return false;
Ted Kremenek7de20fe2009-03-11 02:29:48 +000055 }
56
Ted Kremenek66b52712009-03-11 02:22:59 +000057 return true;
58}
Mike Stump1eb44332009-09-09 15:08:12 +000059
Ted Kremenek28f47b92010-12-01 22:16:56 +000060const GRState *SimpleConstraintManager::assume(const GRState *state,
Ted Kremenek5b9bd212009-09-11 22:07:28 +000061 DefinedSVal Cond,
62 bool Assumption) {
Ted Kremenek45021952009-02-14 17:08:39 +000063 if (isa<NonLoc>(Cond))
Ted Kremenek28f47b92010-12-01 22:16:56 +000064 return assume(state, cast<NonLoc>(Cond), Assumption);
Ted Kremenek45021952009-02-14 17:08:39 +000065 else
Ted Kremenek28f47b92010-12-01 22:16:56 +000066 return assume(state, cast<Loc>(Cond), Assumption);
Ted Kremenek45021952009-02-14 17:08:39 +000067}
68
Ted Kremenek28f47b92010-12-01 22:16:56 +000069const GRState *SimpleConstraintManager::assume(const GRState *state, Loc cond,
Ted Kremenek32a58082010-01-05 00:15:18 +000070 bool assumption) {
Ted Kremenek28f47b92010-12-01 22:16:56 +000071 state = assumeAux(state, cond, assumption);
Ted Kremenek32a58082010-01-05 00:15:18 +000072 return SU.ProcessAssume(state, cond, assumption);
Ted Kremenek45021952009-02-14 17:08:39 +000073}
74
Ted Kremenek28f47b92010-12-01 22:16:56 +000075const GRState *SimpleConstraintManager::assumeAux(const GRState *state,
Ted Kremeneka591bc02009-06-18 22:57:13 +000076 Loc Cond, bool Assumption) {
Mike Stump1eb44332009-09-09 15:08:12 +000077
Ted Kremeneka591bc02009-06-18 22:57:13 +000078 BasicValueFactory &BasicVals = state->getBasicVals();
Ted Kremenek45021952009-02-14 17:08:39 +000079
80 switch (Cond.getSubKind()) {
81 default:
82 assert (false && "'Assume' not implemented for this Loc.");
Ted Kremeneka591bc02009-06-18 22:57:13 +000083 return state;
Ted Kremenek45021952009-02-14 17:08:39 +000084
Ted Kremenek45021952009-02-14 17:08:39 +000085 case loc::MemRegionKind: {
86 // FIXME: Should this go into the storemanager?
Mike Stump1eb44332009-09-09 15:08:12 +000087
Ted Kremeneka591bc02009-06-18 22:57:13 +000088 const MemRegion *R = cast<loc::MemRegionVal>(Cond).getRegion();
89 const SubRegion *SubR = dyn_cast<SubRegion>(R);
Ted Kremenek45021952009-02-14 17:08:39 +000090
91 while (SubR) {
92 // FIXME: now we only find the first symbolic region.
Ted Kremeneka591bc02009-06-18 22:57:13 +000093 if (const SymbolicRegion *SymR = dyn_cast<SymbolicRegion>(SubR)) {
Jordy Roseba0f61c2010-06-18 22:49:11 +000094 const llvm::APSInt &zero = BasicVals.getZeroWithPtrWidth();
Zhongxing Xu3330dcb2009-04-10 06:06:13 +000095 if (Assumption)
Ted Kremenek28f47b92010-12-01 22:16:56 +000096 return assumeSymNE(state, SymR->getSymbol(), zero, zero);
Zhongxing Xu3330dcb2009-04-10 06:06:13 +000097 else
Ted Kremenek28f47b92010-12-01 22:16:56 +000098 return assumeSymEQ(state, SymR->getSymbol(), zero, zero);
Zhongxing Xu3330dcb2009-04-10 06:06:13 +000099 }
Ted Kremenek45021952009-02-14 17:08:39 +0000100 SubR = dyn_cast<SubRegion>(SubR->getSuperRegion());
101 }
Mike Stump1eb44332009-09-09 15:08:12 +0000102
Ted Kremenek45021952009-02-14 17:08:39 +0000103 // FALL-THROUGH.
104 }
Mike Stump1eb44332009-09-09 15:08:12 +0000105
Ted Kremenek45021952009-02-14 17:08:39 +0000106 case loc::GotoLabelKind:
Ted Kremeneka591bc02009-06-18 22:57:13 +0000107 return Assumption ? state : NULL;
Ted Kremenek45021952009-02-14 17:08:39 +0000108
109 case loc::ConcreteIntKind: {
Mike Stump1eb44332009-09-09 15:08:12 +0000110 bool b = cast<loc::ConcreteInt>(Cond).getValue() != 0;
Ted Kremeneka591bc02009-06-18 22:57:13 +0000111 bool isFeasible = b ? Assumption : !Assumption;
112 return isFeasible ? state : NULL;
Ted Kremenek45021952009-02-14 17:08:39 +0000113 }
114 } // end switch
115}
116
Ted Kremenek28f47b92010-12-01 22:16:56 +0000117const GRState *SimpleConstraintManager::assume(const GRState *state,
Ted Kremenek32a58082010-01-05 00:15:18 +0000118 NonLoc cond,
119 bool assumption) {
Ted Kremenek28f47b92010-12-01 22:16:56 +0000120 state = assumeAux(state, cond, assumption);
Ted Kremenek32a58082010-01-05 00:15:18 +0000121 return SU.ProcessAssume(state, cond, assumption);
Ted Kremenek45021952009-02-14 17:08:39 +0000122}
123
Jordy Roseba0f61c2010-06-18 22:49:11 +0000124static BinaryOperator::Opcode NegateComparison(BinaryOperator::Opcode op) {
125 // FIXME: This should probably be part of BinaryOperator, since this isn't
Ted Kremenek846eabd2010-12-01 21:28:31 +0000126 // the only place it's used. (This code was copied from SimpleSValBuilder.cpp.)
Jordy Roseba0f61c2010-06-18 22:49:11 +0000127 switch (op) {
128 default:
129 assert(false && "Invalid opcode.");
John McCall2de56d12010-08-25 11:45:40 +0000130 case BO_LT: return BO_GE;
131 case BO_GT: return BO_LE;
132 case BO_LE: return BO_GT;
133 case BO_GE: return BO_LT;
134 case BO_EQ: return BO_NE;
135 case BO_NE: return BO_EQ;
Jordy Roseba0f61c2010-06-18 22:49:11 +0000136 }
137}
138
Ted Kremenek28f47b92010-12-01 22:16:56 +0000139const GRState *SimpleConstraintManager::assumeAux(const GRState *state,
Ted Kremeneka591bc02009-06-18 22:57:13 +0000140 NonLoc Cond,
141 bool Assumption) {
Mike Stump1eb44332009-09-09 15:08:12 +0000142
Jordy Roseba0f61c2010-06-18 22:49:11 +0000143 // We cannot reason about SymSymExprs,
144 // and can only reason about some SymIntExprs.
Zhongxing Xua129eb92009-03-25 05:58:37 +0000145 if (!canReasonAbout(Cond)) {
Ted Kremeneka591bc02009-06-18 22:57:13 +0000146 // Just return the current state indicating that the path is feasible.
147 // This may be an over-approximation of what is possible.
148 return state;
Mike Stump1eb44332009-09-09 15:08:12 +0000149 }
Zhongxing Xua129eb92009-03-25 05:58:37 +0000150
Ted Kremeneka591bc02009-06-18 22:57:13 +0000151 BasicValueFactory &BasicVals = state->getBasicVals();
152 SymbolManager &SymMgr = state->getSymbolManager();
Ted Kremenek45021952009-02-14 17:08:39 +0000153
154 switch (Cond.getSubKind()) {
155 default:
156 assert(false && "'Assume' not implemented for this NonLoc");
157
158 case nonloc::SymbolValKind: {
159 nonloc::SymbolVal& SV = cast<nonloc::SymbolVal>(Cond);
160 SymbolRef sym = SV.getSymbol();
Mike Stump1eb44332009-09-09 15:08:12 +0000161 QualType T = SymMgr.getType(sym);
Ted Kremeneka591bc02009-06-18 22:57:13 +0000162 const llvm::APSInt &zero = BasicVals.getValue(0, T);
Jordy Roseba0f61c2010-06-18 22:49:11 +0000163 if (Assumption)
Ted Kremenek28f47b92010-12-01 22:16:56 +0000164 return assumeSymNE(state, sym, zero, zero);
Jordy Roseba0f61c2010-06-18 22:49:11 +0000165 else
Ted Kremenek28f47b92010-12-01 22:16:56 +0000166 return assumeSymEQ(state, sym, zero, zero);
Ted Kremenek45021952009-02-14 17:08:39 +0000167 }
168
Ted Kremeneke0e4ebf2009-03-26 03:35:11 +0000169 case nonloc::SymExprValKind: {
170 nonloc::SymExprVal V = cast<nonloc::SymExprVal>(Cond);
Ted Kremenek80417472009-09-25 00:18:15 +0000171
Jordy Roseba0f61c2010-06-18 22:49:11 +0000172 // For now, we only handle expressions whose RHS is an integer.
173 // All other expressions are assumed to be feasible.
174 const SymIntExpr *SE = dyn_cast<SymIntExpr>(V.getSymbolicExpression());
175 if (!SE)
176 return state;
Mike Stump1eb44332009-09-09 15:08:12 +0000177
Jordy Roseba0f61c2010-06-18 22:49:11 +0000178 BinaryOperator::Opcode op = SE->getOpcode();
Jordy Rose5ca129c2010-06-27 01:20:56 +0000179 // Implicitly compare non-comparison expressions to 0.
180 if (!BinaryOperator::isComparisonOp(op)) {
181 QualType T = SymMgr.getType(SE);
182 const llvm::APSInt &zero = BasicVals.getValue(0, T);
John McCall2de56d12010-08-25 11:45:40 +0000183 op = (Assumption ? BO_NE : BO_EQ);
Ted Kremenek28f47b92010-12-01 22:16:56 +0000184 return assumeSymRel(state, SE, op, zero);
Jordy Rose5ca129c2010-06-27 01:20:56 +0000185 }
Jordy Roseba0f61c2010-06-18 22:49:11 +0000186
187 // From here on out, op is the real comparison we'll be testing.
188 if (!Assumption)
189 op = NegateComparison(op);
190
Ted Kremenek28f47b92010-12-01 22:16:56 +0000191 return assumeSymRel(state, SE->getLHS(), op, SE->getRHS());
Ted Kremeneke0e4ebf2009-03-26 03:35:11 +0000192 }
Ted Kremenek45021952009-02-14 17:08:39 +0000193
194 case nonloc::ConcreteIntKind: {
195 bool b = cast<nonloc::ConcreteInt>(Cond).getValue() != 0;
Ted Kremeneka591bc02009-06-18 22:57:13 +0000196 bool isFeasible = b ? Assumption : !Assumption;
197 return isFeasible ? state : NULL;
Ted Kremenek45021952009-02-14 17:08:39 +0000198 }
199
200 case nonloc::LocAsIntegerKind:
Ted Kremenek28f47b92010-12-01 22:16:56 +0000201 return assumeAux(state, cast<nonloc::LocAsInteger>(Cond).getLoc(),
Ted Kremeneka591bc02009-06-18 22:57:13 +0000202 Assumption);
Ted Kremenek45021952009-02-14 17:08:39 +0000203 } // end switch
204}
205
Ted Kremenek28f47b92010-12-01 22:16:56 +0000206const GRState *SimpleConstraintManager::assumeSymRel(const GRState *state,
Jordy Roseba0f61c2010-06-18 22:49:11 +0000207 const SymExpr *LHS,
208 BinaryOperator::Opcode op,
209 const llvm::APSInt& Int) {
210 assert(BinaryOperator::isComparisonOp(op) &&
211 "Non-comparison ops should be rewritten as comparisons to zero.");
Ted Kremenek45021952009-02-14 17:08:39 +0000212
Jordy Roseba0f61c2010-06-18 22:49:11 +0000213 // We only handle simple comparisons of the form "$sym == constant"
214 // or "($sym+constant1) == constant2".
215 // The adjustment is "constant1" in the above expression. It's used to
216 // "slide" the solution range around for modular arithmetic. For example,
217 // x < 4 has the solution [0, 3]. x+2 < 4 has the solution [0-2, 3-2], which
218 // in modular arithmetic is [0, 1] U [UINT_MAX-1, UINT_MAX]. It's up to
219 // the subclasses of SimpleConstraintManager to handle the adjustment.
Jordy Roseb4954a42010-06-21 20:15:15 +0000220 llvm::APSInt Adjustment;
Ted Kremeneke0e4ebf2009-03-26 03:35:11 +0000221
Jordy Roseba0f61c2010-06-18 22:49:11 +0000222 // First check if the LHS is a simple symbol reference.
223 SymbolRef Sym = dyn_cast<SymbolData>(LHS);
Jordy Roseb4954a42010-06-21 20:15:15 +0000224 if (Sym) {
225 Adjustment = 0;
226 } else {
Jordy Roseba0f61c2010-06-18 22:49:11 +0000227 // Next, see if it's a "($sym+constant1)" expression.
228 const SymIntExpr *SE = dyn_cast<SymIntExpr>(LHS);
Mike Stump1eb44332009-09-09 15:08:12 +0000229
Jordy Roseba0f61c2010-06-18 22:49:11 +0000230 // We don't handle "($sym1+$sym2)".
231 // Give up and assume the constraint is feasible.
232 if (!SE)
233 return state;
234
235 // We don't handle "(<expr>+constant1)".
236 // Give up and assume the constraint is feasible.
237 Sym = dyn_cast<SymbolData>(SE->getLHS());
238 if (!Sym)
239 return state;
240
241 // Get the constant out of the expression "($sym+constant1)".
242 switch (SE->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +0000243 case BO_Add:
Jordy Roseba0f61c2010-06-18 22:49:11 +0000244 Adjustment = SE->getRHS();
245 break;
John McCall2de56d12010-08-25 11:45:40 +0000246 case BO_Sub:
Jordy Roseba0f61c2010-06-18 22:49:11 +0000247 Adjustment = -SE->getRHS();
248 break;
249 default:
250 // We don't handle non-additive operators.
251 // Give up and assume the constraint is feasible.
252 return state;
253 }
254 }
255
Jordy Roseb4954a42010-06-21 20:15:15 +0000256 // FIXME: This next section is a hack. It silently converts the integers to
257 // be of the same type as the symbol, which is not always correct. Really the
258 // comparisons should be performed using the Int's type, then mapped back to
259 // the symbol's range of values.
260 GRStateManager &StateMgr = state->getStateManager();
261 ASTContext &Ctx = StateMgr.getContext();
262
263 QualType T = Sym->getType(Ctx);
264 assert(T->isIntegerType() || Loc::IsLocType(T));
265 unsigned bitwidth = Ctx.getTypeSize(T);
266 bool isSymUnsigned = T->isUnsignedIntegerType() || Loc::IsLocType(T);
267
268 // Convert the adjustment.
269 Adjustment.setIsUnsigned(isSymUnsigned);
Jay Foad9f71a8f2010-12-07 08:25:34 +0000270 Adjustment = Adjustment.extOrTrunc(bitwidth);
Jordy Roseb4954a42010-06-21 20:15:15 +0000271
272 // Convert the right-hand side integer.
273 llvm::APSInt ConvertedInt(Int, isSymUnsigned);
Jay Foad9f71a8f2010-12-07 08:25:34 +0000274 ConvertedInt = ConvertedInt.extOrTrunc(bitwidth);
Jordy Roseb4954a42010-06-21 20:15:15 +0000275
Jordy Roseba0f61c2010-06-18 22:49:11 +0000276 switch (op) {
Ted Kremenek45021952009-02-14 17:08:39 +0000277 default:
Ted Kremenek28f47b92010-12-01 22:16:56 +0000278 // No logic yet for other operators. assume the constraint is feasible.
Ted Kremeneka591bc02009-06-18 22:57:13 +0000279 return state;
Ted Kremenek45021952009-02-14 17:08:39 +0000280
John McCall2de56d12010-08-25 11:45:40 +0000281 case BO_EQ:
Ted Kremenek28f47b92010-12-01 22:16:56 +0000282 return assumeSymEQ(state, Sym, ConvertedInt, Adjustment);
Ted Kremenek45021952009-02-14 17:08:39 +0000283
John McCall2de56d12010-08-25 11:45:40 +0000284 case BO_NE:
Ted Kremenek28f47b92010-12-01 22:16:56 +0000285 return assumeSymNE(state, Sym, ConvertedInt, Adjustment);
Jordy Roseba0f61c2010-06-18 22:49:11 +0000286
John McCall2de56d12010-08-25 11:45:40 +0000287 case BO_GT:
Ted Kremenek28f47b92010-12-01 22:16:56 +0000288 return assumeSymGT(state, Sym, ConvertedInt, Adjustment);
Ted Kremenek45021952009-02-14 17:08:39 +0000289
John McCall2de56d12010-08-25 11:45:40 +0000290 case BO_GE:
Ted Kremenek28f47b92010-12-01 22:16:56 +0000291 return assumeSymGE(state, Sym, ConvertedInt, Adjustment);
Ted Kremenek45021952009-02-14 17:08:39 +0000292
John McCall2de56d12010-08-25 11:45:40 +0000293 case BO_LT:
Ted Kremenek28f47b92010-12-01 22:16:56 +0000294 return assumeSymLT(state, Sym, ConvertedInt, Adjustment);
Mike Stump1eb44332009-09-09 15:08:12 +0000295
John McCall2de56d12010-08-25 11:45:40 +0000296 case BO_LE:
Ted Kremenek28f47b92010-12-01 22:16:56 +0000297 return assumeSymLE(state, Sym, ConvertedInt, Adjustment);
Ted Kremenek45021952009-02-14 17:08:39 +0000298 } // end switch
299}
300
Ted Kremenek9ef65372010-12-23 07:20:52 +0000301} // end of namespace ento
Argyrios Kyrtzidis5a4f98f2010-12-22 18:53:20 +0000302
303} // end of namespace clang