blob: 9399acfecdc2b1a9c5bcb963ca553a7215f6de09 [file] [log] [blame]
Ted Kremenek61f3e052008-04-03 04:42:52 +00001// BugReporter.cpp - Generate PathDiagnostics for Bugs ------------*- 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 BugReporter, a utility class for generating
Ted Kremenek6c07bdb2009-06-26 00:05:51 +000011// PathDiagnostics.
Ted Kremenek61f3e052008-04-03 04:42:52 +000012//
13//===----------------------------------------------------------------------===//
14
Ted Kremenek9b663712011-02-10 01:03:03 +000015#include "clang/StaticAnalyzer/Core/BugReporter/BugReporter.h"
16#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
17#include "clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h"
Ted Kremenek61f3e052008-04-03 04:42:52 +000018#include "clang/AST/ASTContext.h"
Ted Kremeneke41611a2009-07-16 18:13:04 +000019#include "clang/Analysis/CFG.h"
Benjamin Kramerc35fb7d2012-01-28 12:06:22 +000020#include "clang/AST/DeclObjC.h"
Ted Kremenek61f3e052008-04-03 04:42:52 +000021#include "clang/AST/Expr.h"
Ted Kremenek00605e02009-03-27 20:55:39 +000022#include "clang/AST/ParentMap.h"
Chris Lattner16f00492009-04-26 01:32:48 +000023#include "clang/AST/StmtObjC.h"
24#include "clang/Basic/SourceManager.h"
Ted Kremenek61f3e052008-04-03 04:42:52 +000025#include "clang/Analysis/ProgramPoint.h"
Ted Kremenek9b663712011-02-10 01:03:03 +000026#include "clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h"
Chris Lattner405674c2008-08-23 22:23:37 +000027#include "llvm/Support/raw_ostream.h"
Ted Kremenek331b0ac2008-06-18 05:34:07 +000028#include "llvm/ADT/DenseMap.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000029#include "llvm/ADT/SmallString.h"
Ted Kremenekcf118d42009-02-04 23:49:09 +000030#include "llvm/ADT/STLExtras.h"
Ted Kremenek00605e02009-03-27 20:55:39 +000031#include "llvm/ADT/OwningPtr.h"
Ted Kremenek802e0242012-02-08 04:32:34 +000032#include "llvm/ADT/IntrusiveRefCntPtr.h"
Ted Kremenek10aa5542009-03-12 23:41:59 +000033#include <queue>
Ted Kremenek61f3e052008-04-03 04:42:52 +000034
35using namespace clang;
Ted Kremenek9ef65372010-12-23 07:20:52 +000036using namespace ento;
Ted Kremenek61f3e052008-04-03 04:42:52 +000037
Ted Kremenek8966bc12009-05-06 21:39:49 +000038BugReporterVisitor::~BugReporterVisitor() {}
Ted Kremenek1b431022010-03-20 18:01:57 +000039
David Blaikie99ba9e32011-12-20 02:48:34 +000040void BugReporterContext::anchor() {}
41
Ted Kremenekcf118d42009-02-04 23:49:09 +000042//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +000043// Helper routines for walking the ExplodedGraph and fetching statements.
Ted Kremenekcf118d42009-02-04 23:49:09 +000044//===----------------------------------------------------------------------===//
Ted Kremenek61f3e052008-04-03 04:42:52 +000045
Ted Kremenek9c378f72011-08-12 23:37:29 +000046static inline const Stmt *GetStmt(const ProgramPoint &P) {
Ted Kremenek592362b2009-08-18 01:05:30 +000047 if (const StmtPoint* SP = dyn_cast<StmtPoint>(&P))
48 return SP->getStmt();
Ted Kremenek9c378f72011-08-12 23:37:29 +000049 else if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P))
Ted Kremenek61f3e052008-04-03 04:42:52 +000050 return BE->getSrc()->getTerminator();
Mike Stump1eb44332009-09-09 15:08:12 +000051
Ted Kremenekb697b102009-02-23 22:44:26 +000052 return 0;
Ted Kremenek706e3cf2008-04-07 23:35:17 +000053}
54
Zhongxing Xuc5619d92009-08-06 01:32:16 +000055static inline const ExplodedNode*
Ted Kremenek9c378f72011-08-12 23:37:29 +000056GetPredecessorNode(const ExplodedNode *N) {
Ted Kremenekbd7efa82008-04-17 23:44:37 +000057 return N->pred_empty() ? NULL : *(N->pred_begin());
58}
Ted Kremenek2673c9f2008-04-25 19:01:27 +000059
Zhongxing Xuc5619d92009-08-06 01:32:16 +000060static inline const ExplodedNode*
Ted Kremenek9c378f72011-08-12 23:37:29 +000061GetSuccessorNode(const ExplodedNode *N) {
Ted Kremenekb697b102009-02-23 22:44:26 +000062 return N->succ_empty() ? NULL : *(N->succ_begin());
Ted Kremenekbd7efa82008-04-17 23:44:37 +000063}
64
Ted Kremenek9c378f72011-08-12 23:37:29 +000065static const Stmt *GetPreviousStmt(const ExplodedNode *N) {
Ted Kremenekb697b102009-02-23 22:44:26 +000066 for (N = GetPredecessorNode(N); N; N = GetPredecessorNode(N))
Ted Kremenek5f85e172009-07-22 22:35:28 +000067 if (const Stmt *S = GetStmt(N->getLocation()))
Ted Kremenekb697b102009-02-23 22:44:26 +000068 return S;
Mike Stump1eb44332009-09-09 15:08:12 +000069
Ted Kremenekb697b102009-02-23 22:44:26 +000070 return 0;
Ted Kremenek3148eb42009-01-24 00:55:43 +000071}
72
Ted Kremenek9c378f72011-08-12 23:37:29 +000073static const Stmt *GetNextStmt(const ExplodedNode *N) {
Ted Kremenekb697b102009-02-23 22:44:26 +000074 for (N = GetSuccessorNode(N); N; N = GetSuccessorNode(N))
Ted Kremenek5f85e172009-07-22 22:35:28 +000075 if (const Stmt *S = GetStmt(N->getLocation())) {
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000076 // Check if the statement is '?' or '&&'/'||'. These are "merges",
77 // not actual statement points.
78 switch (S->getStmtClass()) {
79 case Stmt::ChooseExprClass:
John McCall56ca35d2011-02-17 10:25:35 +000080 case Stmt::BinaryConditionalOperatorClass: continue;
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000081 case Stmt::ConditionalOperatorClass: continue;
82 case Stmt::BinaryOperatorClass: {
John McCall2de56d12010-08-25 11:45:40 +000083 BinaryOperatorKind Op = cast<BinaryOperator>(S)->getOpcode();
84 if (Op == BO_LAnd || Op == BO_LOr)
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000085 continue;
86 break;
87 }
88 default:
89 break;
90 }
Ted Kremenekb697b102009-02-23 22:44:26 +000091 return S;
Ted Kremenekf5ab8e62009-03-28 17:33:57 +000092 }
Mike Stump1eb44332009-09-09 15:08:12 +000093
Ted Kremenekb697b102009-02-23 22:44:26 +000094 return 0;
95}
96
Ted Kremenek5f85e172009-07-22 22:35:28 +000097static inline const Stmt*
Ted Kremenek9c378f72011-08-12 23:37:29 +000098GetCurrentOrPreviousStmt(const ExplodedNode *N) {
Ted Kremenek5f85e172009-07-22 22:35:28 +000099 if (const Stmt *S = GetStmt(N->getLocation()))
Ted Kremenekb697b102009-02-23 22:44:26 +0000100 return S;
Mike Stump1eb44332009-09-09 15:08:12 +0000101
Ted Kremenekb697b102009-02-23 22:44:26 +0000102 return GetPreviousStmt(N);
103}
Mike Stump1eb44332009-09-09 15:08:12 +0000104
Ted Kremenek5f85e172009-07-22 22:35:28 +0000105static inline const Stmt*
Ted Kremenek9c378f72011-08-12 23:37:29 +0000106GetCurrentOrNextStmt(const ExplodedNode *N) {
Ted Kremenek5f85e172009-07-22 22:35:28 +0000107 if (const Stmt *S = GetStmt(N->getLocation()))
Ted Kremenekb697b102009-02-23 22:44:26 +0000108 return S;
Mike Stump1eb44332009-09-09 15:08:12 +0000109
Ted Kremenekb697b102009-02-23 22:44:26 +0000110 return GetNextStmt(N);
111}
112
113//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +0000114// PathDiagnosticBuilder and its associated routines and helper objects.
Ted Kremenekb697b102009-02-23 22:44:26 +0000115//===----------------------------------------------------------------------===//
Ted Kremenekb479dad2009-02-23 23:13:51 +0000116
Zhongxing Xuc5619d92009-08-06 01:32:16 +0000117typedef llvm::DenseMap<const ExplodedNode*,
118const ExplodedNode*> NodeBackMap;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000119
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000120namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000121class NodeMapClosure : public BugReport::NodeResolver {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000122 NodeBackMap& M;
123public:
124 NodeMapClosure(NodeBackMap *m) : M(*m) {}
125 ~NodeMapClosure() {}
Mike Stump1eb44332009-09-09 15:08:12 +0000126
Ted Kremenek9c378f72011-08-12 23:37:29 +0000127 const ExplodedNode *getOriginalNode(const ExplodedNode *N) {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000128 NodeBackMap::iterator I = M.find(N);
129 return I == M.end() ? 0 : I->second;
130 }
131};
Mike Stump1eb44332009-09-09 15:08:12 +0000132
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000133class PathDiagnosticBuilder : public BugReporterContext {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000134 BugReport *R;
David Blaikieef3643f2011-09-26 00:51:36 +0000135 PathDiagnosticConsumer *PDC;
Dylan Noblesmith6f42b622012-02-05 02:12:40 +0000136 OwningPtr<ParentMap> PM;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000137 NodeMapClosure NMC;
Mike Stump1eb44332009-09-09 15:08:12 +0000138public:
Ted Kremenek8966bc12009-05-06 21:39:49 +0000139 PathDiagnosticBuilder(GRBugReporter &br,
Mike Stump1eb44332009-09-09 15:08:12 +0000140 BugReport *r, NodeBackMap *Backmap,
David Blaikieef3643f2011-09-26 00:51:36 +0000141 PathDiagnosticConsumer *pdc)
Ted Kremenek8966bc12009-05-06 21:39:49 +0000142 : BugReporterContext(br),
Anna Zaks8e6431a2011-08-18 22:37:56 +0000143 R(r), PDC(pdc), NMC(Backmap) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000144
Ted Kremenek9c378f72011-08-12 23:37:29 +0000145 PathDiagnosticLocation ExecutionContinues(const ExplodedNode *N);
Mike Stump1eb44332009-09-09 15:08:12 +0000146
Ted Kremenek9c378f72011-08-12 23:37:29 +0000147 PathDiagnosticLocation ExecutionContinues(llvm::raw_string_ostream &os,
148 const ExplodedNode *N);
Mike Stump1eb44332009-09-09 15:08:12 +0000149
Anna Zaks8e6431a2011-08-18 22:37:56 +0000150 BugReport *getBugReport() { return R; }
151
Tom Care212f6d32010-09-16 03:50:38 +0000152 Decl const &getCodeDecl() { return R->getErrorNode()->getCodeDecl(); }
Zhongxing Xub317f8f2009-09-10 05:44:00 +0000153
Anna Zaks220ac8c2011-09-15 01:08:34 +0000154 const LocationContext* getLocationContext() {
155 return R->getErrorNode()->getLocationContext();
156 }
157
Tom Care212f6d32010-09-16 03:50:38 +0000158 ParentMap& getParentMap() { return R->getErrorNode()->getParentMap(); }
Mike Stump1eb44332009-09-09 15:08:12 +0000159
Ted Kremenekc3f83ad2009-04-01 17:18:21 +0000160 const Stmt *getParent(const Stmt *S) {
161 return getParentMap().getParent(S);
162 }
Mike Stump1eb44332009-09-09 15:08:12 +0000163
Ted Kremenek8966bc12009-05-06 21:39:49 +0000164 virtual NodeMapClosure& getNodeResolver() { return NMC; }
Douglas Gregor72971342009-04-18 00:02:19 +0000165
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000166 PathDiagnosticLocation getEnclosingStmtLocation(const Stmt *S);
Mike Stump1eb44332009-09-09 15:08:12 +0000167
David Blaikieef3643f2011-09-26 00:51:36 +0000168 PathDiagnosticConsumer::PathGenerationScheme getGenerationScheme() const {
169 return PDC ? PDC->getGenerationScheme() : PathDiagnosticConsumer::Extensive;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000170 }
171
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000172 bool supportsLogicalOpControlFlow() const {
173 return PDC ? PDC->supportsLogicalOpControlFlow() : true;
Mike Stump1eb44332009-09-09 15:08:12 +0000174 }
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000175};
176} // end anonymous namespace
177
Ted Kremenek00605e02009-03-27 20:55:39 +0000178PathDiagnosticLocation
Ted Kremenek9c378f72011-08-12 23:37:29 +0000179PathDiagnosticBuilder::ExecutionContinues(const ExplodedNode *N) {
Ted Kremenek5f85e172009-07-22 22:35:28 +0000180 if (const Stmt *S = GetNextStmt(N))
Anna Zaks220ac8c2011-09-15 01:08:34 +0000181 return PathDiagnosticLocation(S, getSourceManager(), getLocationContext());
Ted Kremenek00605e02009-03-27 20:55:39 +0000182
Anna Zaks0cd59482011-09-16 19:18:30 +0000183 return PathDiagnosticLocation::createDeclEnd(N->getLocationContext(),
184 getSourceManager());
Ted Kremenek082cb8d2009-03-12 18:41:53 +0000185}
Mike Stump1eb44332009-09-09 15:08:12 +0000186
Ted Kremenek00605e02009-03-27 20:55:39 +0000187PathDiagnosticLocation
Ted Kremenek9c378f72011-08-12 23:37:29 +0000188PathDiagnosticBuilder::ExecutionContinues(llvm::raw_string_ostream &os,
189 const ExplodedNode *N) {
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000190
Ted Kremenek143ca222008-05-06 18:11:09 +0000191 // Slow, but probably doesn't matter.
Ted Kremenekb697b102009-02-23 22:44:26 +0000192 if (os.str().empty())
193 os << ' ';
Mike Stump1eb44332009-09-09 15:08:12 +0000194
Ted Kremenek00605e02009-03-27 20:55:39 +0000195 const PathDiagnosticLocation &Loc = ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000196
Ted Kremenek00605e02009-03-27 20:55:39 +0000197 if (Loc.asStmt())
Ted Kremenekb697b102009-02-23 22:44:26 +0000198 os << "Execution continues on line "
Chandler Carruth64211622011-07-25 21:09:52 +0000199 << getSourceManager().getExpansionLineNumber(Loc.asLocation())
Ted Kremenek8966bc12009-05-06 21:39:49 +0000200 << '.';
Ted Kremenek4f1db532009-12-04 20:34:31 +0000201 else {
202 os << "Execution jumps to the end of the ";
203 const Decl *D = N->getLocationContext()->getDecl();
204 if (isa<ObjCMethodDecl>(D))
205 os << "method";
206 else if (isa<FunctionDecl>(D))
207 os << "function";
208 else {
209 assert(isa<BlockDecl>(D));
210 os << "anonymous block";
211 }
212 os << '.';
213 }
Mike Stump1eb44332009-09-09 15:08:12 +0000214
Ted Kremenek082cb8d2009-03-12 18:41:53 +0000215 return Loc;
Ted Kremenek143ca222008-05-06 18:11:09 +0000216}
217
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000218static bool IsNested(const Stmt *S, ParentMap &PM) {
219 if (isa<Expr>(S) && PM.isConsumedExpr(cast<Expr>(S)))
220 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000221
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000222 const Stmt *Parent = PM.getParentIgnoreParens(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000223
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000224 if (Parent)
225 switch (Parent->getStmtClass()) {
226 case Stmt::ForStmtClass:
227 case Stmt::DoStmtClass:
228 case Stmt::WhileStmtClass:
229 return true;
230 default:
231 break;
232 }
Mike Stump1eb44332009-09-09 15:08:12 +0000233
234 return false;
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000235}
236
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000237PathDiagnosticLocation
238PathDiagnosticBuilder::getEnclosingStmtLocation(const Stmt *S) {
Ted Kremenek9c378f72011-08-12 23:37:29 +0000239 assert(S && "Null Stmt *passed to getEnclosingStmtLocation");
Mike Stump1eb44332009-09-09 15:08:12 +0000240 ParentMap &P = getParentMap();
Ted Kremenek8966bc12009-05-06 21:39:49 +0000241 SourceManager &SMgr = getSourceManager();
Anna Zaks220ac8c2011-09-15 01:08:34 +0000242 const LocationContext *LC = getLocationContext();
Ted Kremeneke88a1702009-05-11 22:19:32 +0000243
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000244 while (IsNested(S, P)) {
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000245 const Stmt *Parent = P.getParentIgnoreParens(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000247 if (!Parent)
248 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000249
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000250 switch (Parent->getStmtClass()) {
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000251 case Stmt::BinaryOperatorClass: {
252 const BinaryOperator *B = cast<BinaryOperator>(Parent);
253 if (B->isLogicalOp())
Anna Zaks220ac8c2011-09-15 01:08:34 +0000254 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000255 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000256 }
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000257 case Stmt::CompoundStmtClass:
258 case Stmt::StmtExprClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000259 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000260 case Stmt::ChooseExprClass:
261 // Similar to '?' if we are referring to condition, just have the edge
262 // point to the entire choose expression.
263 if (cast<ChooseExpr>(Parent)->getCond() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000264 return PathDiagnosticLocation(Parent, SMgr, LC);
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000265 else
Anna Zaks220ac8c2011-09-15 01:08:34 +0000266 return PathDiagnosticLocation(S, SMgr, LC);
John McCall56ca35d2011-02-17 10:25:35 +0000267 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000268 case Stmt::ConditionalOperatorClass:
269 // For '?', if we are referring to condition, just have the edge point
270 // to the entire '?' expression.
John McCall56ca35d2011-02-17 10:25:35 +0000271 if (cast<AbstractConditionalOperator>(Parent)->getCond() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000272 return PathDiagnosticLocation(Parent, SMgr, LC);
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000273 else
Anna Zaks220ac8c2011-09-15 01:08:34 +0000274 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000275 case Stmt::DoStmtClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000276 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000277 case Stmt::ForStmtClass:
278 if (cast<ForStmt>(Parent)->getBody() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000279 return PathDiagnosticLocation(S, SMgr, LC);
Mike Stump1eb44332009-09-09 15:08:12 +0000280 break;
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000281 case Stmt::IfStmtClass:
282 if (cast<IfStmt>(Parent)->getCond() != S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000283 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenek8bd4d032009-04-28 04:23:15 +0000284 break;
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000285 case Stmt::ObjCForCollectionStmtClass:
286 if (cast<ObjCForCollectionStmt>(Parent)->getBody() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000287 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000288 break;
289 case Stmt::WhileStmtClass:
290 if (cast<WhileStmt>(Parent)->getCond() != S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000291 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000292 break;
293 default:
294 break;
295 }
296
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000297 S = Parent;
298 }
Mike Stump1eb44332009-09-09 15:08:12 +0000299
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000300 assert(S && "Cannot have null Stmt for PathDiagnosticLocation");
Ted Kremeneke88a1702009-05-11 22:19:32 +0000301
302 // Special case: DeclStmts can appear in for statement declarations, in which
303 // case the ForStmt is the context.
304 if (isa<DeclStmt>(S)) {
305 if (const Stmt *Parent = P.getParent(S)) {
306 switch (Parent->getStmtClass()) {
307 case Stmt::ForStmtClass:
308 case Stmt::ObjCForCollectionStmtClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000309 return PathDiagnosticLocation(Parent, SMgr, LC);
Ted Kremeneke88a1702009-05-11 22:19:32 +0000310 default:
311 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000312 }
313 }
Ted Kremeneke88a1702009-05-11 22:19:32 +0000314 }
315 else if (isa<BinaryOperator>(S)) {
316 // Special case: the binary operator represents the initialization
317 // code in a for statement (this can happen when the variable being
318 // initialized is an old variable.
319 if (const ForStmt *FS =
320 dyn_cast_or_null<ForStmt>(P.getParentIgnoreParens(S))) {
321 if (FS->getInit() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000322 return PathDiagnosticLocation(FS, SMgr, LC);
Ted Kremeneke88a1702009-05-11 22:19:32 +0000323 }
324 }
325
Anna Zaks220ac8c2011-09-15 01:08:34 +0000326 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000327}
328
Ted Kremenekcf118d42009-02-04 23:49:09 +0000329//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +0000330// ScanNotableSymbols: closure-like callback for scanning Store bindings.
331//===----------------------------------------------------------------------===//
332
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000333static const VarDecl* GetMostRecentVarDeclBinding(const ExplodedNode *N,
334 ProgramStateManager& VMgr,
335 SVal X) {
Mike Stump1eb44332009-09-09 15:08:12 +0000336
Ted Kremenek31061982009-03-31 23:00:32 +0000337 for ( ; N ; N = N->pred_empty() ? 0 : *N->pred_begin()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000338
Ted Kremenek31061982009-03-31 23:00:32 +0000339 ProgramPoint P = N->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000340
Ted Kremenek31061982009-03-31 23:00:32 +0000341 if (!isa<PostStmt>(P))
342 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000343
Ted Kremenek9c378f72011-08-12 23:37:29 +0000344 const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(cast<PostStmt>(P).getStmt());
Mike Stump1eb44332009-09-09 15:08:12 +0000345
Ted Kremenek31061982009-03-31 23:00:32 +0000346 if (!DR)
347 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000348
Ted Kremenek5eca4822012-01-06 22:09:28 +0000349 SVal Y = N->getState()->getSVal(DR, N->getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000350
Ted Kremenek31061982009-03-31 23:00:32 +0000351 if (X != Y)
352 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000353
Ted Kremenek9c378f72011-08-12 23:37:29 +0000354 const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000355
Ted Kremenek31061982009-03-31 23:00:32 +0000356 if (!VD)
357 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000358
Ted Kremenek31061982009-03-31 23:00:32 +0000359 return VD;
360 }
Mike Stump1eb44332009-09-09 15:08:12 +0000361
Ted Kremenek31061982009-03-31 23:00:32 +0000362 return 0;
363}
364
365namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000366class NotableSymbolHandler
Ted Kremenek31061982009-03-31 23:00:32 +0000367: public StoreManager::BindingsHandler {
Mike Stump1eb44332009-09-09 15:08:12 +0000368
Ted Kremenek31061982009-03-31 23:00:32 +0000369 SymbolRef Sym;
Ted Kremenek8bef8232012-01-26 21:29:00 +0000370 ProgramStateRef PrevSt;
Ted Kremenek9c378f72011-08-12 23:37:29 +0000371 const Stmt *S;
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000372 ProgramStateManager& VMgr;
Ted Kremenek9c378f72011-08-12 23:37:29 +0000373 const ExplodedNode *Pred;
Mike Stump1eb44332009-09-09 15:08:12 +0000374 PathDiagnostic& PD;
Ted Kremenek31061982009-03-31 23:00:32 +0000375 BugReporter& BR;
Mike Stump1eb44332009-09-09 15:08:12 +0000376
Ted Kremenek31061982009-03-31 23:00:32 +0000377public:
Mike Stump1eb44332009-09-09 15:08:12 +0000378
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000379 NotableSymbolHandler(SymbolRef sym,
Ted Kremenek8bef8232012-01-26 21:29:00 +0000380 ProgramStateRef prevst,
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000381 const Stmt *s,
382 ProgramStateManager& vmgr,
383 const ExplodedNode *pred,
384 PathDiagnostic& pd,
385 BugReporter& br)
386 : Sym(sym),
387 PrevSt(prevst),
388 S(s),
389 VMgr(vmgr),
390 Pred(pred),
391 PD(pd),
392 BR(br) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000393
Ted Kremenek31061982009-03-31 23:00:32 +0000394 bool HandleBinding(StoreManager& SMgr, Store store, const MemRegion* R,
395 SVal V) {
Mike Stump1eb44332009-09-09 15:08:12 +0000396
Ted Kremenek31061982009-03-31 23:00:32 +0000397 SymbolRef ScanSym = V.getAsSymbol();
Mike Stump1eb44332009-09-09 15:08:12 +0000398
Ted Kremenek31061982009-03-31 23:00:32 +0000399 if (ScanSym != Sym)
400 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000401
402 // Check if the previous state has this binding.
Ted Kremenek13976632010-02-08 16:18:51 +0000403 SVal X = PrevSt->getSVal(loc::MemRegionVal(R));
Mike Stump1eb44332009-09-09 15:08:12 +0000404
Ted Kremenek31061982009-03-31 23:00:32 +0000405 if (X == V) // Same binding?
406 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000407
Ted Kremenek31061982009-03-31 23:00:32 +0000408 // Different binding. Only handle assignments for now. We don't pull
Mike Stump1eb44332009-09-09 15:08:12 +0000409 // this check out of the loop because we will eventually handle other
Ted Kremenek31061982009-03-31 23:00:32 +0000410 // cases.
Mike Stump1eb44332009-09-09 15:08:12 +0000411
Ted Kremenek31061982009-03-31 23:00:32 +0000412 VarDecl *VD = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000413
Ted Kremenek31061982009-03-31 23:00:32 +0000414 if (const BinaryOperator* B = dyn_cast<BinaryOperator>(S)) {
415 if (!B->isAssignmentOp())
416 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000417
Ted Kremenek31061982009-03-31 23:00:32 +0000418 // What variable did we assign to?
Ted Kremenek9c378f72011-08-12 23:37:29 +0000419 DeclRefExpr *DR = dyn_cast<DeclRefExpr>(B->getLHS()->IgnoreParenCasts());
Mike Stump1eb44332009-09-09 15:08:12 +0000420
Ted Kremenek31061982009-03-31 23:00:32 +0000421 if (!DR)
422 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000423
Ted Kremenek31061982009-03-31 23:00:32 +0000424 VD = dyn_cast<VarDecl>(DR->getDecl());
425 }
Ted Kremenek9c378f72011-08-12 23:37:29 +0000426 else if (const DeclStmt *DS = dyn_cast<DeclStmt>(S)) {
Ted Kremenek31061982009-03-31 23:00:32 +0000427 // FIXME: Eventually CFGs won't have DeclStmts. Right now we
428 // assume that each DeclStmt has a single Decl. This invariant
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000429 // holds by construction in the CFG.
Ted Kremenek31061982009-03-31 23:00:32 +0000430 VD = dyn_cast<VarDecl>(*DS->decl_begin());
431 }
Mike Stump1eb44332009-09-09 15:08:12 +0000432
Ted Kremenek31061982009-03-31 23:00:32 +0000433 if (!VD)
434 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000435
Ted Kremenek31061982009-03-31 23:00:32 +0000436 // What is the most recently referenced variable with this binding?
Ted Kremenek9c378f72011-08-12 23:37:29 +0000437 const VarDecl *MostRecent = GetMostRecentVarDeclBinding(Pred, VMgr, V);
Mike Stump1eb44332009-09-09 15:08:12 +0000438
Ted Kremenek31061982009-03-31 23:00:32 +0000439 if (!MostRecent)
440 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000441
Ted Kremenek31061982009-03-31 23:00:32 +0000442 // Create the diagnostic.
Zhanyong Wan7dfc9422011-02-16 21:13:32 +0000443 if (Loc::isLocType(VD->getType())) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000444 SmallString<64> buf;
Jordy Rose7df12342011-08-21 05:25:15 +0000445 llvm::raw_svector_ostream os(buf);
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000446 os << '\'' << *VD << "' now aliases '" << *MostRecent << '\'';
Anna Zaks590dd8e2011-09-20 21:38:35 +0000447 PathDiagnosticLocation L =
448 PathDiagnosticLocation::createBegin(S, BR.getSourceManager(),
449 Pred->getLocationContext());
Ted Kremenek802e0242012-02-08 04:32:34 +0000450 PD.path.push_front(new PathDiagnosticEventPiece(L, os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000451 }
Mike Stump1eb44332009-09-09 15:08:12 +0000452
Ted Kremenek31061982009-03-31 23:00:32 +0000453 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000454 }
Ted Kremenek31061982009-03-31 23:00:32 +0000455};
456}
457
Ted Kremenek9c378f72011-08-12 23:37:29 +0000458static void HandleNotableSymbol(const ExplodedNode *N,
459 const Stmt *S,
Ted Kremenek31061982009-03-31 23:00:32 +0000460 SymbolRef Sym, BugReporter& BR,
461 PathDiagnostic& PD) {
Mike Stump1eb44332009-09-09 15:08:12 +0000462
Ted Kremenek9c378f72011-08-12 23:37:29 +0000463 const ExplodedNode *Pred = N->pred_empty() ? 0 : *N->pred_begin();
Ted Kremenek8bef8232012-01-26 21:29:00 +0000464 ProgramStateRef PrevSt = Pred ? Pred->getState() : 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000465
Ted Kremenek31061982009-03-31 23:00:32 +0000466 if (!PrevSt)
467 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000468
Ted Kremenek31061982009-03-31 23:00:32 +0000469 // Look at the region bindings of the current state that map to the
470 // specified symbol. Are any of them not in the previous state?
Ted Kremenek18c66fd2011-08-15 22:09:50 +0000471 ProgramStateManager& VMgr = cast<GRBugReporter>(BR).getStateManager();
Ted Kremenek31061982009-03-31 23:00:32 +0000472 NotableSymbolHandler H(Sym, PrevSt, S, VMgr, Pred, PD, BR);
473 cast<GRBugReporter>(BR).getStateManager().iterBindings(N->getState(), H);
474}
475
476namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000477class ScanNotableSymbols
Ted Kremenek31061982009-03-31 23:00:32 +0000478: public StoreManager::BindingsHandler {
Mike Stump1eb44332009-09-09 15:08:12 +0000479
Ted Kremenek31061982009-03-31 23:00:32 +0000480 llvm::SmallSet<SymbolRef, 10> AlreadyProcessed;
Ted Kremenek9c378f72011-08-12 23:37:29 +0000481 const ExplodedNode *N;
482 const Stmt *S;
Ted Kremenek31061982009-03-31 23:00:32 +0000483 GRBugReporter& BR;
484 PathDiagnostic& PD;
Mike Stump1eb44332009-09-09 15:08:12 +0000485
Ted Kremenek31061982009-03-31 23:00:32 +0000486public:
Ted Kremenek9c378f72011-08-12 23:37:29 +0000487 ScanNotableSymbols(const ExplodedNode *n, const Stmt *s,
Ted Kremenek5f85e172009-07-22 22:35:28 +0000488 GRBugReporter& br, PathDiagnostic& pd)
Ted Kremenek31061982009-03-31 23:00:32 +0000489 : N(n), S(s), BR(br), PD(pd) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000490
Ted Kremenek31061982009-03-31 23:00:32 +0000491 bool HandleBinding(StoreManager& SMgr, Store store,
492 const MemRegion* R, SVal V) {
Mike Stump1eb44332009-09-09 15:08:12 +0000493
Ted Kremenek31061982009-03-31 23:00:32 +0000494 SymbolRef ScanSym = V.getAsSymbol();
Mike Stump1eb44332009-09-09 15:08:12 +0000495
Ted Kremenek31061982009-03-31 23:00:32 +0000496 if (!ScanSym)
497 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000498
Ted Kremenek31061982009-03-31 23:00:32 +0000499 if (!BR.isNotable(ScanSym))
500 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000501
Ted Kremenek31061982009-03-31 23:00:32 +0000502 if (AlreadyProcessed.count(ScanSym))
503 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000504
Ted Kremenek31061982009-03-31 23:00:32 +0000505 AlreadyProcessed.insert(ScanSym);
Mike Stump1eb44332009-09-09 15:08:12 +0000506
Ted Kremenek31061982009-03-31 23:00:32 +0000507 HandleNotableSymbol(N, S, ScanSym, BR, PD);
508 return true;
509 }
510};
511} // end anonymous namespace
512
513//===----------------------------------------------------------------------===//
514// "Minimal" path diagnostic generation algorithm.
515//===----------------------------------------------------------------------===//
516
Ted Kremenek14856d72009-04-06 23:06:54 +0000517static void CompactPathDiagnostic(PathDiagnostic &PD, const SourceManager& SM);
518
Ted Kremenek31061982009-03-31 23:00:32 +0000519static void GenerateMinimalPathDiagnostic(PathDiagnostic& PD,
520 PathDiagnosticBuilder &PDB,
Zhongxing Xuc5619d92009-08-06 01:32:16 +0000521 const ExplodedNode *N) {
Ted Kremenek8966bc12009-05-06 21:39:49 +0000522
Ted Kremenek31061982009-03-31 23:00:32 +0000523 SourceManager& SMgr = PDB.getSourceManager();
Anna Zaks220ac8c2011-09-15 01:08:34 +0000524 const LocationContext *LC = PDB.getLocationContext();
Ted Kremenek9c378f72011-08-12 23:37:29 +0000525 const ExplodedNode *NextNode = N->pred_empty()
Ted Kremenek31061982009-03-31 23:00:32 +0000526 ? NULL : *(N->pred_begin());
527 while (NextNode) {
Mike Stump1eb44332009-09-09 15:08:12 +0000528 N = NextNode;
Ted Kremenek31061982009-03-31 23:00:32 +0000529 NextNode = GetPredecessorNode(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000530
Ted Kremenek31061982009-03-31 23:00:32 +0000531 ProgramPoint P = N->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000532
Ted Kremenek9c378f72011-08-12 23:37:29 +0000533 if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P)) {
534 const CFGBlock *Src = BE->getSrc();
535 const CFGBlock *Dst = BE->getDst();
536 const Stmt *T = Src->getTerminator();
Mike Stump1eb44332009-09-09 15:08:12 +0000537
Ted Kremenek31061982009-03-31 23:00:32 +0000538 if (!T)
539 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000540
Anna Zaks590dd8e2011-09-20 21:38:35 +0000541 PathDiagnosticLocation Start =
542 PathDiagnosticLocation::createBegin(T, SMgr,
543 N->getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000544
Ted Kremenek31061982009-03-31 23:00:32 +0000545 switch (T->getStmtClass()) {
546 default:
547 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000548
Ted Kremenek31061982009-03-31 23:00:32 +0000549 case Stmt::GotoStmtClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000550 case Stmt::IndirectGotoStmtClass: {
Ted Kremenek9c378f72011-08-12 23:37:29 +0000551 const Stmt *S = GetNextStmt(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000552
Ted Kremenek31061982009-03-31 23:00:32 +0000553 if (!S)
554 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000555
Ted Kremenek31061982009-03-31 23:00:32 +0000556 std::string sbuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000557 llvm::raw_string_ostream os(sbuf);
Ted Kremenek31061982009-03-31 23:00:32 +0000558 const PathDiagnosticLocation &End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000559
Ted Kremenek31061982009-03-31 23:00:32 +0000560 os << "Control jumps to line "
Chandler Carruth64211622011-07-25 21:09:52 +0000561 << End.asLocation().getExpansionLineNumber();
Ted Kremenek802e0242012-02-08 04:32:34 +0000562 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
563 os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000564 break;
565 }
Mike Stump1eb44332009-09-09 15:08:12 +0000566
567 case Stmt::SwitchStmtClass: {
Ted Kremenek31061982009-03-31 23:00:32 +0000568 // Figure out what case arm we took.
569 std::string sbuf;
570 llvm::raw_string_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000571
Ted Kremenek9c378f72011-08-12 23:37:29 +0000572 if (const Stmt *S = Dst->getLabel()) {
Anna Zaks220ac8c2011-09-15 01:08:34 +0000573 PathDiagnosticLocation End(S, SMgr, LC);
Mike Stump1eb44332009-09-09 15:08:12 +0000574
Ted Kremenek31061982009-03-31 23:00:32 +0000575 switch (S->getStmtClass()) {
576 default:
577 os << "No cases match in the switch statement. "
578 "Control jumps to line "
Chandler Carruth64211622011-07-25 21:09:52 +0000579 << End.asLocation().getExpansionLineNumber();
Ted Kremenek31061982009-03-31 23:00:32 +0000580 break;
581 case Stmt::DefaultStmtClass:
582 os << "Control jumps to the 'default' case at line "
Chandler Carruth64211622011-07-25 21:09:52 +0000583 << End.asLocation().getExpansionLineNumber();
Ted Kremenek31061982009-03-31 23:00:32 +0000584 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000585
Ted Kremenek31061982009-03-31 23:00:32 +0000586 case Stmt::CaseStmtClass: {
Mike Stump1eb44332009-09-09 15:08:12 +0000587 os << "Control jumps to 'case ";
Ted Kremenek9c378f72011-08-12 23:37:29 +0000588 const CaseStmt *Case = cast<CaseStmt>(S);
589 const Expr *LHS = Case->getLHS()->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000590
591 // Determine if it is an enum.
Ted Kremenek31061982009-03-31 23:00:32 +0000592 bool GetRawInt = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Ted Kremenek9c378f72011-08-12 23:37:29 +0000594 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS)) {
Ted Kremenek31061982009-03-31 23:00:32 +0000595 // FIXME: Maybe this should be an assertion. Are there cases
596 // were it is not an EnumConstantDecl?
Ted Kremenek9c378f72011-08-12 23:37:29 +0000597 const EnumConstantDecl *D =
Zhongxing Xu03509ae2010-07-20 06:22:24 +0000598 dyn_cast<EnumConstantDecl>(DR->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000599
Ted Kremenek31061982009-03-31 23:00:32 +0000600 if (D) {
601 GetRawInt = false;
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000602 os << *D;
Ted Kremenek31061982009-03-31 23:00:32 +0000603 }
604 }
Eli Friedman9ec64d62009-04-26 19:04:51 +0000605
606 if (GetRawInt)
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000607 os << LHS->EvaluateKnownConstInt(PDB.getASTContext());
Eli Friedman9ec64d62009-04-26 19:04:51 +0000608
Ted Kremenek31061982009-03-31 23:00:32 +0000609 os << ":' at line "
Chandler Carruth64211622011-07-25 21:09:52 +0000610 << End.asLocation().getExpansionLineNumber();
Ted Kremenek31061982009-03-31 23:00:32 +0000611 break;
612 }
613 }
Ted Kremenek802e0242012-02-08 04:32:34 +0000614 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000615 os.str()));
616 }
617 else {
618 os << "'Default' branch taken. ";
Mike Stump1eb44332009-09-09 15:08:12 +0000619 const PathDiagnosticLocation &End = PDB.ExecutionContinues(os, N);
Ted Kremenek802e0242012-02-08 04:32:34 +0000620 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000621 os.str()));
622 }
Mike Stump1eb44332009-09-09 15:08:12 +0000623
Ted Kremenek31061982009-03-31 23:00:32 +0000624 break;
625 }
Mike Stump1eb44332009-09-09 15:08:12 +0000626
Ted Kremenek31061982009-03-31 23:00:32 +0000627 case Stmt::BreakStmtClass:
628 case Stmt::ContinueStmtClass: {
629 std::string sbuf;
630 llvm::raw_string_ostream os(sbuf);
631 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
Ted Kremenek802e0242012-02-08 04:32:34 +0000632 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000633 os.str()));
634 break;
635 }
Mike Stump1eb44332009-09-09 15:08:12 +0000636
Ted Kremenek31061982009-03-31 23:00:32 +0000637 // Determine control-flow for ternary '?'.
John McCall56ca35d2011-02-17 10:25:35 +0000638 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek31061982009-03-31 23:00:32 +0000639 case Stmt::ConditionalOperatorClass: {
640 std::string sbuf;
641 llvm::raw_string_ostream os(sbuf);
642 os << "'?' condition is ";
Mike Stump1eb44332009-09-09 15:08:12 +0000643
Ted Kremenek31061982009-03-31 23:00:32 +0000644 if (*(Src->succ_begin()+1) == Dst)
645 os << "false";
646 else
647 os << "true";
Mike Stump1eb44332009-09-09 15:08:12 +0000648
Ted Kremenek31061982009-03-31 23:00:32 +0000649 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000650
Ted Kremenek31061982009-03-31 23:00:32 +0000651 if (const Stmt *S = End.asStmt())
652 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000653
Ted Kremenek802e0242012-02-08 04:32:34 +0000654 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000655 os.str()));
656 break;
657 }
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Ted Kremenek31061982009-03-31 23:00:32 +0000659 // Determine control-flow for short-circuited '&&' and '||'.
660 case Stmt::BinaryOperatorClass: {
661 if (!PDB.supportsLogicalOpControlFlow())
662 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000663
Zhongxing Xu03509ae2010-07-20 06:22:24 +0000664 const BinaryOperator *B = cast<BinaryOperator>(T);
Ted Kremenek31061982009-03-31 23:00:32 +0000665 std::string sbuf;
666 llvm::raw_string_ostream os(sbuf);
667 os << "Left side of '";
Mike Stump1eb44332009-09-09 15:08:12 +0000668
John McCall2de56d12010-08-25 11:45:40 +0000669 if (B->getOpcode() == BO_LAnd) {
Ted Kremenek31061982009-03-31 23:00:32 +0000670 os << "&&" << "' is ";
Mike Stump1eb44332009-09-09 15:08:12 +0000671
Ted Kremenek31061982009-03-31 23:00:32 +0000672 if (*(Src->succ_begin()+1) == Dst) {
673 os << "false";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000674 PathDiagnosticLocation End(B->getLHS(), SMgr, LC);
Anna Zaks0cd59482011-09-16 19:18:30 +0000675 PathDiagnosticLocation Start =
676 PathDiagnosticLocation::createOperatorLoc(B, SMgr);
Ted Kremenek802e0242012-02-08 04:32:34 +0000677 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000678 os.str()));
Mike Stump1eb44332009-09-09 15:08:12 +0000679 }
Ted Kremenek31061982009-03-31 23:00:32 +0000680 else {
681 os << "true";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000682 PathDiagnosticLocation Start(B->getLHS(), SMgr, LC);
Ted Kremenek31061982009-03-31 23:00:32 +0000683 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Ted Kremenek802e0242012-02-08 04:32:34 +0000684 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000685 os.str()));
Mike Stump1eb44332009-09-09 15:08:12 +0000686 }
Ted Kremenek31061982009-03-31 23:00:32 +0000687 }
688 else {
John McCall2de56d12010-08-25 11:45:40 +0000689 assert(B->getOpcode() == BO_LOr);
Ted Kremenek31061982009-03-31 23:00:32 +0000690 os << "||" << "' is ";
Mike Stump1eb44332009-09-09 15:08:12 +0000691
Ted Kremenek31061982009-03-31 23:00:32 +0000692 if (*(Src->succ_begin()+1) == Dst) {
693 os << "false";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000694 PathDiagnosticLocation Start(B->getLHS(), SMgr, LC);
Ted Kremenek31061982009-03-31 23:00:32 +0000695 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Ted Kremenek802e0242012-02-08 04:32:34 +0000696 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Mike Stump1eb44332009-09-09 15:08:12 +0000697 os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000698 }
699 else {
700 os << "true";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000701 PathDiagnosticLocation End(B->getLHS(), SMgr, LC);
Anna Zaks0cd59482011-09-16 19:18:30 +0000702 PathDiagnosticLocation Start =
703 PathDiagnosticLocation::createOperatorLoc(B, SMgr);
Ted Kremenek802e0242012-02-08 04:32:34 +0000704 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Mike Stump1eb44332009-09-09 15:08:12 +0000705 os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000706 }
707 }
Mike Stump1eb44332009-09-09 15:08:12 +0000708
Ted Kremenek31061982009-03-31 23:00:32 +0000709 break;
710 }
Mike Stump1eb44332009-09-09 15:08:12 +0000711
712 case Stmt::DoStmtClass: {
Ted Kremenek31061982009-03-31 23:00:32 +0000713 if (*(Src->succ_begin()) == Dst) {
714 std::string sbuf;
715 llvm::raw_string_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000716
Ted Kremenek31061982009-03-31 23:00:32 +0000717 os << "Loop condition is true. ";
718 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
Mike Stump1eb44332009-09-09 15:08:12 +0000719
Ted Kremenek31061982009-03-31 23:00:32 +0000720 if (const Stmt *S = End.asStmt())
721 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000722
Ted Kremenek802e0242012-02-08 04:32:34 +0000723 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000724 os.str()));
725 }
726 else {
727 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000728
Ted Kremenek31061982009-03-31 23:00:32 +0000729 if (const Stmt *S = End.asStmt())
730 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000731
Ted Kremenek802e0242012-02-08 04:32:34 +0000732 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000733 "Loop condition is false. Exiting loop"));
734 }
Mike Stump1eb44332009-09-09 15:08:12 +0000735
Ted Kremenek31061982009-03-31 23:00:32 +0000736 break;
737 }
Mike Stump1eb44332009-09-09 15:08:12 +0000738
Ted Kremenek31061982009-03-31 23:00:32 +0000739 case Stmt::WhileStmtClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000740 case Stmt::ForStmtClass: {
Ted Kremenek31061982009-03-31 23:00:32 +0000741 if (*(Src->succ_begin()+1) == Dst) {
742 std::string sbuf;
743 llvm::raw_string_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000744
Ted Kremenek31061982009-03-31 23:00:32 +0000745 os << "Loop condition is false. ";
746 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
747 if (const Stmt *S = End.asStmt())
748 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000749
Ted Kremenek802e0242012-02-08 04:32:34 +0000750 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000751 os.str()));
752 }
753 else {
754 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
755 if (const Stmt *S = End.asStmt())
756 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000757
Ted Kremenek802e0242012-02-08 04:32:34 +0000758 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000759 "Loop condition is true. Entering loop body"));
Ted Kremenek31061982009-03-31 23:00:32 +0000760 }
Mike Stump1eb44332009-09-09 15:08:12 +0000761
Ted Kremenek31061982009-03-31 23:00:32 +0000762 break;
763 }
Mike Stump1eb44332009-09-09 15:08:12 +0000764
Ted Kremenek31061982009-03-31 23:00:32 +0000765 case Stmt::IfStmtClass: {
766 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000767
Ted Kremenek31061982009-03-31 23:00:32 +0000768 if (const Stmt *S = End.asStmt())
769 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000770
Ted Kremenek31061982009-03-31 23:00:32 +0000771 if (*(Src->succ_begin()+1) == Dst)
Ted Kremenek802e0242012-02-08 04:32:34 +0000772 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000773 "Taking false branch"));
Mike Stump1eb44332009-09-09 15:08:12 +0000774 else
Ted Kremenek802e0242012-02-08 04:32:34 +0000775 PD.path.push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000776 "Taking true branch"));
Mike Stump1eb44332009-09-09 15:08:12 +0000777
Ted Kremenek31061982009-03-31 23:00:32 +0000778 break;
779 }
780 }
781 }
Mike Stump1eb44332009-09-09 15:08:12 +0000782
Ted Kremenekdd986cc2009-05-07 00:45:33 +0000783 if (NextNode) {
Anna Zaks8e6431a2011-08-18 22:37:56 +0000784 // Add diagnostic pieces from custom visitors.
785 BugReport *R = PDB.getBugReport();
786 for (BugReport::visitor_iterator I = R->visitor_begin(),
787 E = R->visitor_end(); I!=E; ++I) {
788 if (PathDiagnosticPiece *p = (*I)->VisitNode(N, NextNode, PDB, *R))
Ted Kremenek802e0242012-02-08 04:32:34 +0000789 PD.path.push_front(p);
Ted Kremenekdd986cc2009-05-07 00:45:33 +0000790 }
Ted Kremenek8966bc12009-05-06 21:39:49 +0000791 }
Mike Stump1eb44332009-09-09 15:08:12 +0000792
Ted Kremenek9c378f72011-08-12 23:37:29 +0000793 if (const PostStmt *PS = dyn_cast<PostStmt>(&P)) {
Ted Kremenek31061982009-03-31 23:00:32 +0000794 // Scan the region bindings, and see if a "notable" symbol has a new
795 // lval binding.
796 ScanNotableSymbols SNS(N, PS->getStmt(), PDB.getBugReporter(), PD);
797 PDB.getStateManager().iterBindings(N->getState(), SNS);
798 }
799 }
Mike Stump1eb44332009-09-09 15:08:12 +0000800
Ted Kremenek14856d72009-04-06 23:06:54 +0000801 // After constructing the full PathDiagnostic, do a pass over it to compact
802 // PathDiagnosticPieces that occur within a macro.
803 CompactPathDiagnostic(PD, PDB.getSourceManager());
Ted Kremenek31061982009-03-31 23:00:32 +0000804}
805
806//===----------------------------------------------------------------------===//
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000807// "Extensive" PathDiagnostic generation.
808//===----------------------------------------------------------------------===//
809
810static bool IsControlFlowExpr(const Stmt *S) {
811 const Expr *E = dyn_cast<Expr>(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000812
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000813 if (!E)
814 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000815
816 E = E->IgnoreParenCasts();
817
John McCall56ca35d2011-02-17 10:25:35 +0000818 if (isa<AbstractConditionalOperator>(E))
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000819 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000820
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000821 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(E))
822 if (B->isLogicalOp())
823 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000824
825 return false;
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000826}
827
Ted Kremenek14856d72009-04-06 23:06:54 +0000828namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000829class ContextLocation : public PathDiagnosticLocation {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000830 bool IsDead;
831public:
832 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
833 : PathDiagnosticLocation(L), IsDead(isdead) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000834
835 void markDead() { IsDead = true; }
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000836 bool isDead() const { return IsDead; }
837};
Mike Stump1eb44332009-09-09 15:08:12 +0000838
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000839class EdgeBuilder {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000840 std::vector<ContextLocation> CLocs;
841 typedef std::vector<ContextLocation>::iterator iterator;
Ted Kremenek14856d72009-04-06 23:06:54 +0000842 PathDiagnostic &PD;
843 PathDiagnosticBuilder &PDB;
844 PathDiagnosticLocation PrevLoc;
Mike Stump1eb44332009-09-09 15:08:12 +0000845
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000846 bool IsConsumedExpr(const PathDiagnosticLocation &L);
Mike Stump1eb44332009-09-09 15:08:12 +0000847
Ted Kremenek14856d72009-04-06 23:06:54 +0000848 bool containsLocation(const PathDiagnosticLocation &Container,
849 const PathDiagnosticLocation &Containee);
Mike Stump1eb44332009-09-09 15:08:12 +0000850
Ted Kremenek14856d72009-04-06 23:06:54 +0000851 PathDiagnosticLocation getContextLocation(const PathDiagnosticLocation &L);
Mike Stump1eb44332009-09-09 15:08:12 +0000852
Ted Kremenek9650cf32009-05-11 21:42:34 +0000853 PathDiagnosticLocation cleanUpLocation(PathDiagnosticLocation L,
854 bool firstCharOnly = false) {
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000855 if (const Stmt *S = L.asStmt()) {
Ted Kremenek9650cf32009-05-11 21:42:34 +0000856 const Stmt *Original = S;
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000857 while (1) {
858 // Adjust the location for some expressions that are best referenced
859 // by one of their subexpressions.
Ted Kremenek9650cf32009-05-11 21:42:34 +0000860 switch (S->getStmtClass()) {
861 default:
862 break;
863 case Stmt::ParenExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +0000864 case Stmt::GenericSelectionExprClass:
865 S = cast<Expr>(S)->IgnoreParens();
Ted Kremenek9650cf32009-05-11 21:42:34 +0000866 firstCharOnly = true;
867 continue;
John McCall56ca35d2011-02-17 10:25:35 +0000868 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek9650cf32009-05-11 21:42:34 +0000869 case Stmt::ConditionalOperatorClass:
John McCall56ca35d2011-02-17 10:25:35 +0000870 S = cast<AbstractConditionalOperator>(S)->getCond();
Ted Kremenek9650cf32009-05-11 21:42:34 +0000871 firstCharOnly = true;
872 continue;
873 case Stmt::ChooseExprClass:
874 S = cast<ChooseExpr>(S)->getCond();
875 firstCharOnly = true;
876 continue;
877 case Stmt::BinaryOperatorClass:
878 S = cast<BinaryOperator>(S)->getLHS();
879 firstCharOnly = true;
880 continue;
881 }
Mike Stump1eb44332009-09-09 15:08:12 +0000882
Ted Kremenek9650cf32009-05-11 21:42:34 +0000883 break;
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000884 }
Mike Stump1eb44332009-09-09 15:08:12 +0000885
Ted Kremenek9650cf32009-05-11 21:42:34 +0000886 if (S != Original)
Anna Zaks23803372011-09-20 16:23:37 +0000887 L = PathDiagnosticLocation(S, L.getManager(), PDB.getLocationContext());
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000888 }
Mike Stump1eb44332009-09-09 15:08:12 +0000889
Ted Kremenek9650cf32009-05-11 21:42:34 +0000890 if (firstCharOnly)
Anna Zaks1531bb02011-09-20 01:38:47 +0000891 L = PathDiagnosticLocation::createSingleLocation(L);
Ted Kremenek9650cf32009-05-11 21:42:34 +0000892
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000893 return L;
894 }
Mike Stump1eb44332009-09-09 15:08:12 +0000895
Ted Kremenek14856d72009-04-06 23:06:54 +0000896 void popLocation() {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000897 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {
Ted Kremenek5c7168c2009-04-22 20:36:26 +0000898 // For contexts, we only one the first character as the range.
Ted Kremenek07c015c2009-05-15 02:46:13 +0000899 rawAddEdge(cleanUpLocation(CLocs.back(), true));
Ted Kremenek5c7168c2009-04-22 20:36:26 +0000900 }
Ted Kremenek14856d72009-04-06 23:06:54 +0000901 CLocs.pop_back();
902 }
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Ted Kremenek14856d72009-04-06 23:06:54 +0000904public:
905 EdgeBuilder(PathDiagnostic &pd, PathDiagnosticBuilder &pdb)
906 : PD(pd), PDB(pdb) {
Mike Stump1eb44332009-09-09 15:08:12 +0000907
Ted Kremeneka301a672009-04-22 18:16:20 +0000908 // If the PathDiagnostic already has pieces, add the enclosing statement
909 // of the first piece as a context as well.
Ted Kremenek802e0242012-02-08 04:32:34 +0000910 if (!PD.path.empty()) {
911 PrevLoc = (*PD.path.begin())->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000912
Ted Kremenek14856d72009-04-06 23:06:54 +0000913 if (const Stmt *S = PrevLoc.asStmt())
Ted Kremeneke1baed32009-05-05 23:13:38 +0000914 addExtendedContext(PDB.getEnclosingStmtLocation(S).asStmt());
Ted Kremenek14856d72009-04-06 23:06:54 +0000915 }
916 }
917
918 ~EdgeBuilder() {
919 while (!CLocs.empty()) popLocation();
Anna Zaks0cd59482011-09-16 19:18:30 +0000920
Ted Kremeneka301a672009-04-22 18:16:20 +0000921 // Finally, add an initial edge from the start location of the first
922 // statement (if it doesn't already exist).
Anna Zaks0cd59482011-09-16 19:18:30 +0000923 PathDiagnosticLocation L = PathDiagnosticLocation::createDeclBegin(
924 PDB.getLocationContext(),
925 PDB.getSourceManager());
926 if (L.isValid())
927 rawAddEdge(L);
Ted Kremenek14856d72009-04-06 23:06:54 +0000928 }
929
Ted Kremenek5de4fdb2012-02-07 02:26:17 +0000930 void flushLocations() {
931 while (!CLocs.empty())
932 popLocation();
933 PrevLoc = PathDiagnosticLocation();
934 }
935
Ted Kremenek14856d72009-04-06 23:06:54 +0000936 void addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd = false);
Mike Stump1eb44332009-09-09 15:08:12 +0000937
Ted Kremenek8bd4d032009-04-28 04:23:15 +0000938 void rawAddEdge(PathDiagnosticLocation NewLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000939
Ted Kremenek14856d72009-04-06 23:06:54 +0000940 void addContext(const Stmt *S);
Ted Kremeneke1baed32009-05-05 23:13:38 +0000941 void addExtendedContext(const Stmt *S);
Mike Stump1eb44332009-09-09 15:08:12 +0000942};
Ted Kremenek14856d72009-04-06 23:06:54 +0000943} // end anonymous namespace
944
945
946PathDiagnosticLocation
947EdgeBuilder::getContextLocation(const PathDiagnosticLocation &L) {
948 if (const Stmt *S = L.asStmt()) {
949 if (IsControlFlowExpr(S))
950 return L;
Mike Stump1eb44332009-09-09 15:08:12 +0000951
952 return PDB.getEnclosingStmtLocation(S);
Ted Kremenek14856d72009-04-06 23:06:54 +0000953 }
Mike Stump1eb44332009-09-09 15:08:12 +0000954
Ted Kremenek14856d72009-04-06 23:06:54 +0000955 return L;
956}
957
958bool EdgeBuilder::containsLocation(const PathDiagnosticLocation &Container,
959 const PathDiagnosticLocation &Containee) {
960
961 if (Container == Containee)
962 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000963
Ted Kremenek14856d72009-04-06 23:06:54 +0000964 if (Container.asDecl())
965 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000966
Ted Kremenek14856d72009-04-06 23:06:54 +0000967 if (const Stmt *S = Containee.asStmt())
968 if (const Stmt *ContainerS = Container.asStmt()) {
969 while (S) {
970 if (S == ContainerS)
971 return true;
972 S = PDB.getParent(S);
973 }
974 return false;
975 }
976
977 // Less accurate: compare using source ranges.
978 SourceRange ContainerR = Container.asRange();
979 SourceRange ContaineeR = Containee.asRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000980
Ted Kremenek14856d72009-04-06 23:06:54 +0000981 SourceManager &SM = PDB.getSourceManager();
Chandler Carruth40278532011-07-25 16:49:02 +0000982 SourceLocation ContainerRBeg = SM.getExpansionLoc(ContainerR.getBegin());
983 SourceLocation ContainerREnd = SM.getExpansionLoc(ContainerR.getEnd());
984 SourceLocation ContaineeRBeg = SM.getExpansionLoc(ContaineeR.getBegin());
985 SourceLocation ContaineeREnd = SM.getExpansionLoc(ContaineeR.getEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000986
Chandler Carruth64211622011-07-25 21:09:52 +0000987 unsigned ContainerBegLine = SM.getExpansionLineNumber(ContainerRBeg);
988 unsigned ContainerEndLine = SM.getExpansionLineNumber(ContainerREnd);
989 unsigned ContaineeBegLine = SM.getExpansionLineNumber(ContaineeRBeg);
990 unsigned ContaineeEndLine = SM.getExpansionLineNumber(ContaineeREnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000991
Ted Kremenek14856d72009-04-06 23:06:54 +0000992 assert(ContainerBegLine <= ContainerEndLine);
Mike Stump1eb44332009-09-09 15:08:12 +0000993 assert(ContaineeBegLine <= ContaineeEndLine);
994
Ted Kremenek14856d72009-04-06 23:06:54 +0000995 return (ContainerBegLine <= ContaineeBegLine &&
996 ContainerEndLine >= ContaineeEndLine &&
997 (ContainerBegLine != ContaineeBegLine ||
Chandler Carrutha77c0312011-07-25 20:57:57 +0000998 SM.getExpansionColumnNumber(ContainerRBeg) <=
999 SM.getExpansionColumnNumber(ContaineeRBeg)) &&
Ted Kremenek14856d72009-04-06 23:06:54 +00001000 (ContainerEndLine != ContaineeEndLine ||
Chandler Carrutha77c0312011-07-25 20:57:57 +00001001 SM.getExpansionColumnNumber(ContainerREnd) >=
1002 SM.getExpansionColumnNumber(ContainerREnd)));
Ted Kremenek14856d72009-04-06 23:06:54 +00001003}
1004
Ted Kremenek14856d72009-04-06 23:06:54 +00001005void EdgeBuilder::rawAddEdge(PathDiagnosticLocation NewLoc) {
1006 if (!PrevLoc.isValid()) {
1007 PrevLoc = NewLoc;
1008 return;
1009 }
Mike Stump1eb44332009-09-09 15:08:12 +00001010
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +00001011 const PathDiagnosticLocation &NewLocClean = cleanUpLocation(NewLoc);
1012 const PathDiagnosticLocation &PrevLocClean = cleanUpLocation(PrevLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001013
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +00001014 if (NewLocClean.asLocation() == PrevLocClean.asLocation())
Ted Kremenek14856d72009-04-06 23:06:54 +00001015 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001016
Ted Kremenek14856d72009-04-06 23:06:54 +00001017 // FIXME: Ignore intra-macro edges for now.
Chandler Carruth40278532011-07-25 16:49:02 +00001018 if (NewLocClean.asLocation().getExpansionLoc() ==
1019 PrevLocClean.asLocation().getExpansionLoc())
Ted Kremenek14856d72009-04-06 23:06:54 +00001020 return;
1021
Ted Kremenek802e0242012-02-08 04:32:34 +00001022 PD.path.push_front(new PathDiagnosticControlFlowPiece(NewLocClean, PrevLocClean));
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +00001023 PrevLoc = NewLoc;
Ted Kremenek14856d72009-04-06 23:06:54 +00001024}
1025
1026void EdgeBuilder::addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd) {
Mike Stump1eb44332009-09-09 15:08:12 +00001027
Ted Kremeneka301a672009-04-22 18:16:20 +00001028 if (!alwaysAdd && NewLoc.asLocation().isMacroID())
1029 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001030
Ted Kremenek14856d72009-04-06 23:06:54 +00001031 const PathDiagnosticLocation &CLoc = getContextLocation(NewLoc);
1032
1033 while (!CLocs.empty()) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001034 ContextLocation &TopContextLoc = CLocs.back();
Mike Stump1eb44332009-09-09 15:08:12 +00001035
Ted Kremenek14856d72009-04-06 23:06:54 +00001036 // Is the top location context the same as the one for the new location?
1037 if (TopContextLoc == CLoc) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001038 if (alwaysAdd) {
Ted Kremenek4c6f8d32009-05-04 18:15:17 +00001039 if (IsConsumedExpr(TopContextLoc) &&
1040 !IsControlFlowExpr(TopContextLoc.asStmt()))
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001041 TopContextLoc.markDead();
1042
Ted Kremenek14856d72009-04-06 23:06:54 +00001043 rawAddEdge(NewLoc);
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001044 }
Ted Kremenek14856d72009-04-06 23:06:54 +00001045
1046 return;
1047 }
1048
1049 if (containsLocation(TopContextLoc, CLoc)) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001050 if (alwaysAdd) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001051 rawAddEdge(NewLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001052
Ted Kremenek4c6f8d32009-05-04 18:15:17 +00001053 if (IsConsumedExpr(CLoc) && !IsControlFlowExpr(CLoc.asStmt())) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001054 CLocs.push_back(ContextLocation(CLoc, true));
1055 return;
1056 }
1057 }
Mike Stump1eb44332009-09-09 15:08:12 +00001058
Ted Kremenek14856d72009-04-06 23:06:54 +00001059 CLocs.push_back(CLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00001060 return;
Ted Kremenek14856d72009-04-06 23:06:54 +00001061 }
1062
1063 // Context does not contain the location. Flush it.
1064 popLocation();
1065 }
Mike Stump1eb44332009-09-09 15:08:12 +00001066
Ted Kremenek5c7168c2009-04-22 20:36:26 +00001067 // If we reach here, there is no enclosing context. Just add the edge.
1068 rawAddEdge(NewLoc);
Ted Kremenek14856d72009-04-06 23:06:54 +00001069}
1070
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001071bool EdgeBuilder::IsConsumedExpr(const PathDiagnosticLocation &L) {
1072 if (const Expr *X = dyn_cast_or_null<Expr>(L.asStmt()))
1073 return PDB.getParentMap().isConsumedExpr(X) && !IsControlFlowExpr(X);
Mike Stump1eb44332009-09-09 15:08:12 +00001074
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001075 return false;
1076}
Mike Stump1eb44332009-09-09 15:08:12 +00001077
Ted Kremeneke1baed32009-05-05 23:13:38 +00001078void EdgeBuilder::addExtendedContext(const Stmt *S) {
1079 if (!S)
1080 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001081
1082 const Stmt *Parent = PDB.getParent(S);
Ted Kremeneke1baed32009-05-05 23:13:38 +00001083 while (Parent) {
1084 if (isa<CompoundStmt>(Parent))
1085 Parent = PDB.getParent(Parent);
1086 else
1087 break;
1088 }
1089
1090 if (Parent) {
1091 switch (Parent->getStmtClass()) {
1092 case Stmt::DoStmtClass:
1093 case Stmt::ObjCAtSynchronizedStmtClass:
1094 addContext(Parent);
1095 default:
1096 break;
1097 }
1098 }
Mike Stump1eb44332009-09-09 15:08:12 +00001099
Ted Kremeneke1baed32009-05-05 23:13:38 +00001100 addContext(S);
1101}
Mike Stump1eb44332009-09-09 15:08:12 +00001102
Ted Kremenek14856d72009-04-06 23:06:54 +00001103void EdgeBuilder::addContext(const Stmt *S) {
1104 if (!S)
1105 return;
1106
Anna Zaks220ac8c2011-09-15 01:08:34 +00001107 PathDiagnosticLocation L(S, PDB.getSourceManager(), PDB.getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +00001108
Ted Kremenek14856d72009-04-06 23:06:54 +00001109 while (!CLocs.empty()) {
1110 const PathDiagnosticLocation &TopContextLoc = CLocs.back();
1111
1112 // Is the top location context the same as the one for the new location?
1113 if (TopContextLoc == L)
1114 return;
1115
1116 if (containsLocation(TopContextLoc, L)) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001117 CLocs.push_back(L);
Mike Stump1eb44332009-09-09 15:08:12 +00001118 return;
Ted Kremenek14856d72009-04-06 23:06:54 +00001119 }
1120
1121 // Context does not contain the location. Flush it.
1122 popLocation();
1123 }
1124
1125 CLocs.push_back(L);
1126}
1127
1128static void GenerateExtensivePathDiagnostic(PathDiagnostic& PD,
1129 PathDiagnosticBuilder &PDB,
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001130 const ExplodedNode *N) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001131 EdgeBuilder EB(PD, PDB);
Anna Zaks0cd59482011-09-16 19:18:30 +00001132 const SourceManager& SM = PDB.getSourceManager();
Ted Kremenek14856d72009-04-06 23:06:54 +00001133
Ted Kremenek9c378f72011-08-12 23:37:29 +00001134 const ExplodedNode *NextNode = N->pred_empty() ? NULL : *(N->pred_begin());
Ted Kremenek14856d72009-04-06 23:06:54 +00001135 while (NextNode) {
1136 N = NextNode;
1137 NextNode = GetPredecessorNode(N);
1138 ProgramPoint P = N->getLocation();
1139
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001140 do {
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001141 if (const CallExit *CE = dyn_cast<CallExit>(&P)) {
1142 const StackFrameContext *LCtx =
1143 CE->getLocationContext()->getCurrentStackFrame();
1144 PathDiagnosticLocation Loc(LCtx->getCallSite(),
1145 PDB.getSourceManager(),
1146 LCtx);
1147 EB.addEdge(Loc, true);
1148 EB.flushLocations();
1149 break;
1150 }
1151
1152 // Was the predecessor in a different stack frame?
1153 if (NextNode &&
1154 !isa<CallExit>(NextNode->getLocation()) &&
1155 NextNode->getLocationContext()->getCurrentStackFrame() !=
1156 N->getLocationContext()->getCurrentStackFrame()) {
1157 EB.flushLocations();
1158 }
1159
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001160 // Block edges.
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001161 if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P)) {
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001162 const CFGBlock &Blk = *BE->getSrc();
1163 const Stmt *Term = Blk.getTerminator();
Mike Stump1eb44332009-09-09 15:08:12 +00001164
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001165 // Are we jumping to the head of a loop? Add a special diagnostic.
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001166 if (const Stmt *Loop = BE->getDst()->getLoopTarget()) {
Anna Zaks0cd59482011-09-16 19:18:30 +00001167 PathDiagnosticLocation L(Loop, SM, PDB.getLocationContext());
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001168 const CompoundStmt *CS = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001169
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001170 if (!Term) {
1171 if (const ForStmt *FS = dyn_cast<ForStmt>(Loop))
1172 CS = dyn_cast<CompoundStmt>(FS->getBody());
1173 else if (const WhileStmt *WS = dyn_cast<WhileStmt>(Loop))
Mike Stump1eb44332009-09-09 15:08:12 +00001174 CS = dyn_cast<CompoundStmt>(WS->getBody());
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001175 }
Mike Stump1eb44332009-09-09 15:08:12 +00001176
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001177 PathDiagnosticEventPiece *p =
1178 new PathDiagnosticEventPiece(L,
Ted Kremenek07c015c2009-05-15 02:46:13 +00001179 "Looping back to the head of the loop");
Mike Stump1eb44332009-09-09 15:08:12 +00001180
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001181 EB.addEdge(p->getLocation(), true);
Ted Kremenek802e0242012-02-08 04:32:34 +00001182 PD.path.push_front(p);
Mike Stump1eb44332009-09-09 15:08:12 +00001183
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001184 if (CS) {
Anna Zaks0cd59482011-09-16 19:18:30 +00001185 PathDiagnosticLocation BL =
1186 PathDiagnosticLocation::createEndBrace(CS, SM);
Ted Kremenek07c015c2009-05-15 02:46:13 +00001187 EB.addEdge(BL);
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001188 }
Ted Kremenek8bd4d032009-04-28 04:23:15 +00001189 }
Mike Stump1eb44332009-09-09 15:08:12 +00001190
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001191 if (Term)
1192 EB.addContext(Term);
Mike Stump1eb44332009-09-09 15:08:12 +00001193
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001194 break;
Ted Kremenek14856d72009-04-06 23:06:54 +00001195 }
1196
Mike Stump1eb44332009-09-09 15:08:12 +00001197 if (const BlockEntrance *BE = dyn_cast<BlockEntrance>(&P)) {
Ted Kremenek3c0349e2011-03-01 03:15:10 +00001198 if (const CFGStmt *S = BE->getFirstElement().getAs<CFGStmt>()) {
1199 const Stmt *stmt = S->getStmt();
1200 if (IsControlFlowExpr(stmt)) {
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00001201 // Add the proper context for '&&', '||', and '?'.
Ted Kremenek3c0349e2011-03-01 03:15:10 +00001202 EB.addContext(stmt);
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00001203 }
1204 else
Ted Kremenek3c0349e2011-03-01 03:15:10 +00001205 EB.addExtendedContext(PDB.getEnclosingStmtLocation(stmt).asStmt());
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001206 }
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00001207
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001208 break;
1209 }
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001210
1211
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001212 } while (0);
Mike Stump1eb44332009-09-09 15:08:12 +00001213
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001214 if (!NextNode)
Ted Kremenek14856d72009-04-06 23:06:54 +00001215 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001216
Anna Zaks8e6431a2011-08-18 22:37:56 +00001217 // Add pieces from custom visitors.
1218 BugReport *R = PDB.getBugReport();
1219 for (BugReport::visitor_iterator I = R->visitor_begin(),
1220 E = R->visitor_end(); I!=E; ++I) {
1221 if (PathDiagnosticPiece *p = (*I)->VisitNode(N, NextNode, PDB, *R)) {
Ted Kremenek8966bc12009-05-06 21:39:49 +00001222 const PathDiagnosticLocation &Loc = p->getLocation();
1223 EB.addEdge(Loc, true);
Ted Kremenek802e0242012-02-08 04:32:34 +00001224 PD.path.push_front(p);
Ted Kremenek8966bc12009-05-06 21:39:49 +00001225 if (const Stmt *S = Loc.asStmt())
Mike Stump1eb44332009-09-09 15:08:12 +00001226 EB.addExtendedContext(PDB.getEnclosingStmtLocation(S).asStmt());
Ted Kremenek8966bc12009-05-06 21:39:49 +00001227 }
Mike Stump1eb44332009-09-09 15:08:12 +00001228 }
Ted Kremenek14856d72009-04-06 23:06:54 +00001229 }
1230}
1231
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +00001232//===----------------------------------------------------------------------===//
Ted Kremenekcf118d42009-02-04 23:49:09 +00001233// Methods for BugType and subclasses.
1234//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001235BugType::~BugType() { }
1236
Ted Kremenekcf118d42009-02-04 23:49:09 +00001237void BugType::FlushReports(BugReporter &BR) {}
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001238
David Blaikie99ba9e32011-12-20 02:48:34 +00001239void BuiltinBug::anchor() {}
1240
Ted Kremenekcf118d42009-02-04 23:49:09 +00001241//===----------------------------------------------------------------------===//
1242// Methods for BugReport and subclasses.
1243//===----------------------------------------------------------------------===//
Anna Zakse172e8b2011-08-17 23:00:25 +00001244
David Blaikie99ba9e32011-12-20 02:48:34 +00001245void BugReport::NodeResolver::anchor() {}
1246
Anna Zaks8e6431a2011-08-18 22:37:56 +00001247void BugReport::addVisitor(BugReporterVisitor* visitor) {
1248 if (!visitor)
1249 return;
1250
1251 llvm::FoldingSetNodeID ID;
1252 visitor->Profile(ID);
1253 void *InsertPos;
1254
1255 if (CallbacksSet.FindNodeOrInsertPos(ID, InsertPos)) {
1256 delete visitor;
1257 return;
1258 }
1259
1260 CallbacksSet.InsertNode(visitor, InsertPos);
1261 Callbacks = F.add(visitor, Callbacks);
1262}
1263
1264BugReport::~BugReport() {
1265 for (visitor_iterator I = visitor_begin(), E = visitor_end(); I != E; ++I) {
Anna Zaksdc757b02011-08-19 23:21:56 +00001266 delete *I;
Anna Zaks8e6431a2011-08-18 22:37:56 +00001267 }
1268}
Anna Zakse172e8b2011-08-17 23:00:25 +00001269
1270void BugReport::Profile(llvm::FoldingSetNodeID& hash) const {
1271 hash.AddPointer(&BT);
Anna Zakse172e8b2011-08-17 23:00:25 +00001272 hash.AddString(Description);
Anna Zaks590dd8e2011-09-20 21:38:35 +00001273 if (Location.isValid()) {
1274 Location.Profile(hash);
1275 } else {
1276 assert(ErrorNode);
1277 hash.AddPointer(GetCurrentOrPreviousStmt(ErrorNode));
1278 }
Anna Zakse172e8b2011-08-17 23:00:25 +00001279
1280 for (SmallVectorImpl<SourceRange>::const_iterator I =
1281 Ranges.begin(), E = Ranges.end(); I != E; ++I) {
1282 const SourceRange range = *I;
1283 if (!range.isValid())
1284 continue;
1285 hash.AddInteger(range.getBegin().getRawEncoding());
1286 hash.AddInteger(range.getEnd().getRawEncoding());
1287 }
1288}
Ted Kremenekcf118d42009-02-04 23:49:09 +00001289
Ted Kremenek9c378f72011-08-12 23:37:29 +00001290const Stmt *BugReport::getStmt() const {
Anna Zakse172e8b2011-08-17 23:00:25 +00001291 if (!ErrorNode)
1292 return 0;
1293
Tom Care212f6d32010-09-16 03:50:38 +00001294 ProgramPoint ProgP = ErrorNode->getLocation();
Ted Kremenek5f85e172009-07-22 22:35:28 +00001295 const Stmt *S = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001296
Ted Kremenek9c378f72011-08-12 23:37:29 +00001297 if (BlockEntrance *BE = dyn_cast<BlockEntrance>(&ProgP)) {
Zhongxing Xufafd3832009-08-20 01:23:34 +00001298 CFGBlock &Exit = ProgP.getLocationContext()->getCFG()->getExit();
Zhongxing Xu50d5bc42009-08-18 08:46:04 +00001299 if (BE->getBlock() == &Exit)
Tom Care212f6d32010-09-16 03:50:38 +00001300 S = GetPreviousStmt(ErrorNode);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001301 }
Ted Kremenek5f85e172009-07-22 22:35:28 +00001302 if (!S)
Mike Stump1eb44332009-09-09 15:08:12 +00001303 S = GetStmt(ProgP);
1304
1305 return S;
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001306}
1307
Argyrios Kyrtzidis640ccf02010-12-04 01:12:15 +00001308std::pair<BugReport::ranges_iterator, BugReport::ranges_iterator>
Anna Zakse172e8b2011-08-17 23:00:25 +00001309BugReport::getRanges() {
1310 // If no custom ranges, add the range of the statement corresponding to
1311 // the error node.
1312 if (Ranges.empty()) {
1313 if (const Expr *E = dyn_cast_or_null<Expr>(getStmt()))
1314 addRange(E->getSourceRange());
1315 else
1316 return std::make_pair(ranges_iterator(), ranges_iterator());
1317 }
1318
Anna Zaks14924262011-08-24 20:31:06 +00001319 // User-specified absence of range info.
1320 if (Ranges.size() == 1 && !Ranges.begin()->isValid())
1321 return std::make_pair(ranges_iterator(), ranges_iterator());
1322
Anna Zakse172e8b2011-08-17 23:00:25 +00001323 return std::make_pair(Ranges.begin(), Ranges.end());
Ted Kremenekf1ae7052008-04-03 17:57:38 +00001324}
1325
Anna Zaks590dd8e2011-09-20 21:38:35 +00001326PathDiagnosticLocation BugReport::getLocation(const SourceManager &SM) const {
Anna Zaksb7530a42011-08-17 23:21:23 +00001327 if (ErrorNode) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001328 assert(!Location.isValid() &&
Anna Zaksb7530a42011-08-17 23:21:23 +00001329 "Either Location or ErrorNode should be specified but not both.");
1330
Ted Kremenek9c378f72011-08-12 23:37:29 +00001331 if (const Stmt *S = GetCurrentOrPreviousStmt(ErrorNode)) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001332 const LocationContext *LC = ErrorNode->getLocationContext();
1333
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001334 // For member expressions, return the location of the '.' or '->'.
Ted Kremenek5b9bd212009-09-11 22:07:28 +00001335 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S))
Anna Zaks590dd8e2011-09-20 21:38:35 +00001336 return PathDiagnosticLocation::createMemberLoc(ME, SM);
Ted Kremenek5b9bd212009-09-11 22:07:28 +00001337 // For binary operators, return the location of the operator.
1338 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(S))
Anna Zaks590dd8e2011-09-20 21:38:35 +00001339 return PathDiagnosticLocation::createOperatorLoc(B, SM);
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001340
Anna Zaks590dd8e2011-09-20 21:38:35 +00001341 return PathDiagnosticLocation::createBegin(S, SM, LC);
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001342 }
Anna Zaksb7530a42011-08-17 23:21:23 +00001343 } else {
1344 assert(Location.isValid());
1345 return Location;
1346 }
1347
Anna Zaks590dd8e2011-09-20 21:38:35 +00001348 return PathDiagnosticLocation();
Ted Kremenekd2f642b2008-04-14 17:39:48 +00001349}
1350
Ted Kremenekcf118d42009-02-04 23:49:09 +00001351//===----------------------------------------------------------------------===//
1352// Methods for BugReporter and subclasses.
1353//===----------------------------------------------------------------------===//
1354
1355BugReportEquivClass::~BugReportEquivClass() {
Ted Kremenek8966bc12009-05-06 21:39:49 +00001356 for (iterator I=begin(), E=end(); I!=E; ++I) delete *I;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001357}
1358
Zhongxing Xua2f4ec02009-09-05 06:06:49 +00001359GRBugReporter::~GRBugReporter() { }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001360BugReporterData::~BugReporterData() {}
1361
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001362ExplodedGraph &GRBugReporter::getGraph() { return Eng.getGraph(); }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001363
Ted Kremenek18c66fd2011-08-15 22:09:50 +00001364ProgramStateManager&
Ted Kremenekcf118d42009-02-04 23:49:09 +00001365GRBugReporter::getStateManager() { return Eng.getStateManager(); }
1366
Anna Zaks3b030a22011-08-19 01:57:09 +00001367BugReporter::~BugReporter() {
1368 FlushReports();
1369
1370 // Free the bug reports we are tracking.
1371 typedef std::vector<BugReportEquivClass *> ContTy;
1372 for (ContTy::iterator I = EQClassesVector.begin(), E = EQClassesVector.end();
1373 I != E; ++I) {
1374 delete *I;
1375 }
1376}
Ted Kremenekcf118d42009-02-04 23:49:09 +00001377
1378void BugReporter::FlushReports() {
1379 if (BugTypes.isEmpty())
1380 return;
1381
1382 // First flush the warnings for each BugType. This may end up creating new
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001383 // warnings and new BugTypes.
1384 // FIXME: Only NSErrorChecker needs BugType's FlushReports.
1385 // Turn NSErrorChecker into a proper checker and remove this.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001386 SmallVector<const BugType*, 16> bugTypes;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001387 for (BugTypesTy::iterator I=BugTypes.begin(), E=BugTypes.end(); I!=E; ++I)
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001388 bugTypes.push_back(*I);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001389 for (SmallVector<const BugType*, 16>::iterator
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001390 I = bugTypes.begin(), E = bugTypes.end(); I != E; ++I)
Ted Kremenekcf118d42009-02-04 23:49:09 +00001391 const_cast<BugType*>(*I)->FlushReports(*this);
1392
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001393 typedef llvm::FoldingSet<BugReportEquivClass> SetTy;
1394 for (SetTy::iterator EI=EQClasses.begin(), EE=EQClasses.end(); EI!=EE;++EI){
1395 BugReportEquivClass& EQ = *EI;
1396 FlushReport(EQ);
Ted Kremenek94826a72008-04-03 04:59:14 +00001397 }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001398
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001399 // BugReporter owns and deletes only BugTypes created implicitly through
1400 // EmitBasicReport.
1401 // FIXME: There are leaks from checkers that assume that the BugTypes they
1402 // create will be destroyed by the BugReporter.
1403 for (llvm::StringMap<BugType*>::iterator
1404 I = StrBugTypes.begin(), E = StrBugTypes.end(); I != E; ++I)
1405 delete I->second;
1406
Ted Kremenekcf118d42009-02-04 23:49:09 +00001407 // Remove all references to the BugType objects.
Ted Kremenek3baf6722010-11-24 00:54:37 +00001408 BugTypes = F.getEmptySet();
Ted Kremenekcf118d42009-02-04 23:49:09 +00001409}
1410
1411//===----------------------------------------------------------------------===//
1412// PathDiagnostics generation.
1413//===----------------------------------------------------------------------===//
1414
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001415static std::pair<std::pair<ExplodedGraph*, NodeBackMap*>,
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001416 std::pair<ExplodedNode*, unsigned> >
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001417MakeReportGraph(const ExplodedGraph* G,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001418 SmallVectorImpl<const ExplodedNode*> &nodes) {
Mike Stump1eb44332009-09-09 15:08:12 +00001419
Ted Kremenekcf118d42009-02-04 23:49:09 +00001420 // Create the trimmed graph. It will contain the shortest paths from the
Mike Stump1eb44332009-09-09 15:08:12 +00001421 // error nodes to the root. In the new graph we should only have one
Ted Kremenekcf118d42009-02-04 23:49:09 +00001422 // error node unless there are two or more error nodes with the same minimum
1423 // path length.
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001424 ExplodedGraph* GTrim;
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001425 InterExplodedGraphMap* NMap;
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001426
1427 llvm::DenseMap<const void*, const void*> InverseMap;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001428 llvm::tie(GTrim, NMap) = G->Trim(nodes.data(), nodes.data() + nodes.size(),
1429 &InverseMap);
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Ted Kremenekcf118d42009-02-04 23:49:09 +00001431 // Create owning pointers for GTrim and NMap just to ensure that they are
1432 // released when this function exists.
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00001433 OwningPtr<ExplodedGraph> AutoReleaseGTrim(GTrim);
1434 OwningPtr<InterExplodedGraphMap> AutoReleaseNMap(NMap);
Mike Stump1eb44332009-09-09 15:08:12 +00001435
Ted Kremenekcf118d42009-02-04 23:49:09 +00001436 // Find the (first) error node in the trimmed graph. We just need to consult
1437 // the node map (NMap) which maps from nodes in the original graph to nodes
1438 // in the new graph.
Ted Kremenek938332c2009-05-16 01:11:58 +00001439
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001440 std::queue<const ExplodedNode*> WS;
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001441 typedef llvm::DenseMap<const ExplodedNode*, unsigned> IndexMapTy;
Ted Kremenek938332c2009-05-16 01:11:58 +00001442 IndexMapTy IndexMap;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001443
Ted Kremenek40406fe2010-12-03 06:52:30 +00001444 for (unsigned nodeIndex = 0 ; nodeIndex < nodes.size(); ++nodeIndex) {
1445 const ExplodedNode *originalNode = nodes[nodeIndex];
1446 if (const ExplodedNode *N = NMap->getMappedNode(originalNode)) {
Ted Kremenek938332c2009-05-16 01:11:58 +00001447 WS.push(N);
Ted Kremenek40406fe2010-12-03 06:52:30 +00001448 IndexMap[originalNode] = nodeIndex;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001449 }
Ted Kremenek40406fe2010-12-03 06:52:30 +00001450 }
Mike Stump1eb44332009-09-09 15:08:12 +00001451
Ted Kremenek938332c2009-05-16 01:11:58 +00001452 assert(!WS.empty() && "No error node found in the trimmed graph.");
Ted Kremenekcf118d42009-02-04 23:49:09 +00001453
1454 // Create a new (third!) graph with a single path. This is the graph
1455 // that will be returned to the caller.
Zhongxing Xuc77a5512010-07-01 07:10:59 +00001456 ExplodedGraph *GNew = new ExplodedGraph();
Mike Stump1eb44332009-09-09 15:08:12 +00001457
Ted Kremenek10aa5542009-03-12 23:41:59 +00001458 // Sometimes the trimmed graph can contain a cycle. Perform a reverse BFS
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001459 // to the root node, and then construct a new graph that contains only
1460 // a single path.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001461 llvm::DenseMap<const void*,unsigned> Visited;
Mike Stump1eb44332009-09-09 15:08:12 +00001462
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001463 unsigned cnt = 0;
Ted Kremenek9c378f72011-08-12 23:37:29 +00001464 const ExplodedNode *Root = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001465
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001466 while (!WS.empty()) {
Ted Kremenek9c378f72011-08-12 23:37:29 +00001467 const ExplodedNode *Node = WS.front();
Ted Kremenek10aa5542009-03-12 23:41:59 +00001468 WS.pop();
Mike Stump1eb44332009-09-09 15:08:12 +00001469
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001470 if (Visited.find(Node) != Visited.end())
1471 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001472
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001473 Visited[Node] = cnt++;
Mike Stump1eb44332009-09-09 15:08:12 +00001474
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001475 if (Node->pred_empty()) {
1476 Root = Node;
1477 break;
1478 }
Mike Stump1eb44332009-09-09 15:08:12 +00001479
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001480 for (ExplodedNode::const_pred_iterator I=Node->pred_begin(),
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001481 E=Node->pred_end(); I!=E; ++I)
Ted Kremenek10aa5542009-03-12 23:41:59 +00001482 WS.push(*I);
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001483 }
Mike Stump1eb44332009-09-09 15:08:12 +00001484
Ted Kremenek938332c2009-05-16 01:11:58 +00001485 assert(Root);
Mike Stump1eb44332009-09-09 15:08:12 +00001486
Ted Kremenek10aa5542009-03-12 23:41:59 +00001487 // Now walk from the root down the BFS path, always taking the successor
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001488 // with the lowest number.
Mike Stump1eb44332009-09-09 15:08:12 +00001489 ExplodedNode *Last = 0, *First = 0;
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001490 NodeBackMap *BM = new NodeBackMap();
Ted Kremenek938332c2009-05-16 01:11:58 +00001491 unsigned NodeIndex = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001492
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001493 for ( const ExplodedNode *N = Root ;;) {
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001494 // Lookup the number associated with the current node.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001495 llvm::DenseMap<const void*,unsigned>::iterator I = Visited.find(N);
Ted Kremenek938332c2009-05-16 01:11:58 +00001496 assert(I != Visited.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001497
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001498 // Create the equivalent node in the new graph with the same state
1499 // and location.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001500 ExplodedNode *NewN = GNew->getNode(N->getLocation(), N->getState());
Mike Stump1eb44332009-09-09 15:08:12 +00001501
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001502 // Store the mapping to the original node.
1503 llvm::DenseMap<const void*, const void*>::iterator IMitr=InverseMap.find(N);
1504 assert(IMitr != InverseMap.end() && "No mapping to original node.");
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001505 (*BM)[NewN] = (const ExplodedNode*) IMitr->second;
Mike Stump1eb44332009-09-09 15:08:12 +00001506
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001507 // Link up the new node with the previous node.
1508 if (Last)
Ted Kremenek5fe4d9d2009-10-07 00:42:52 +00001509 NewN->addPredecessor(Last, *GNew);
Mike Stump1eb44332009-09-09 15:08:12 +00001510
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001511 Last = NewN;
Mike Stump1eb44332009-09-09 15:08:12 +00001512
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001513 // Are we at the final node?
Ted Kremenek938332c2009-05-16 01:11:58 +00001514 IndexMapTy::iterator IMI =
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001515 IndexMap.find((const ExplodedNode*)(IMitr->second));
Ted Kremenek938332c2009-05-16 01:11:58 +00001516 if (IMI != IndexMap.end()) {
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001517 First = NewN;
Ted Kremenek938332c2009-05-16 01:11:58 +00001518 NodeIndex = IMI->second;
Ted Kremenekc1da4412008-06-17 19:14:06 +00001519 break;
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001520 }
Mike Stump1eb44332009-09-09 15:08:12 +00001521
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001522 // Find the next successor node. We choose the node that is marked
1523 // with the lowest DFS number.
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001524 ExplodedNode::const_succ_iterator SI = N->succ_begin();
1525 ExplodedNode::const_succ_iterator SE = N->succ_end();
Ted Kremenekc1da4412008-06-17 19:14:06 +00001526 N = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001527
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001528 for (unsigned MinVal = 0; SI != SE; ++SI) {
Mike Stump1eb44332009-09-09 15:08:12 +00001529
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001530 I = Visited.find(*SI);
Mike Stump1eb44332009-09-09 15:08:12 +00001531
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001532 if (I == Visited.end())
1533 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001534
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001535 if (!N || I->second < MinVal) {
1536 N = *SI;
1537 MinVal = I->second;
Ted Kremenekc1da4412008-06-17 19:14:06 +00001538 }
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001539 }
Mike Stump1eb44332009-09-09 15:08:12 +00001540
Ted Kremenek938332c2009-05-16 01:11:58 +00001541 assert(N);
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001542 }
Mike Stump1eb44332009-09-09 15:08:12 +00001543
Ted Kremenek938332c2009-05-16 01:11:58 +00001544 assert(First);
1545
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001546 return std::make_pair(std::make_pair(GNew, BM),
1547 std::make_pair(First, NodeIndex));
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001548}
1549
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001550/// CompactPathDiagnostic - This function postprocesses a PathDiagnostic object
1551/// and collapses PathDiagosticPieces that are expanded by macros.
1552static void CompactPathDiagnostic(PathDiagnostic &PD, const SourceManager& SM) {
Ted Kremenek802e0242012-02-08 04:32:34 +00001553 typedef std::vector<std::pair<llvm::IntrusiveRefCntPtr<PathDiagnosticMacroPiece>, SourceLocation> >
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001554 MacroStackTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001555
Ted Kremenek802e0242012-02-08 04:32:34 +00001556 typedef std::vector<llvm::IntrusiveRefCntPtr<PathDiagnosticPiece> >
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001557 PiecesTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001558
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001559 MacroStackTy MacroStack;
1560 PiecesTy Pieces;
Mike Stump1eb44332009-09-09 15:08:12 +00001561
Ted Kremenek802e0242012-02-08 04:32:34 +00001562 for (PathPieces::iterator I = PD.path.begin(), E = PD.path.end(); I!=E; ++I) {
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001563 // Get the location of the PathDiagnosticPiece.
Ted Kremenek802e0242012-02-08 04:32:34 +00001564 const FullSourceLoc Loc = (*I)->getLocation().asLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001565
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001566 // Determine the instantiation location, which is the location we group
1567 // related PathDiagnosticPieces.
Mike Stump1eb44332009-09-09 15:08:12 +00001568 SourceLocation InstantiationLoc = Loc.isMacroID() ?
Chandler Carruth40278532011-07-25 16:49:02 +00001569 SM.getExpansionLoc(Loc) :
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001570 SourceLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001571
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001572 if (Loc.isFileID()) {
1573 MacroStack.clear();
Ted Kremenek802e0242012-02-08 04:32:34 +00001574 Pieces.push_back(*I);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001575 continue;
1576 }
1577
1578 assert(Loc.isMacroID());
Mike Stump1eb44332009-09-09 15:08:12 +00001579
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001580 // Is the PathDiagnosticPiece within the same macro group?
1581 if (!MacroStack.empty() && InstantiationLoc == MacroStack.back().second) {
Ted Kremenek802e0242012-02-08 04:32:34 +00001582 MacroStack.back().first->subPieces.push_back(*I);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001583 continue;
1584 }
1585
1586 // We aren't in the same group. Are we descending into a new macro
1587 // or are part of an old one?
Ted Kremenek802e0242012-02-08 04:32:34 +00001588 llvm::IntrusiveRefCntPtr<PathDiagnosticMacroPiece> MacroGroup;
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001589
1590 SourceLocation ParentInstantiationLoc = InstantiationLoc.isMacroID() ?
Chandler Carruth40278532011-07-25 16:49:02 +00001591 SM.getExpansionLoc(Loc) :
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001592 SourceLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001593
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001594 // Walk the entire macro stack.
1595 while (!MacroStack.empty()) {
1596 if (InstantiationLoc == MacroStack.back().second) {
1597 MacroGroup = MacroStack.back().first;
1598 break;
1599 }
Mike Stump1eb44332009-09-09 15:08:12 +00001600
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001601 if (ParentInstantiationLoc == MacroStack.back().second) {
1602 MacroGroup = MacroStack.back().first;
1603 break;
1604 }
Mike Stump1eb44332009-09-09 15:08:12 +00001605
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001606 MacroStack.pop_back();
1607 }
Mike Stump1eb44332009-09-09 15:08:12 +00001608
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001609 if (!MacroGroup || ParentInstantiationLoc == MacroStack.back().second) {
1610 // Create a new macro group and add it to the stack.
Anna Zaks590dd8e2011-09-20 21:38:35 +00001611 PathDiagnosticMacroPiece *NewGroup =
1612 new PathDiagnosticMacroPiece(
Ted Kremenek802e0242012-02-08 04:32:34 +00001613 PathDiagnosticLocation::createSingleLocation((*I)->getLocation()));
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001614
1615 if (MacroGroup)
Ted Kremenek802e0242012-02-08 04:32:34 +00001616 MacroGroup->subPieces.push_back(NewGroup);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001617 else {
1618 assert(InstantiationLoc.isFileID());
1619 Pieces.push_back(NewGroup);
1620 }
Mike Stump1eb44332009-09-09 15:08:12 +00001621
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001622 MacroGroup = NewGroup;
1623 MacroStack.push_back(std::make_pair(MacroGroup, InstantiationLoc));
1624 }
1625
1626 // Finally, add the PathDiagnosticPiece to the group.
Ted Kremenek802e0242012-02-08 04:32:34 +00001627 MacroGroup->subPieces.push_back(*I);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001628 }
Mike Stump1eb44332009-09-09 15:08:12 +00001629
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001630 // Now take the pieces and construct a new PathDiagnostic.
Ted Kremenek802e0242012-02-08 04:32:34 +00001631 PD.path.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001632
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001633 for (PiecesTy::iterator I=Pieces.begin(), E=Pieces.end(); I!=E; ++I) {
1634 if (PathDiagnosticMacroPiece *MP=dyn_cast<PathDiagnosticMacroPiece>(*I))
1635 if (!MP->containsEvent()) {
1636 delete MP;
1637 continue;
1638 }
Mike Stump1eb44332009-09-09 15:08:12 +00001639
Ted Kremenek802e0242012-02-08 04:32:34 +00001640 PD.path.push_back(*I);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001641 }
1642}
1643
Ted Kremenek7dc86642009-03-31 20:22:36 +00001644void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001645 SmallVectorImpl<BugReport *> &bugReports) {
Mike Stump1eb44332009-09-09 15:08:12 +00001646
Ted Kremenek40406fe2010-12-03 06:52:30 +00001647 assert(!bugReports.empty());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001648 SmallVector<const ExplodedNode *, 10> errorNodes;
1649 for (SmallVectorImpl<BugReport*>::iterator I = bugReports.begin(),
Ted Kremenek40406fe2010-12-03 06:52:30 +00001650 E = bugReports.end(); I != E; ++I) {
1651 errorNodes.push_back((*I)->getErrorNode());
1652 }
Mike Stump1eb44332009-09-09 15:08:12 +00001653
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001654 // Construct a new graph that contains only a single path from the error
Mike Stump1eb44332009-09-09 15:08:12 +00001655 // node to a root.
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001656 const std::pair<std::pair<ExplodedGraph*, NodeBackMap*>,
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001657 std::pair<ExplodedNode*, unsigned> >&
Ted Kremenek40406fe2010-12-03 06:52:30 +00001658 GPair = MakeReportGraph(&getGraph(), errorNodes);
Mike Stump1eb44332009-09-09 15:08:12 +00001659
Ted Kremenekcf118d42009-02-04 23:49:09 +00001660 // Find the BugReport with the original location.
Ted Kremenek40406fe2010-12-03 06:52:30 +00001661 assert(GPair.second.second < bugReports.size());
1662 BugReport *R = bugReports[GPair.second.second];
Ted Kremenekcf118d42009-02-04 23:49:09 +00001663 assert(R && "No original report found for sliced graph.");
Mike Stump1eb44332009-09-09 15:08:12 +00001664
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00001665 OwningPtr<ExplodedGraph> ReportGraph(GPair.first.first);
1666 OwningPtr<NodeBackMap> BackMap(GPair.first.second);
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001667 const ExplodedNode *N = GPair.second.first;
Mike Stump1eb44332009-09-09 15:08:12 +00001668
1669 // Start building the path diagnostic...
David Blaikieef3643f2011-09-26 00:51:36 +00001670 PathDiagnosticBuilder PDB(*this, R, BackMap.get(),
1671 getPathDiagnosticConsumer());
Mike Stump1eb44332009-09-09 15:08:12 +00001672
Anna Zaks8e6431a2011-08-18 22:37:56 +00001673 // Register additional node visitors.
Anna Zaks50bbc162011-08-19 22:33:38 +00001674 R->addVisitor(new NilReceiverBRVisitor());
1675 R->addVisitor(new ConditionBRVisitor());
Ted Kremenek0cf3d472012-02-07 00:24:33 +00001676
1677 // If inlining is turning out, emit diagnostics for CallEnter and
1678 // CallExit at the top level.
1679 bool showTopLevel = Eng.getAnalysisManager().shouldInlineCall();
1680 R->addVisitor(new CallEnterExitBRVisitor(showTopLevel));
Mike Stump1eb44332009-09-09 15:08:12 +00001681
Anna Zaks23f395e2011-08-20 01:27:22 +00001682 // Generate the very last diagnostic piece - the piece is visible before
1683 // the trace is expanded.
1684 PathDiagnosticPiece *LastPiece = 0;
1685 for (BugReport::visitor_iterator I = R->visitor_begin(),
1686 E = R->visitor_end(); I!=E; ++I) {
1687 if (PathDiagnosticPiece *Piece = (*I)->getEndPath(PDB, N, *R)) {
1688 assert (!LastPiece &&
1689 "There can only be one final piece in a diagnostic.");
1690 LastPiece = Piece;
1691 }
1692 }
1693 if (!LastPiece)
1694 LastPiece = BugReporterVisitor::getDefaultEndPath(PDB, N, *R);
1695 if (LastPiece)
Ted Kremenek802e0242012-02-08 04:32:34 +00001696 PD.path.push_back(LastPiece);
Anna Zaks23f395e2011-08-20 01:27:22 +00001697 else
1698 return;
1699
Ted Kremenek7dc86642009-03-31 20:22:36 +00001700 switch (PDB.getGenerationScheme()) {
David Blaikieef3643f2011-09-26 00:51:36 +00001701 case PathDiagnosticConsumer::Extensive:
Ted Kremenek8966bc12009-05-06 21:39:49 +00001702 GenerateExtensivePathDiagnostic(PD, PDB, N);
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +00001703 break;
David Blaikieef3643f2011-09-26 00:51:36 +00001704 case PathDiagnosticConsumer::Minimal:
Ted Kremenek7dc86642009-03-31 20:22:36 +00001705 GenerateMinimalPathDiagnostic(PD, PDB, N);
1706 break;
1707 }
Ted Kremenek7dc86642009-03-31 20:22:36 +00001708}
1709
Ted Kremenekcf118d42009-02-04 23:49:09 +00001710void BugReporter::Register(BugType *BT) {
Ted Kremenek3baf6722010-11-24 00:54:37 +00001711 BugTypes = F.add(BugTypes, BT);
Ted Kremenek76d90c82008-05-16 18:33:14 +00001712}
1713
Mike Stump1eb44332009-09-09 15:08:12 +00001714void BugReporter::EmitReport(BugReport* R) {
Ted Kremenekcf118d42009-02-04 23:49:09 +00001715 // Compute the bug report's hash to determine its equivalence class.
1716 llvm::FoldingSetNodeID ID;
1717 R->Profile(ID);
Mike Stump1eb44332009-09-09 15:08:12 +00001718
1719 // Lookup the equivance class. If there isn't one, create it.
Ted Kremenekcf118d42009-02-04 23:49:09 +00001720 BugType& BT = R->getBugType();
1721 Register(&BT);
1722 void *InsertPos;
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001723 BugReportEquivClass* EQ = EQClasses.FindNodeOrInsertPos(ID, InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001724
Ted Kremenekcf118d42009-02-04 23:49:09 +00001725 if (!EQ) {
1726 EQ = new BugReportEquivClass(R);
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001727 EQClasses.InsertNode(EQ, InsertPos);
Anna Zaks3b030a22011-08-19 01:57:09 +00001728 EQClassesVector.push_back(EQ);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001729 }
1730 else
1731 EQ->AddReport(R);
Ted Kremenek61f3e052008-04-03 04:42:52 +00001732}
1733
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001734
1735//===----------------------------------------------------------------------===//
1736// Emitting reports in equivalence classes.
1737//===----------------------------------------------------------------------===//
1738
1739namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +00001740struct FRIEC_WLItem {
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001741 const ExplodedNode *N;
1742 ExplodedNode::const_succ_iterator I, E;
1743
1744 FRIEC_WLItem(const ExplodedNode *n)
1745 : N(n), I(N->succ_begin()), E(N->succ_end()) {}
1746};
1747}
1748
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001749static BugReport *
1750FindReportInEquivalenceClass(BugReportEquivClass& EQ,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001751 SmallVectorImpl<BugReport*> &bugReports) {
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001752
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001753 BugReportEquivClass::iterator I = EQ.begin(), E = EQ.end();
1754 assert(I != E);
1755 BugReport *R = *I;
1756 BugType& BT = R->getBugType();
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001757
Ted Kremenek40406fe2010-12-03 06:52:30 +00001758 // If we don't need to suppress any of the nodes because they are
1759 // post-dominated by a sink, simply add all the nodes in the equivalence class
1760 // to 'Nodes'. Any of the reports will serve as a "representative" report.
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001761 if (!BT.isSuppressOnSink()) {
1762 for (BugReportEquivClass::iterator I=EQ.begin(), E=EQ.end(); I!=E; ++I) {
Ted Kremenek9c378f72011-08-12 23:37:29 +00001763 const ExplodedNode *N = I->getErrorNode();
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001764 if (N) {
1765 R = *I;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001766 bugReports.push_back(R);
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001767 }
1768 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001769 return R;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001770 }
1771
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001772 // For bug reports that should be suppressed when all paths are post-dominated
1773 // by a sink node, iterate through the reports in the equivalence class
1774 // until we find one that isn't post-dominated (if one exists). We use a
1775 // DFS traversal of the ExplodedGraph to find a non-sink node. We could write
1776 // this as a recursive function, but we don't want to risk blowing out the
1777 // stack for very long paths.
Ted Kremenek40406fe2010-12-03 06:52:30 +00001778 BugReport *exampleReport = 0;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001779
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001780 for (; I != E; ++I) {
1781 R = *I;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001782 const ExplodedNode *errorNode = R->getErrorNode();
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001783
Ted Kremenek40406fe2010-12-03 06:52:30 +00001784 if (!errorNode)
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001785 continue;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001786 if (errorNode->isSink()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001787 llvm_unreachable(
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001788 "BugType::isSuppressSink() should not be 'true' for sink end nodes");
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001789 }
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001790 // No successors? By definition this nodes isn't post-dominated by a sink.
Ted Kremenek40406fe2010-12-03 06:52:30 +00001791 if (errorNode->succ_empty()) {
1792 bugReports.push_back(R);
1793 if (!exampleReport)
1794 exampleReport = R;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001795 continue;
1796 }
1797
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001798 // At this point we know that 'N' is not a sink and it has at least one
1799 // successor. Use a DFS worklist to find a non-sink end-of-path node.
1800 typedef FRIEC_WLItem WLItem;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001801 typedef SmallVector<WLItem, 10> DFSWorkList;
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001802 llvm::DenseMap<const ExplodedNode *, unsigned> Visited;
1803
1804 DFSWorkList WL;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001805 WL.push_back(errorNode);
1806 Visited[errorNode] = 1;
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001807
1808 while (!WL.empty()) {
1809 WLItem &WI = WL.back();
1810 assert(!WI.N->succ_empty());
1811
1812 for (; WI.I != WI.E; ++WI.I) {
1813 const ExplodedNode *Succ = *WI.I;
1814 // End-of-path node?
1815 if (Succ->succ_empty()) {
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001816 // If we found an end-of-path node that is not a sink.
1817 if (!Succ->isSink()) {
Ted Kremenek40406fe2010-12-03 06:52:30 +00001818 bugReports.push_back(R);
1819 if (!exampleReport)
1820 exampleReport = R;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001821 WL.clear();
1822 break;
1823 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001824 // Found a sink? Continue on to the next successor.
1825 continue;
1826 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001827 // Mark the successor as visited. If it hasn't been explored,
1828 // enqueue it to the DFS worklist.
1829 unsigned &mark = Visited[Succ];
1830 if (!mark) {
1831 mark = 1;
1832 WL.push_back(Succ);
1833 break;
1834 }
1835 }
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001836
1837 // The worklist may have been cleared at this point. First
1838 // check if it is empty before checking the last item.
1839 if (!WL.empty() && &WL.back() == &WI)
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001840 WL.pop_back();
1841 }
1842 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001843
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001844 // ExampleReport will be NULL if all the nodes in the equivalence class
1845 // were post-dominated by sinks.
Ted Kremenek40406fe2010-12-03 06:52:30 +00001846 return exampleReport;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001847}
Ted Kremeneke0a58072009-09-18 22:37:37 +00001848
1849//===----------------------------------------------------------------------===//
1850// DiagnosticCache. This is a hack to cache analyzer diagnostics. It
1851// uses global state, which eventually should go elsewhere.
1852//===----------------------------------------------------------------------===//
1853namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +00001854class DiagCacheItem : public llvm::FoldingSetNode {
Ted Kremeneke0a58072009-09-18 22:37:37 +00001855 llvm::FoldingSetNodeID ID;
1856public:
1857 DiagCacheItem(BugReport *R, PathDiagnostic *PD) {
Anna Zaks4522e2a2011-09-19 23:44:31 +00001858 R->Profile(ID);
1859 PD->Profile(ID);
Ted Kremeneke0a58072009-09-18 22:37:37 +00001860 }
1861
1862 void Profile(llvm::FoldingSetNodeID &id) {
1863 id = ID;
1864 }
1865
1866 llvm::FoldingSetNodeID &getID() { return ID; }
1867};
1868}
1869
1870static bool IsCachedDiagnostic(BugReport *R, PathDiagnostic *PD) {
1871 // FIXME: Eventually this diagnostic cache should reside in something
1872 // like AnalysisManager instead of being a static variable. This is
1873 // really unsafe in the long term.
1874 typedef llvm::FoldingSet<DiagCacheItem> DiagnosticCache;
1875 static DiagnosticCache DC;
1876
1877 void *InsertPos;
1878 DiagCacheItem *Item = new DiagCacheItem(R, PD);
1879
1880 if (DC.FindNodeOrInsertPos(Item->getID(), InsertPos)) {
1881 delete Item;
1882 return true;
1883 }
1884
1885 DC.InsertNode(Item, InsertPos);
1886 return false;
1887}
1888
Ted Kremenekcf118d42009-02-04 23:49:09 +00001889void BugReporter::FlushReport(BugReportEquivClass& EQ) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001890 SmallVector<BugReport*, 10> bugReports;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001891 BugReport *exampleReport = FindReportInEquivalenceClass(EQ, bugReports);
1892 if (!exampleReport)
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001893 return;
1894
David Blaikieef3643f2011-09-26 00:51:36 +00001895 PathDiagnosticConsumer* PD = getPathDiagnosticConsumer();
Mike Stump1eb44332009-09-09 15:08:12 +00001896
Ted Kremenekcf118d42009-02-04 23:49:09 +00001897 // FIXME: Make sure we use the 'R' for the path that was actually used.
Mike Stump1eb44332009-09-09 15:08:12 +00001898 // Probably doesn't make a difference in practice.
Ted Kremenek40406fe2010-12-03 06:52:30 +00001899 BugType& BT = exampleReport->getBugType();
Mike Stump1eb44332009-09-09 15:08:12 +00001900
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00001901 OwningPtr<PathDiagnostic>
Ted Kremenek40406fe2010-12-03 06:52:30 +00001902 D(new PathDiagnostic(exampleReport->getBugType().getName(),
Ted Kremenekda0e8422009-04-29 22:05:03 +00001903 !PD || PD->useVerboseDescription()
Ted Kremenek40406fe2010-12-03 06:52:30 +00001904 ? exampleReport->getDescription()
1905 : exampleReport->getShortDescription(),
Ted Kremenekd49967f2009-04-29 21:58:13 +00001906 BT.getCategory()));
1907
Ted Kremenek40406fe2010-12-03 06:52:30 +00001908 if (!bugReports.empty())
1909 GeneratePathDiagnostic(*D.get(), bugReports);
Mike Stump1eb44332009-09-09 15:08:12 +00001910
Ted Kremenek40406fe2010-12-03 06:52:30 +00001911 if (IsCachedDiagnostic(exampleReport, D.get()))
Ted Kremeneke0a58072009-09-18 22:37:37 +00001912 return;
1913
Ted Kremenek072192b2008-04-30 23:47:44 +00001914 // Get the meta data.
Anna Zaks7f2531c2011-08-22 20:31:28 +00001915 const BugReport::ExtraTextList &Meta =
1916 exampleReport->getExtraText();
1917 for (BugReport::ExtraTextList::const_iterator i = Meta.begin(),
1918 e = Meta.end(); i != e; ++i) {
1919 D->addMeta(*i);
1920 }
Ted Kremenek75840e12008-04-18 01:56:37 +00001921
Ted Kremenek3148eb42009-01-24 00:55:43 +00001922 // Emit a summary diagnostic to the regular Diagnostics engine.
Argyrios Kyrtzidis640ccf02010-12-04 01:12:15 +00001923 BugReport::ranges_iterator Beg, End;
1924 llvm::tie(Beg, End) = exampleReport->getRanges();
David Blaikied6471f72011-09-25 23:23:43 +00001925 DiagnosticsEngine &Diag = getDiagnostic();
Ted Kremenekc213b482010-01-15 07:56:51 +00001926
1927 // Search the description for '%', as that will be interpretted as a
1928 // format character by FormatDiagnostics.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001929 StringRef desc = exampleReport->getShortDescription();
Ted Kremenekc213b482010-01-15 07:56:51 +00001930 unsigned ErrorDiag;
1931 {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001932 SmallString<512> TmpStr;
Ted Kremenekc213b482010-01-15 07:56:51 +00001933 llvm::raw_svector_ostream Out(TmpStr);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001934 for (StringRef::iterator I=desc.begin(), E=desc.end(); I!=E; ++I)
Ted Kremenekc213b482010-01-15 07:56:51 +00001935 if (*I == '%')
1936 Out << "%%";
1937 else
1938 Out << *I;
1939
1940 Out.flush();
David Blaikied6471f72011-09-25 23:23:43 +00001941 ErrorDiag = Diag.getCustomDiagID(DiagnosticsEngine::Warning, TmpStr);
Ted Kremenekc213b482010-01-15 07:56:51 +00001942 }
Ted Kremenek57202072008-07-14 17:40:50 +00001943
Argyrios Kyrtzidisb6b7e7b2010-12-03 00:58:10 +00001944 {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001945 DiagnosticBuilder diagBuilder = Diag.Report(
1946 exampleReport->getLocation(getSourceManager()).asLocation(), ErrorDiag);
Argyrios Kyrtzidis640ccf02010-12-04 01:12:15 +00001947 for (BugReport::ranges_iterator I = Beg; I != End; ++I)
Argyrios Kyrtzidisb6b7e7b2010-12-03 00:58:10 +00001948 diagBuilder << *I;
Ted Kremenek2f0e89e2008-04-18 22:56:53 +00001949 }
Ted Kremenek3148eb42009-01-24 00:55:43 +00001950
David Blaikieef3643f2011-09-26 00:51:36 +00001951 // Emit a full diagnostic for the path if we have a PathDiagnosticConsumer.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001952 if (!PD)
1953 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001954
Ted Kremenek802e0242012-02-08 04:32:34 +00001955 if (D->path.empty()) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001956 PathDiagnosticPiece *piece = new PathDiagnosticEventPiece(
1957 exampleReport->getLocation(getSourceManager()),
1958 exampleReport->getDescription());
Ted Kremenek1fbfd5b2009-03-06 23:58:11 +00001959
Ted Kremenek3148eb42009-01-24 00:55:43 +00001960 for ( ; Beg != End; ++Beg) piece->addRange(*Beg);
Ted Kremenek802e0242012-02-08 04:32:34 +00001961 D->path.push_back(piece);
Ted Kremenek3148eb42009-01-24 00:55:43 +00001962 }
Mike Stump1eb44332009-09-09 15:08:12 +00001963
Ted Kremenek3148eb42009-01-24 00:55:43 +00001964 PD->HandlePathDiagnostic(D.take());
Ted Kremenek61f3e052008-04-03 04:42:52 +00001965}
Ted Kremenek57202072008-07-14 17:40:50 +00001966
Chris Lattner5f9e2722011-07-23 10:55:15 +00001967void BugReporter::EmitBasicReport(StringRef name, StringRef str,
Anna Zaks590dd8e2011-09-20 21:38:35 +00001968 PathDiagnosticLocation Loc,
Ted Kremenek8c036c72008-09-20 04:23:38 +00001969 SourceRange* RBeg, unsigned NumRanges) {
1970 EmitBasicReport(name, "", str, Loc, RBeg, NumRanges);
1971}
Ted Kremenekcf118d42009-02-04 23:49:09 +00001972
Chris Lattner5f9e2722011-07-23 10:55:15 +00001973void BugReporter::EmitBasicReport(StringRef name,
1974 StringRef category,
Anna Zaks590dd8e2011-09-20 21:38:35 +00001975 StringRef str, PathDiagnosticLocation Loc,
Ted Kremenek8c036c72008-09-20 04:23:38 +00001976 SourceRange* RBeg, unsigned NumRanges) {
Mike Stump1eb44332009-09-09 15:08:12 +00001977
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001978 // 'BT' is owned by BugReporter.
1979 BugType *BT = getBugTypeForName(name, category);
Anna Zaks590dd8e2011-09-20 21:38:35 +00001980 BugReport *R = new BugReport(*BT, str, Loc);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001981 for ( ; NumRanges > 0 ; --NumRanges, ++RBeg) R->addRange(*RBeg);
1982 EmitReport(R);
Ted Kremenek57202072008-07-14 17:40:50 +00001983}
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001984
Chris Lattner5f9e2722011-07-23 10:55:15 +00001985BugType *BugReporter::getBugTypeForName(StringRef name,
1986 StringRef category) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001987 SmallString<136> fullDesc;
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001988 llvm::raw_svector_ostream(fullDesc) << name << ":" << category;
1989 llvm::StringMapEntry<BugType *> &
1990 entry = StrBugTypes.GetOrCreateValue(fullDesc);
1991 BugType *BT = entry.getValue();
1992 if (!BT) {
1993 BT = new BugType(name, category);
1994 entry.setValue(BT);
1995 }
1996 return BT;
1997}