blob: c08f163a1f7b8432282720745a198936181c2d56 [file] [log] [blame]
Tom Caredb2fa8a2010-07-06 21:43:29 +00001//==- IdempotentOperationChecker.cpp - Idempotent Operations ----*- 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 a set of path-sensitive checks for idempotent and/or
11// tautological operations. Each potential operation is checked along all paths
12// to see if every path results in a pointless operation.
13// +-------------------------------------------+
14// |Table of idempotent/tautological operations|
15// +-------------------------------------------+
16//+--------------------------------------------------------------------------+
17//|Operator | x op x | x op 1 | 1 op x | x op 0 | 0 op x | x op ~0 | ~0 op x |
18//+--------------------------------------------------------------------------+
19// +, += | | | | x | x | |
20// -, -= | | | | x | -x | |
21// *, *= | | x | x | 0 | 0 | |
22// /, /= | 1 | x | | N/A | 0 | |
23// &, &= | x | | | 0 | 0 | x | x
24// |, |= | x | | | x | x | ~0 | ~0
25// ^, ^= | 0 | | | x | x | |
26// <<, <<= | | | | x | 0 | |
27// >>, >>= | | | | x | 0 | |
28// || | 1 | 1 | 1 | x | x | 1 | 1
29// && | 1 | x | x | 0 | 0 | x | x
30// = | x | | | | | |
31// == | 1 | | | | | |
32// >= | 1 | | | | | |
33// <= | 1 | | | | | |
34// > | 0 | | | | | |
35// < | 0 | | | | | |
36// != | 0 | | | | | |
37//===----------------------------------------------------------------------===//
38//
Tom Carea7a8a452010-08-12 22:45:47 +000039// Things TODO:
Tom Caredb2fa8a2010-07-06 21:43:29 +000040// - Improved error messages
41// - Handle mixed assumptions (which assumptions can belong together?)
42// - Finer grained false positive control (levels)
Tom Carea7a8a452010-08-12 22:45:47 +000043// - Handling ~0 values
Tom Caredb2fa8a2010-07-06 21:43:29 +000044
Argyrios Kyrtzidisc9f2e0f2011-02-15 22:55:14 +000045#include "ClangSACheckers.h"
Tom Carea7a8a452010-08-12 22:45:47 +000046#include "clang/Analysis/CFGStmtMap.h"
Tom Caredb34ab72010-08-23 19:51:57 +000047#include "clang/Analysis/Analyses/PseudoConstantAnalysis.h"
Ted Kremenek42461ee2011-02-23 01:51:59 +000048#include "clang/Analysis/Analyses/CFGReachabilityAnalysis.h"
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000049#include "clang/StaticAnalyzer/Core/Checker.h"
Argyrios Kyrtzidis695fb502011-02-17 21:39:17 +000050#include "clang/StaticAnalyzer/Core/CheckerManager.h"
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +000051#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
Ted Kremenek9b663712011-02-10 01:03:03 +000052#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
53#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
54#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h"
Ted Kremenek9b663712011-02-10 01:03:03 +000055#include "clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h"
56#include "clang/StaticAnalyzer/Core/PathSensitive/SVals.h"
Tom Caredb2fa8a2010-07-06 21:43:29 +000057#include "clang/AST/Stmt.h"
58#include "llvm/ADT/DenseMap.h"
Tom Carea7a8a452010-08-12 22:45:47 +000059#include "llvm/ADT/SmallSet.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000060#include "llvm/ADT/SmallString.h"
Ted Kremenek8e376772011-02-14 17:59:20 +000061#include "llvm/ADT/BitVector.h"
Chandler Carruth256565b2010-07-07 00:07:37 +000062#include "llvm/Support/ErrorHandling.h"
Tom Caredb2fa8a2010-07-06 21:43:29 +000063
64using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000065using namespace ento;
Tom Caredb2fa8a2010-07-06 21:43:29 +000066
67namespace {
68class IdempotentOperationChecker
Argyrios Kyrtzidisec8605f2011-03-01 01:16:21 +000069 : public Checker<check::PreStmt<BinaryOperator>,
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +000070 check::PostStmt<BinaryOperator>,
71 check::EndAnalysis> {
Tom Careb0627952010-09-09 02:04:52 +000072public:
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +000073 void checkPreStmt(const BinaryOperator *B, CheckerContext &C) const;
74 void checkPostStmt(const BinaryOperator *B, CheckerContext &C) const;
75 void checkEndAnalysis(ExplodedGraph &G, BugReporter &B,ExprEngine &Eng) const;
Tom Careb0627952010-09-09 02:04:52 +000076
77private:
78 // Our assumption about a particular operation.
79 enum Assumption { Possible = 0, Impossible, Equal, LHSis1, RHSis1, LHSis0,
80 RHSis0 };
81
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +000082 static void UpdateAssumption(Assumption &A, const Assumption &New);
Tom Careb0627952010-09-09 02:04:52 +000083
84 // False positive reduction methods
85 static bool isSelfAssign(const Expr *LHS, const Expr *RHS);
Ted Kremenek1d26f482011-10-24 01:32:45 +000086 static bool isUnused(const Expr *E, AnalysisDeclContext *AC);
Tom Careb0627952010-09-09 02:04:52 +000087 static bool isTruncationExtensionAssignment(const Expr *LHS,
88 const Expr *RHS);
Ted Kremenek1d26f482011-10-24 01:32:45 +000089 static bool pathWasCompletelyAnalyzed(AnalysisDeclContext *AC,
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +000090 const CFGBlock *CB,
91 const CoreEngine &CE);
Tom Careb0627952010-09-09 02:04:52 +000092 static bool CanVary(const Expr *Ex,
Ted Kremenek1d26f482011-10-24 01:32:45 +000093 AnalysisDeclContext *AC);
Tom Careb0627952010-09-09 02:04:52 +000094 static bool isConstantOrPseudoConstant(const DeclRefExpr *DR,
Ted Kremenek1d26f482011-10-24 01:32:45 +000095 AnalysisDeclContext *AC);
Tom Careb0627952010-09-09 02:04:52 +000096 static bool containsNonLocalVarDecl(const Stmt *S);
Tom Careb0627952010-09-09 02:04:52 +000097
98 // Hash table and related data structures
99 struct BinaryOperatorData {
Anna Zaks3381a732011-10-03 23:07:13 +0000100 BinaryOperatorData() : assumption(Possible) {}
Tom Careb0627952010-09-09 02:04:52 +0000101
102 Assumption assumption;
Tom Careb0627952010-09-09 02:04:52 +0000103 ExplodedNodeSet explodedNodes; // Set of ExplodedNodes that refer to a
104 // BinaryOperator
105 };
106 typedef llvm::DenseMap<const BinaryOperator *, BinaryOperatorData>
107 AssumptionMap;
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +0000108 mutable AssumptionMap hash;
Tom Caredb2fa8a2010-07-06 21:43:29 +0000109};
110}
111
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +0000112void IdempotentOperationChecker::checkPreStmt(const BinaryOperator *B,
113 CheckerContext &C) const {
Ted Kremenekfe97fa12010-08-02 20:33:02 +0000114 // Find or create an entry in the hash for this BinaryOperator instance.
115 // If we haven't done a lookup before, it will get default initialized to
Tom Care2bbbe502010-09-02 23:30:22 +0000116 // 'Possible'. At this stage we do not store the ExplodedNode, as it has not
117 // been created yet.
118 BinaryOperatorData &Data = hash[B];
119 Assumption &A = Data.assumption;
Ted Kremenek1d26f482011-10-24 01:32:45 +0000120 AnalysisDeclContext *AC = C.getCurrentAnalysisDeclContext();
Tom Caredb2fa8a2010-07-06 21:43:29 +0000121
122 // If we already have visited this node on a path that does not contain an
123 // idempotent operation, return immediately.
124 if (A == Impossible)
125 return;
126
Tom Carea7a8a452010-08-12 22:45:47 +0000127 // Retrieve both sides of the operator and determine if they can vary (which
128 // may mean this is a false positive.
Tom Caredb2fa8a2010-07-06 21:43:29 +0000129 const Expr *LHS = B->getLHS();
130 const Expr *RHS = B->getRHS();
Tom Care245adab2010-08-18 21:17:24 +0000131
Tom Caredb34ab72010-08-23 19:51:57 +0000132 // At this stage we can calculate whether each side contains a false positive
133 // that applies to all operators. We only need to calculate this the first
134 // time.
135 bool LHSContainsFalsePositive = false, RHSContainsFalsePositive = false;
Tom Care245adab2010-08-18 21:17:24 +0000136 if (A == Possible) {
Tom Caredb34ab72010-08-23 19:51:57 +0000137 // An expression contains a false positive if it can't vary, or if it
138 // contains a known false positive VarDecl.
139 LHSContainsFalsePositive = !CanVary(LHS, AC)
140 || containsNonLocalVarDecl(LHS);
141 RHSContainsFalsePositive = !CanVary(RHS, AC)
142 || containsNonLocalVarDecl(RHS);
Tom Care245adab2010-08-18 21:17:24 +0000143 }
Tom Caredb2fa8a2010-07-06 21:43:29 +0000144
Ted Kremenek8bef8232012-01-26 21:29:00 +0000145 ProgramStateRef state = C.getState();
Ted Kremenek5eca4822012-01-06 22:09:28 +0000146 const LocationContext *LCtx = C.getLocationContext();
147 SVal LHSVal = state->getSVal(LHS, LCtx);
148 SVal RHSVal = state->getSVal(RHS, LCtx);
Tom Caredb2fa8a2010-07-06 21:43:29 +0000149
150 // If either value is unknown, we can't be 100% sure of all paths.
151 if (LHSVal.isUnknownOrUndef() || RHSVal.isUnknownOrUndef()) {
152 A = Impossible;
153 return;
154 }
155 BinaryOperator::Opcode Op = B->getOpcode();
156
157 // Dereference the LHS SVal if this is an assign operation
158 switch (Op) {
159 default:
160 break;
161
162 // Fall through intentional
John McCall2de56d12010-08-25 11:45:40 +0000163 case BO_AddAssign:
164 case BO_SubAssign:
165 case BO_MulAssign:
166 case BO_DivAssign:
167 case BO_AndAssign:
168 case BO_OrAssign:
169 case BO_XorAssign:
170 case BO_ShlAssign:
171 case BO_ShrAssign:
172 case BO_Assign:
Tom Caredb2fa8a2010-07-06 21:43:29 +0000173 // Assign statements have one extra level of indirection
174 if (!isa<Loc>(LHSVal)) {
175 A = Impossible;
176 return;
177 }
Ted Kremenek96ebad62010-09-09 07:13:00 +0000178 LHSVal = state->getSVal(cast<Loc>(LHSVal), LHS->getType());
Tom Caredb2fa8a2010-07-06 21:43:29 +0000179 }
180
181
182 // We now check for various cases which result in an idempotent operation.
183
184 // x op x
185 switch (Op) {
186 default:
187 break; // We don't care about any other operators.
188
189 // Fall through intentional
John McCall2de56d12010-08-25 11:45:40 +0000190 case BO_Assign:
Tom Care6216dc02010-08-30 19:25:43 +0000191 // x Assign x can be used to silence unused variable warnings intentionally.
192 // If this is a self assignment and the variable is referenced elsewhere,
Tom Care84c24ed2010-09-07 20:27:56 +0000193 // and the assignment is not a truncation or extension, then it is a false
194 // positive.
Tom Care6216dc02010-08-30 19:25:43 +0000195 if (isSelfAssign(LHS, RHS)) {
Tom Care84c24ed2010-09-07 20:27:56 +0000196 if (!isUnused(LHS, AC) && !isTruncationExtensionAssignment(LHS, RHS)) {
Tom Care6216dc02010-08-30 19:25:43 +0000197 UpdateAssumption(A, Equal);
198 return;
199 }
200 else {
201 A = Impossible;
202 return;
203 }
Tom Caredf4ca422010-07-16 20:41:41 +0000204 }
205
John McCall2de56d12010-08-25 11:45:40 +0000206 case BO_SubAssign:
207 case BO_DivAssign:
208 case BO_AndAssign:
209 case BO_OrAssign:
210 case BO_XorAssign:
211 case BO_Sub:
212 case BO_Div:
213 case BO_And:
214 case BO_Or:
215 case BO_Xor:
216 case BO_LOr:
217 case BO_LAnd:
Tom Care9edd4d02010-08-27 22:50:47 +0000218 case BO_EQ:
219 case BO_NE:
Tom Caredb34ab72010-08-23 19:51:57 +0000220 if (LHSVal != RHSVal || LHSContainsFalsePositive
221 || RHSContainsFalsePositive)
Tom Caredb2fa8a2010-07-06 21:43:29 +0000222 break;
223 UpdateAssumption(A, Equal);
224 return;
225 }
226
227 // x op 1
228 switch (Op) {
229 default:
230 break; // We don't care about any other operators.
231
232 // Fall through intentional
John McCall2de56d12010-08-25 11:45:40 +0000233 case BO_MulAssign:
234 case BO_DivAssign:
235 case BO_Mul:
236 case BO_Div:
237 case BO_LOr:
238 case BO_LAnd:
Tom Caredb34ab72010-08-23 19:51:57 +0000239 if (!RHSVal.isConstant(1) || RHSContainsFalsePositive)
Tom Caredb2fa8a2010-07-06 21:43:29 +0000240 break;
241 UpdateAssumption(A, RHSis1);
242 return;
243 }
244
245 // 1 op x
246 switch (Op) {
247 default:
248 break; // We don't care about any other operators.
249
250 // Fall through intentional
John McCall2de56d12010-08-25 11:45:40 +0000251 case BO_MulAssign:
252 case BO_Mul:
253 case BO_LOr:
254 case BO_LAnd:
Tom Caredb34ab72010-08-23 19:51:57 +0000255 if (!LHSVal.isConstant(1) || LHSContainsFalsePositive)
Tom Caredb2fa8a2010-07-06 21:43:29 +0000256 break;
257 UpdateAssumption(A, LHSis1);
258 return;
259 }
260
261 // x op 0
262 switch (Op) {
263 default:
264 break; // We don't care about any other operators.
265
266 // Fall through intentional
John McCall2de56d12010-08-25 11:45:40 +0000267 case BO_AddAssign:
268 case BO_SubAssign:
269 case BO_MulAssign:
270 case BO_AndAssign:
271 case BO_OrAssign:
272 case BO_XorAssign:
273 case BO_Add:
274 case BO_Sub:
275 case BO_Mul:
276 case BO_And:
277 case BO_Or:
278 case BO_Xor:
279 case BO_Shl:
280 case BO_Shr:
281 case BO_LOr:
282 case BO_LAnd:
Tom Caredb34ab72010-08-23 19:51:57 +0000283 if (!RHSVal.isConstant(0) || RHSContainsFalsePositive)
Tom Caredb2fa8a2010-07-06 21:43:29 +0000284 break;
285 UpdateAssumption(A, RHSis0);
286 return;
287 }
288
289 // 0 op x
290 switch (Op) {
291 default:
292 break; // We don't care about any other operators.
293
294 // Fall through intentional
John McCall2de56d12010-08-25 11:45:40 +0000295 //case BO_AddAssign: // Common false positive
296 case BO_SubAssign: // Check only if unsigned
297 case BO_MulAssign:
298 case BO_DivAssign:
299 case BO_AndAssign:
300 //case BO_OrAssign: // Common false positive
301 //case BO_XorAssign: // Common false positive
302 case BO_ShlAssign:
303 case BO_ShrAssign:
304 case BO_Add:
305 case BO_Sub:
306 case BO_Mul:
307 case BO_Div:
308 case BO_And:
309 case BO_Or:
310 case BO_Xor:
311 case BO_Shl:
312 case BO_Shr:
313 case BO_LOr:
314 case BO_LAnd:
Tom Caredb34ab72010-08-23 19:51:57 +0000315 if (!LHSVal.isConstant(0) || LHSContainsFalsePositive)
Tom Caredb2fa8a2010-07-06 21:43:29 +0000316 break;
317 UpdateAssumption(A, LHSis0);
318 return;
319 }
320
321 // If we get to this point, there has been a valid use of this operation.
322 A = Impossible;
323}
324
Tom Care2bbbe502010-09-02 23:30:22 +0000325// At the post visit stage, the predecessor ExplodedNode will be the
326// BinaryOperator that was just created. We use this hook to collect the
327// ExplodedNode.
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +0000328void IdempotentOperationChecker::checkPostStmt(const BinaryOperator *B,
329 CheckerContext &C) const {
Tom Care2bbbe502010-09-02 23:30:22 +0000330 // Add the ExplodedNode we just visited
331 BinaryOperatorData &Data = hash[B];
Ted Kremenek020c3742011-02-12 18:50:03 +0000332
333 const Stmt *predStmt
334 = cast<StmtPoint>(C.getPredecessor()->getLocation()).getStmt();
335
336 // Ignore implicit calls to setters.
Ted Kremenekcf995d32011-03-15 19:27:57 +0000337 if (!isa<BinaryOperator>(predStmt))
Ted Kremenek020c3742011-02-12 18:50:03 +0000338 return;
Ted Kremenekcf995d32011-03-15 19:27:57 +0000339
Tom Care2bbbe502010-09-02 23:30:22 +0000340 Data.explodedNodes.Add(C.getPredecessor());
341}
342
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +0000343void IdempotentOperationChecker::checkEndAnalysis(ExplodedGraph &G,
Ted Kremenek3e5637f2010-07-27 18:49:08 +0000344 BugReporter &BR,
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +0000345 ExprEngine &Eng) const {
Tom Care2bbbe502010-09-02 23:30:22 +0000346 BugType *BT = new BugType("Idempotent operation", "Dead code");
Tom Caredb2fa8a2010-07-06 21:43:29 +0000347 // Iterate over the hash to see if we have any paths with definite
348 // idempotent operations.
Tom Carea7a8a452010-08-12 22:45:47 +0000349 for (AssumptionMap::const_iterator i = hash.begin(); i != hash.end(); ++i) {
350 // Unpack the hash contents
Tom Care2bbbe502010-09-02 23:30:22 +0000351 const BinaryOperatorData &Data = i->second;
352 const Assumption &A = Data.assumption;
Tom Care2bbbe502010-09-02 23:30:22 +0000353 const ExplodedNodeSet &ES = Data.explodedNodes;
Ted Kremenek3e5637f2010-07-27 18:49:08 +0000354
Anna Zaks3381a732011-10-03 23:07:13 +0000355 // If there are no nodes accosted with the expression, nothing to report.
356 // FIXME: This is possible because the checker does part of processing in
357 // checkPreStmt and part in checkPostStmt.
358 if (ES.begin() == ES.end())
359 continue;
360
Tom Carea7a8a452010-08-12 22:45:47 +0000361 const BinaryOperator *B = i->first;
Tom Caredb2fa8a2010-07-06 21:43:29 +0000362
Tom Carea7a8a452010-08-12 22:45:47 +0000363 if (A == Impossible)
364 continue;
365
366 // If the analyzer did not finish, check to see if we can still emit this
367 // warning
368 if (Eng.hasWorkRemaining()) {
Tom Carea7a8a452010-08-12 22:45:47 +0000369 // If we can trace back
Ted Kremenek1d26f482011-10-24 01:32:45 +0000370 AnalysisDeclContext *AC = (*ES.begin())->getLocationContext()
371 ->getAnalysisDeclContext();
Ted Kremenek42461ee2011-02-23 01:51:59 +0000372 if (!pathWasCompletelyAnalyzed(AC,
373 AC->getCFGStmtMap()->getBlock(B),
Tom Carea7a8a452010-08-12 22:45:47 +0000374 Eng.getCoreEngine()))
375 continue;
Tom Caredb2fa8a2010-07-06 21:43:29 +0000376 }
Tom Carea7a8a452010-08-12 22:45:47 +0000377
Tom Care2bbbe502010-09-02 23:30:22 +0000378 // Select the error message and SourceRanges to report.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000379 SmallString<128> buf;
Tom Carea7a8a452010-08-12 22:45:47 +0000380 llvm::raw_svector_ostream os(buf);
Tom Care2bbbe502010-09-02 23:30:22 +0000381 bool LHSRelevant = false, RHSRelevant = false;
Tom Carea7a8a452010-08-12 22:45:47 +0000382 switch (A) {
383 case Equal:
Tom Care2bbbe502010-09-02 23:30:22 +0000384 LHSRelevant = true;
385 RHSRelevant = true;
John McCall2de56d12010-08-25 11:45:40 +0000386 if (B->getOpcode() == BO_Assign)
Tom Carea7a8a452010-08-12 22:45:47 +0000387 os << "Assigned value is always the same as the existing value";
388 else
389 os << "Both operands to '" << B->getOpcodeStr()
390 << "' always have the same value";
391 break;
392 case LHSis1:
Tom Care2bbbe502010-09-02 23:30:22 +0000393 LHSRelevant = true;
Tom Carea7a8a452010-08-12 22:45:47 +0000394 os << "The left operand to '" << B->getOpcodeStr() << "' is always 1";
395 break;
396 case RHSis1:
Tom Care2bbbe502010-09-02 23:30:22 +0000397 RHSRelevant = true;
Tom Carea7a8a452010-08-12 22:45:47 +0000398 os << "The right operand to '" << B->getOpcodeStr() << "' is always 1";
399 break;
400 case LHSis0:
Tom Care2bbbe502010-09-02 23:30:22 +0000401 LHSRelevant = true;
Tom Carea7a8a452010-08-12 22:45:47 +0000402 os << "The left operand to '" << B->getOpcodeStr() << "' is always 0";
403 break;
404 case RHSis0:
Tom Care2bbbe502010-09-02 23:30:22 +0000405 RHSRelevant = true;
Tom Carea7a8a452010-08-12 22:45:47 +0000406 os << "The right operand to '" << B->getOpcodeStr() << "' is always 0";
407 break;
408 case Possible:
409 llvm_unreachable("Operation was never marked with an assumption");
410 case Impossible:
411 llvm_unreachable(0);
412 }
413
Tom Care2bbbe502010-09-02 23:30:22 +0000414 // Add a report for each ExplodedNode
415 for (ExplodedNodeSet::iterator I = ES.begin(), E = ES.end(); I != E; ++I) {
Anna Zakse172e8b2011-08-17 23:00:25 +0000416 BugReport *report = new BugReport(*BT, os.str(), *I);
Tom Care2bbbe502010-09-02 23:30:22 +0000417
418 // Add source ranges and visitor hooks
419 if (LHSRelevant) {
420 const Expr *LHS = i->first->getLHS();
421 report->addRange(LHS->getSourceRange());
Anna Zaks50bbc162011-08-19 22:33:38 +0000422 FindLastStoreBRVisitor::registerStatementVarDecls(*report, LHS);
Tom Care2bbbe502010-09-02 23:30:22 +0000423 }
424 if (RHSRelevant) {
425 const Expr *RHS = i->first->getRHS();
426 report->addRange(i->first->getRHS()->getSourceRange());
Anna Zaks50bbc162011-08-19 22:33:38 +0000427 FindLastStoreBRVisitor::registerStatementVarDecls(*report, RHS);
Tom Care2bbbe502010-09-02 23:30:22 +0000428 }
429
430 BR.EmitReport(report);
431 }
Tom Caredb2fa8a2010-07-06 21:43:29 +0000432 }
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +0000433
434 hash.clear();
Tom Caredb2fa8a2010-07-06 21:43:29 +0000435}
436
437// Updates the current assumption given the new assumption
438inline void IdempotentOperationChecker::UpdateAssumption(Assumption &A,
439 const Assumption &New) {
Tom Cared8421ed2010-08-27 22:35:28 +0000440// If the assumption is the same, there is nothing to do
441 if (A == New)
442 return;
443
Tom Caredb2fa8a2010-07-06 21:43:29 +0000444 switch (A) {
445 // If we don't currently have an assumption, set it
446 case Possible:
447 A = New;
448 return;
449
450 // If we have determined that a valid state happened, ignore the new
451 // assumption.
452 case Impossible:
453 return;
454
455 // Any other case means that we had a different assumption last time. We don't
456 // currently support mixing assumptions for diagnostic reasons, so we set
457 // our assumption to be impossible.
458 default:
459 A = Impossible;
460 return;
461 }
462}
463
Tom Care6216dc02010-08-30 19:25:43 +0000464// Check for a statement where a variable is self assigned to possibly avoid an
465// unused variable warning.
466bool IdempotentOperationChecker::isSelfAssign(const Expr *LHS, const Expr *RHS) {
Tom Caredf4ca422010-07-16 20:41:41 +0000467 LHS = LHS->IgnoreParenCasts();
468 RHS = RHS->IgnoreParenCasts();
469
470 const DeclRefExpr *LHS_DR = dyn_cast<DeclRefExpr>(LHS);
471 if (!LHS_DR)
472 return false;
473
Tom Careef52bcb2010-08-24 21:09:07 +0000474 const VarDecl *VD = dyn_cast<VarDecl>(LHS_DR->getDecl());
475 if (!VD)
Tom Caredf4ca422010-07-16 20:41:41 +0000476 return false;
477
478 const DeclRefExpr *RHS_DR = dyn_cast<DeclRefExpr>(RHS);
479 if (!RHS_DR)
480 return false;
481
Tom Careef52bcb2010-08-24 21:09:07 +0000482 if (VD != RHS_DR->getDecl())
483 return false;
484
Tom Care6216dc02010-08-30 19:25:43 +0000485 return true;
486}
487
488// Returns true if the Expr points to a VarDecl that is not read anywhere
489// outside of self-assignments.
490bool IdempotentOperationChecker::isUnused(const Expr *E,
Ted Kremenek1d26f482011-10-24 01:32:45 +0000491 AnalysisDeclContext *AC) {
Tom Care6216dc02010-08-30 19:25:43 +0000492 if (!E)
493 return false;
494
495 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
496 if (!DR)
497 return false;
498
499 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
500 if (!VD)
501 return false;
502
Tom Careef52bcb2010-08-24 21:09:07 +0000503 if (AC->getPseudoConstantAnalysis()->wasReferenced(VD))
504 return false;
505
506 return true;
Tom Caredf4ca422010-07-16 20:41:41 +0000507}
508
509// Check for self casts truncating/extending a variable
510bool IdempotentOperationChecker::isTruncationExtensionAssignment(
511 const Expr *LHS,
512 const Expr *RHS) {
513
514 const DeclRefExpr *LHS_DR = dyn_cast<DeclRefExpr>(LHS->IgnoreParenCasts());
515 if (!LHS_DR)
516 return false;
517
518 const VarDecl *VD = dyn_cast<VarDecl>(LHS_DR->getDecl());
519 if (!VD)
520 return false;
521
522 const DeclRefExpr *RHS_DR = dyn_cast<DeclRefExpr>(RHS->IgnoreParenCasts());
523 if (!RHS_DR)
524 return false;
525
526 if (VD != RHS_DR->getDecl())
527 return false;
528
John McCallf6a16482010-12-04 03:47:34 +0000529 return dyn_cast<DeclRefExpr>(RHS->IgnoreParenLValueCasts()) == NULL;
Tom Caredf4ca422010-07-16 20:41:41 +0000530}
531
Tom Carea7a8a452010-08-12 22:45:47 +0000532// Returns false if a path to this block was not completely analyzed, or true
533// otherwise.
Ted Kremenek8e376772011-02-14 17:59:20 +0000534bool
Ted Kremenek1d26f482011-10-24 01:32:45 +0000535IdempotentOperationChecker::pathWasCompletelyAnalyzed(AnalysisDeclContext *AC,
Ted Kremenek8e376772011-02-14 17:59:20 +0000536 const CFGBlock *CB,
Ted Kremenek8e376772011-02-14 17:59:20 +0000537 const CoreEngine &CE) {
Ted Kremenekb5318912011-02-15 02:20:03 +0000538
Ted Kremenekaf13d5b2011-03-19 01:00:33 +0000539 CFGReverseBlockReachabilityAnalysis *CRA = AC->getCFGReachablityAnalysis();
Ted Kremenek8e376772011-02-14 17:59:20 +0000540
Tom Careb0627952010-09-09 02:04:52 +0000541 // Test for reachability from any aborted blocks to this block
Ted Kremenek422ab7a2011-04-02 02:56:23 +0000542 typedef CoreEngine::BlocksExhausted::const_iterator ExhaustedIterator;
543 for (ExhaustedIterator I = CE.blocks_exhausted_begin(),
544 E = CE.blocks_exhausted_end(); I != E; ++I) {
Tom Carea7a8a452010-08-12 22:45:47 +0000545 const BlockEdge &BE = I->first;
Tom Caredb2fa8a2010-07-06 21:43:29 +0000546
Tom Carea7a8a452010-08-12 22:45:47 +0000547 // The destination block on the BlockEdge is the first block that was not
Tom Careb0627952010-09-09 02:04:52 +0000548 // analyzed. If we can reach this block from the aborted block, then this
549 // block was not completely analyzed.
Ted Kremeneke8350c62011-02-14 17:59:23 +0000550 //
551 // Also explicitly check if the current block is the destination block.
552 // While technically reachable, it means we aborted the analysis on
553 // a path that included that block.
554 const CFGBlock *destBlock = BE.getDst();
555 if (destBlock == CB || CRA->isReachable(destBlock, CB))
Tom Carea7a8a452010-08-12 22:45:47 +0000556 return false;
Tom Carea7a8a452010-08-12 22:45:47 +0000557 }
Ted Kremenek422ab7a2011-04-02 02:56:23 +0000558
559 // Test for reachability from blocks we just gave up on.
560 typedef CoreEngine::BlocksAborted::const_iterator AbortedIterator;
561 for (AbortedIterator I = CE.blocks_aborted_begin(),
562 E = CE.blocks_aborted_end(); I != E; ++I) {
563 const CFGBlock *destBlock = I->first;
564 if (destBlock == CB || CRA->isReachable(destBlock, CB))
565 return false;
566 }
Ted Kremenek33d46262010-11-13 05:04:52 +0000567
568 // For the items still on the worklist, see if they are in blocks that
569 // can eventually reach 'CB'.
Argyrios Kyrtzidisd2592a32010-12-22 18:53:44 +0000570 class VisitWL : public WorkList::Visitor {
Ted Kremenek33d46262010-11-13 05:04:52 +0000571 const CFGStmtMap *CBM;
572 const CFGBlock *TargetBlock;
Ted Kremenekaf13d5b2011-03-19 01:00:33 +0000573 CFGReverseBlockReachabilityAnalysis &CRA;
Ted Kremenek33d46262010-11-13 05:04:52 +0000574 public:
575 VisitWL(const CFGStmtMap *cbm, const CFGBlock *targetBlock,
Ted Kremenekaf13d5b2011-03-19 01:00:33 +0000576 CFGReverseBlockReachabilityAnalysis &cra)
Ted Kremenek33d46262010-11-13 05:04:52 +0000577 : CBM(cbm), TargetBlock(targetBlock), CRA(cra) {}
Ted Kremenek55825aa2011-01-11 02:34:50 +0000578 virtual bool visit(const WorkListUnit &U) {
Ted Kremenek33d46262010-11-13 05:04:52 +0000579 ProgramPoint P = U.getNode()->getLocation();
580 const CFGBlock *B = 0;
581 if (StmtPoint *SP = dyn_cast<StmtPoint>(&P)) {
582 B = CBM->getBlock(SP->getStmt());
583 }
Ted Kremeneked023662010-11-13 05:12:26 +0000584 else if (BlockEdge *BE = dyn_cast<BlockEdge>(&P)) {
585 B = BE->getDst();
586 }
587 else if (BlockEntrance *BEnt = dyn_cast<BlockEntrance>(&P)) {
588 B = BEnt->getBlock();
589 }
590 else if (BlockExit *BExit = dyn_cast<BlockExit>(&P)) {
591 B = BExit->getBlock();
592 }
Ted Kremenek33d46262010-11-13 05:04:52 +0000593 if (!B)
594 return true;
595
Ted Kremenek1212f802011-04-12 21:47:02 +0000596 return B == TargetBlock || CRA.isReachable(B, TargetBlock);
Ted Kremenek33d46262010-11-13 05:04:52 +0000597 }
598 };
Ted Kremenek42461ee2011-02-23 01:51:59 +0000599 VisitWL visitWL(AC->getCFGStmtMap(), CB, *CRA);
Ted Kremenek33d46262010-11-13 05:04:52 +0000600 // Were there any items in the worklist that could potentially reach
601 // this block?
Ted Kremenek55825aa2011-01-11 02:34:50 +0000602 if (CE.getWorkList()->visitItemsInWorkList(visitWL))
Ted Kremenek33d46262010-11-13 05:04:52 +0000603 return false;
Tom Carea7a8a452010-08-12 22:45:47 +0000604
Tom Careb0627952010-09-09 02:04:52 +0000605 // Verify that this block is reachable from the entry block
Ted Kremenek42461ee2011-02-23 01:51:59 +0000606 if (!CRA->isReachable(&AC->getCFG()->getEntry(), CB))
Tom Careb0627952010-09-09 02:04:52 +0000607 return false;
608
Tom Carea7a8a452010-08-12 22:45:47 +0000609 // If we get to this point, there is no connection to the entry block or an
610 // aborted block. This path is unreachable and we can report the error.
611 return true;
612}
613
614// Recursive function that determines whether an expression contains any element
615// that varies. This could be due to a compile-time constant like sizeof. An
616// expression may also involve a variable that behaves like a constant. The
617// function returns true if the expression varies, and false otherwise.
Tom Care245adab2010-08-18 21:17:24 +0000618bool IdempotentOperationChecker::CanVary(const Expr *Ex,
Ted Kremenek1d26f482011-10-24 01:32:45 +0000619 AnalysisDeclContext *AC) {
Tom Carea7a8a452010-08-12 22:45:47 +0000620 // Parentheses and casts are irrelevant here
621 Ex = Ex->IgnoreParenCasts();
622
623 if (Ex->getLocStart().isMacroID())
624 return false;
625
626 switch (Ex->getStmtClass()) {
627 // Trivially true cases
628 case Stmt::ArraySubscriptExprClass:
629 case Stmt::MemberExprClass:
630 case Stmt::StmtExprClass:
631 case Stmt::CallExprClass:
632 case Stmt::VAArgExprClass:
633 case Stmt::ShuffleVectorExprClass:
634 return true;
635 default:
636 return true;
637
638 // Trivially false cases
639 case Stmt::IntegerLiteralClass:
640 case Stmt::CharacterLiteralClass:
641 case Stmt::FloatingLiteralClass:
642 case Stmt::PredefinedExprClass:
643 case Stmt::ImaginaryLiteralClass:
644 case Stmt::StringLiteralClass:
645 case Stmt::OffsetOfExprClass:
646 case Stmt::CompoundLiteralExprClass:
647 case Stmt::AddrLabelExprClass:
Francois Pichetf1872372010-12-08 22:35:30 +0000648 case Stmt::BinaryTypeTraitExprClass:
Tom Carea7a8a452010-08-12 22:45:47 +0000649 case Stmt::GNUNullExprClass:
650 case Stmt::InitListExprClass:
651 case Stmt::DesignatedInitExprClass:
652 case Stmt::BlockExprClass:
Tom Carea7a8a452010-08-12 22:45:47 +0000653 return false;
654
655 // Cases requiring custom logic
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +0000656 case Stmt::UnaryExprOrTypeTraitExprClass: {
657 const UnaryExprOrTypeTraitExpr *SE =
658 cast<const UnaryExprOrTypeTraitExpr>(Ex);
659 if (SE->getKind() != UETT_SizeOf)
Tom Carea7a8a452010-08-12 22:45:47 +0000660 return false;
661 return SE->getTypeOfArgument()->isVariableArrayType();
662 }
663 case Stmt::DeclRefExprClass:
Tom Care6216dc02010-08-30 19:25:43 +0000664 // Check for constants/pseudoconstants
Tom Care245adab2010-08-18 21:17:24 +0000665 return !isConstantOrPseudoConstant(cast<DeclRefExpr>(Ex), AC);
Tom Carea7a8a452010-08-12 22:45:47 +0000666
667 // The next cases require recursion for subexpressions
668 case Stmt::BinaryOperatorClass: {
669 const BinaryOperator *B = cast<const BinaryOperator>(Ex);
Ted Kremenek74faec22010-10-29 01:06:54 +0000670
671 // Exclude cases involving pointer arithmetic. These are usually
672 // false positives.
673 if (B->getOpcode() == BO_Sub || B->getOpcode() == BO_Add)
674 if (B->getLHS()->getType()->getAs<PointerType>())
675 return false;
676
Tom Care245adab2010-08-18 21:17:24 +0000677 return CanVary(B->getRHS(), AC)
678 || CanVary(B->getLHS(), AC);
Tom Carea7a8a452010-08-12 22:45:47 +0000679 }
680 case Stmt::UnaryOperatorClass: {
681 const UnaryOperator *U = cast<const UnaryOperator>(Ex);
Eli Friedmande7e6622010-08-13 01:36:11 +0000682 // Handle trivial case first
Tom Carea7a8a452010-08-12 22:45:47 +0000683 switch (U->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +0000684 case UO_Extension:
Tom Carea7a8a452010-08-12 22:45:47 +0000685 return false;
686 default:
Tom Care245adab2010-08-18 21:17:24 +0000687 return CanVary(U->getSubExpr(), AC);
Tom Carea7a8a452010-08-12 22:45:47 +0000688 }
689 }
690 case Stmt::ChooseExprClass:
Tom Care245adab2010-08-18 21:17:24 +0000691 return CanVary(cast<const ChooseExpr>(Ex)->getChosenSubExpr(
692 AC->getASTContext()), AC);
Tom Carea7a8a452010-08-12 22:45:47 +0000693 case Stmt::ConditionalOperatorClass:
John McCall56ca35d2011-02-17 10:25:35 +0000694 case Stmt::BinaryConditionalOperatorClass:
695 return CanVary(cast<AbstractConditionalOperator>(Ex)->getCond(), AC);
Tom Carea7a8a452010-08-12 22:45:47 +0000696 }
Tom Caredb2fa8a2010-07-06 21:43:29 +0000697}
698
Tom Care245adab2010-08-18 21:17:24 +0000699// Returns true if a DeclRefExpr is or behaves like a constant.
700bool IdempotentOperationChecker::isConstantOrPseudoConstant(
Tom Care6216dc02010-08-30 19:25:43 +0000701 const DeclRefExpr *DR,
Ted Kremenek1d26f482011-10-24 01:32:45 +0000702 AnalysisDeclContext *AC) {
Tom Care245adab2010-08-18 21:17:24 +0000703 // Check if the type of the Decl is const-qualified
704 if (DR->getType().isConstQualified())
705 return true;
706
Tom Care50e8ac22010-08-16 21:43:52 +0000707 // Check for an enum
708 if (isa<EnumConstantDecl>(DR->getDecl()))
709 return true;
710
Tom Caredb34ab72010-08-23 19:51:57 +0000711 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
712 if (!VD)
Tom Care245adab2010-08-18 21:17:24 +0000713 return true;
714
Tom Caredb34ab72010-08-23 19:51:57 +0000715 // Check if the Decl behaves like a constant. This check also takes care of
716 // static variables, which can only change between function calls if they are
717 // modified in the AST.
718 PseudoConstantAnalysis *PCA = AC->getPseudoConstantAnalysis();
719 if (PCA->isPseudoConstant(VD))
720 return true;
721
722 return false;
723}
724
725// Recursively find any substatements containing VarDecl's with storage other
726// than local
727bool IdempotentOperationChecker::containsNonLocalVarDecl(const Stmt *S) {
728 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(S);
729
730 if (DR)
731 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl()))
732 if (!VD->hasLocalStorage())
733 return true;
734
735 for (Stmt::const_child_iterator I = S->child_begin(); I != S->child_end();
736 ++I)
737 if (const Stmt *child = *I)
738 if (containsNonLocalVarDecl(child))
739 return true;
740
Tom Care50e8ac22010-08-16 21:43:52 +0000741 return false;
742}
Tom Careb0627952010-09-09 02:04:52 +0000743
Tom Careb0627952010-09-09 02:04:52 +0000744
Argyrios Kyrtzidisecc4d332011-02-23 21:04:44 +0000745void ento::registerIdempotentOperationChecker(CheckerManager &mgr) {
746 mgr.registerChecker<IdempotentOperationChecker>();
747}