blob: c774818edf2feba732b780fc54ebf4cb6cdfd185 [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 Kremenekc89f4b02012-02-28 23:06:21 +0000114// Diagnostic cleanup.
115//===----------------------------------------------------------------------===//
116
117/// Recursively scan through a path and prune out calls and macros pieces
118/// that aren't needed. Return true if afterwards the path contains
119/// "interesting stuff" which means it should be pruned from the parent path.
120static bool RemoveUneededCalls(PathPieces &pieces) {
121 bool containsSomethingInteresting = false;
122 const unsigned N = pieces.size();
123
124 for (unsigned i = 0 ; i < N ; ++i) {
125 // Remove the front piece from the path. If it is still something we
126 // want to keep once we are done, we will push it back on the end.
127 IntrusiveRefCntPtr<PathDiagnosticPiece> piece(pieces.front());
128 pieces.pop_front();
129
Ted Kremenek72516742012-03-01 00:05:06 +0000130 switch (piece->getKind()) {
131 case PathDiagnosticPiece::Call: {
132 PathDiagnosticCallPiece *call = cast<PathDiagnosticCallPiece>(piece);
133 // Recursively clean out the subclass. Keep this call around if
134 // it contains any informative diagnostics.
135 if (!RemoveUneededCalls(call->path))
136 continue;
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000137 containsSomethingInteresting = true;
Ted Kremenek72516742012-03-01 00:05:06 +0000138 break;
139 }
140 case PathDiagnosticPiece::Macro: {
141 PathDiagnosticMacroPiece *macro = cast<PathDiagnosticMacroPiece>(piece);
142 if (!RemoveUneededCalls(macro->subPieces))
143 continue;
144 containsSomethingInteresting = true;
145 break;
146 }
147 case PathDiagnosticPiece::Event: {
148 PathDiagnosticEventPiece *event = cast<PathDiagnosticEventPiece>(piece);
149 // We never throw away an event, but we do throw it away wholesale
150 // as part of a path if we throw the entire path away.
Ted Kremenek76aadc32012-03-09 01:13:14 +0000151 if (event->isPrunable())
152 continue;
153 containsSomethingInteresting = true;
Ted Kremenek72516742012-03-01 00:05:06 +0000154 break;
155 }
156 case PathDiagnosticPiece::ControlFlow:
157 break;
Ted Kremenekc89f4b02012-02-28 23:06:21 +0000158 }
159
160 pieces.push_back(piece);
161 }
162
163 return containsSomethingInteresting;
164}
165
166//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +0000167// PathDiagnosticBuilder and its associated routines and helper objects.
Ted Kremenekb697b102009-02-23 22:44:26 +0000168//===----------------------------------------------------------------------===//
Ted Kremenekb479dad2009-02-23 23:13:51 +0000169
Zhongxing Xuc5619d92009-08-06 01:32:16 +0000170typedef llvm::DenseMap<const ExplodedNode*,
171const ExplodedNode*> NodeBackMap;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000172
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000173namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000174class NodeMapClosure : public BugReport::NodeResolver {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000175 NodeBackMap& M;
176public:
177 NodeMapClosure(NodeBackMap *m) : M(*m) {}
178 ~NodeMapClosure() {}
Mike Stump1eb44332009-09-09 15:08:12 +0000179
Ted Kremenek9c378f72011-08-12 23:37:29 +0000180 const ExplodedNode *getOriginalNode(const ExplodedNode *N) {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000181 NodeBackMap::iterator I = M.find(N);
182 return I == M.end() ? 0 : I->second;
183 }
184};
Mike Stump1eb44332009-09-09 15:08:12 +0000185
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000186class PathDiagnosticBuilder : public BugReporterContext {
Ted Kremenek7dc86642009-03-31 20:22:36 +0000187 BugReport *R;
David Blaikieef3643f2011-09-26 00:51:36 +0000188 PathDiagnosticConsumer *PDC;
Dylan Noblesmith6f42b622012-02-05 02:12:40 +0000189 OwningPtr<ParentMap> PM;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000190 NodeMapClosure NMC;
Mike Stump1eb44332009-09-09 15:08:12 +0000191public:
Ted Kremenek59950d32012-02-24 07:12:52 +0000192 const LocationContext *LC;
193
Ted Kremenek8966bc12009-05-06 21:39:49 +0000194 PathDiagnosticBuilder(GRBugReporter &br,
Mike Stump1eb44332009-09-09 15:08:12 +0000195 BugReport *r, NodeBackMap *Backmap,
David Blaikieef3643f2011-09-26 00:51:36 +0000196 PathDiagnosticConsumer *pdc)
Ted Kremenek8966bc12009-05-06 21:39:49 +0000197 : BugReporterContext(br),
Ted Kremenek59950d32012-02-24 07:12:52 +0000198 R(r), PDC(pdc), NMC(Backmap), LC(r->getErrorNode()->getLocationContext())
199 {}
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Ted Kremenek9c378f72011-08-12 23:37:29 +0000201 PathDiagnosticLocation ExecutionContinues(const ExplodedNode *N);
Mike Stump1eb44332009-09-09 15:08:12 +0000202
Ted Kremenek9c378f72011-08-12 23:37:29 +0000203 PathDiagnosticLocation ExecutionContinues(llvm::raw_string_ostream &os,
204 const ExplodedNode *N);
Mike Stump1eb44332009-09-09 15:08:12 +0000205
Anna Zaks8e6431a2011-08-18 22:37:56 +0000206 BugReport *getBugReport() { return R; }
207
Tom Care212f6d32010-09-16 03:50:38 +0000208 Decl const &getCodeDecl() { return R->getErrorNode()->getCodeDecl(); }
Ted Kremenek59950d32012-02-24 07:12:52 +0000209
210 ParentMap& getParentMap() { return LC->getParentMap(); }
Mike Stump1eb44332009-09-09 15:08:12 +0000211
Ted Kremenekc3f83ad2009-04-01 17:18:21 +0000212 const Stmt *getParent(const Stmt *S) {
213 return getParentMap().getParent(S);
214 }
Mike Stump1eb44332009-09-09 15:08:12 +0000215
Ted Kremenek8966bc12009-05-06 21:39:49 +0000216 virtual NodeMapClosure& getNodeResolver() { return NMC; }
Douglas Gregor72971342009-04-18 00:02:19 +0000217
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000218 PathDiagnosticLocation getEnclosingStmtLocation(const Stmt *S);
Mike Stump1eb44332009-09-09 15:08:12 +0000219
David Blaikieef3643f2011-09-26 00:51:36 +0000220 PathDiagnosticConsumer::PathGenerationScheme getGenerationScheme() const {
221 return PDC ? PDC->getGenerationScheme() : PathDiagnosticConsumer::Extensive;
Ted Kremenek7dc86642009-03-31 20:22:36 +0000222 }
223
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000224 bool supportsLogicalOpControlFlow() const {
225 return PDC ? PDC->supportsLogicalOpControlFlow() : true;
Mike Stump1eb44332009-09-09 15:08:12 +0000226 }
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000227};
228} // end anonymous namespace
229
Ted Kremenek00605e02009-03-27 20:55:39 +0000230PathDiagnosticLocation
Ted Kremenek9c378f72011-08-12 23:37:29 +0000231PathDiagnosticBuilder::ExecutionContinues(const ExplodedNode *N) {
Ted Kremenek5f85e172009-07-22 22:35:28 +0000232 if (const Stmt *S = GetNextStmt(N))
Ted Kremenek59950d32012-02-24 07:12:52 +0000233 return PathDiagnosticLocation(S, getSourceManager(), LC);
Ted Kremenek00605e02009-03-27 20:55:39 +0000234
Anna Zaks0cd59482011-09-16 19:18:30 +0000235 return PathDiagnosticLocation::createDeclEnd(N->getLocationContext(),
236 getSourceManager());
Ted Kremenek082cb8d2009-03-12 18:41:53 +0000237}
Mike Stump1eb44332009-09-09 15:08:12 +0000238
Ted Kremenek00605e02009-03-27 20:55:39 +0000239PathDiagnosticLocation
Ted Kremenek9c378f72011-08-12 23:37:29 +0000240PathDiagnosticBuilder::ExecutionContinues(llvm::raw_string_ostream &os,
241 const ExplodedNode *N) {
Ted Kremenekbabdd7b2009-03-27 05:06:10 +0000242
Ted Kremenek143ca222008-05-06 18:11:09 +0000243 // Slow, but probably doesn't matter.
Ted Kremenekb697b102009-02-23 22:44:26 +0000244 if (os.str().empty())
245 os << ' ';
Mike Stump1eb44332009-09-09 15:08:12 +0000246
Ted Kremenek00605e02009-03-27 20:55:39 +0000247 const PathDiagnosticLocation &Loc = ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000248
Ted Kremenek00605e02009-03-27 20:55:39 +0000249 if (Loc.asStmt())
Ted Kremenekb697b102009-02-23 22:44:26 +0000250 os << "Execution continues on line "
Chandler Carruth64211622011-07-25 21:09:52 +0000251 << getSourceManager().getExpansionLineNumber(Loc.asLocation())
Ted Kremenek8966bc12009-05-06 21:39:49 +0000252 << '.';
Ted Kremenek4f1db532009-12-04 20:34:31 +0000253 else {
254 os << "Execution jumps to the end of the ";
255 const Decl *D = N->getLocationContext()->getDecl();
256 if (isa<ObjCMethodDecl>(D))
257 os << "method";
258 else if (isa<FunctionDecl>(D))
259 os << "function";
260 else {
261 assert(isa<BlockDecl>(D));
262 os << "anonymous block";
263 }
264 os << '.';
265 }
Mike Stump1eb44332009-09-09 15:08:12 +0000266
Ted Kremenek082cb8d2009-03-12 18:41:53 +0000267 return Loc;
Ted Kremenek143ca222008-05-06 18:11:09 +0000268}
269
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000270static bool IsNested(const Stmt *S, ParentMap &PM) {
271 if (isa<Expr>(S) && PM.isConsumedExpr(cast<Expr>(S)))
272 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000273
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000274 const Stmt *Parent = PM.getParentIgnoreParens(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000275
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000276 if (Parent)
277 switch (Parent->getStmtClass()) {
278 case Stmt::ForStmtClass:
279 case Stmt::DoStmtClass:
280 case Stmt::WhileStmtClass:
281 return true;
282 default:
283 break;
284 }
Mike Stump1eb44332009-09-09 15:08:12 +0000285
286 return false;
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000287}
288
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000289PathDiagnosticLocation
290PathDiagnosticBuilder::getEnclosingStmtLocation(const Stmt *S) {
Ted Kremenek9c378f72011-08-12 23:37:29 +0000291 assert(S && "Null Stmt *passed to getEnclosingStmtLocation");
Mike Stump1eb44332009-09-09 15:08:12 +0000292 ParentMap &P = getParentMap();
Ted Kremenek8966bc12009-05-06 21:39:49 +0000293 SourceManager &SMgr = getSourceManager();
Ted Kremeneke88a1702009-05-11 22:19:32 +0000294
Ted Kremenekddb7bab2009-05-15 01:50:15 +0000295 while (IsNested(S, P)) {
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000296 const Stmt *Parent = P.getParentIgnoreParens(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000297
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000298 if (!Parent)
299 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000300
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000301 switch (Parent->getStmtClass()) {
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000302 case Stmt::BinaryOperatorClass: {
303 const BinaryOperator *B = cast<BinaryOperator>(Parent);
304 if (B->isLogicalOp())
Anna Zaks220ac8c2011-09-15 01:08:34 +0000305 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000306 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000307 }
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000308 case Stmt::CompoundStmtClass:
309 case Stmt::StmtExprClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000310 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000311 case Stmt::ChooseExprClass:
312 // Similar to '?' if we are referring to condition, just have the edge
313 // point to the entire choose expression.
314 if (cast<ChooseExpr>(Parent)->getCond() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000315 return PathDiagnosticLocation(Parent, SMgr, LC);
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000316 else
Anna Zaks220ac8c2011-09-15 01:08:34 +0000317 return PathDiagnosticLocation(S, SMgr, LC);
John McCall56ca35d2011-02-17 10:25:35 +0000318 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000319 case Stmt::ConditionalOperatorClass:
320 // For '?', if we are referring to condition, just have the edge point
321 // to the entire '?' expression.
John McCall56ca35d2011-02-17 10:25:35 +0000322 if (cast<AbstractConditionalOperator>(Parent)->getCond() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000323 return PathDiagnosticLocation(Parent, SMgr, LC);
Ted Kremenek1d9a23a2009-03-28 04:08:14 +0000324 else
Anna Zaks220ac8c2011-09-15 01:08:34 +0000325 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000326 case Stmt::DoStmtClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000327 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000328 case Stmt::ForStmtClass:
329 if (cast<ForStmt>(Parent)->getBody() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000330 return PathDiagnosticLocation(S, SMgr, LC);
Mike Stump1eb44332009-09-09 15:08:12 +0000331 break;
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000332 case Stmt::IfStmtClass:
333 if (cast<IfStmt>(Parent)->getCond() != S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000334 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenek8bd4d032009-04-28 04:23:15 +0000335 break;
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000336 case Stmt::ObjCForCollectionStmtClass:
337 if (cast<ObjCForCollectionStmt>(Parent)->getBody() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000338 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000339 break;
340 case Stmt::WhileStmtClass:
341 if (cast<WhileStmt>(Parent)->getCond() != S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000342 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekaf3e3d52009-03-28 03:37:59 +0000343 break;
344 default:
345 break;
346 }
347
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000348 S = Parent;
349 }
Mike Stump1eb44332009-09-09 15:08:12 +0000350
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000351 assert(S && "Cannot have null Stmt for PathDiagnosticLocation");
Ted Kremeneke88a1702009-05-11 22:19:32 +0000352
353 // Special case: DeclStmts can appear in for statement declarations, in which
354 // case the ForStmt is the context.
355 if (isa<DeclStmt>(S)) {
356 if (const Stmt *Parent = P.getParent(S)) {
357 switch (Parent->getStmtClass()) {
358 case Stmt::ForStmtClass:
359 case Stmt::ObjCForCollectionStmtClass:
Anna Zaks220ac8c2011-09-15 01:08:34 +0000360 return PathDiagnosticLocation(Parent, SMgr, LC);
Ted Kremeneke88a1702009-05-11 22:19:32 +0000361 default:
362 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000363 }
364 }
Ted Kremeneke88a1702009-05-11 22:19:32 +0000365 }
366 else if (isa<BinaryOperator>(S)) {
367 // Special case: the binary operator represents the initialization
368 // code in a for statement (this can happen when the variable being
369 // initialized is an old variable.
370 if (const ForStmt *FS =
371 dyn_cast_or_null<ForStmt>(P.getParentIgnoreParens(S))) {
372 if (FS->getInit() == S)
Anna Zaks220ac8c2011-09-15 01:08:34 +0000373 return PathDiagnosticLocation(FS, SMgr, LC);
Ted Kremeneke88a1702009-05-11 22:19:32 +0000374 }
375 }
376
Anna Zaks220ac8c2011-09-15 01:08:34 +0000377 return PathDiagnosticLocation(S, SMgr, LC);
Ted Kremenekd8c938b2009-03-27 21:16:25 +0000378}
379
Ted Kremenekcf118d42009-02-04 23:49:09 +0000380//===----------------------------------------------------------------------===//
Ted Kremenek31061982009-03-31 23:00:32 +0000381// "Minimal" path diagnostic generation algorithm.
382//===----------------------------------------------------------------------===//
Anna Zaks56a938f2012-03-16 23:24:20 +0000383typedef std::pair<PathDiagnosticCallPiece*, const ExplodedNode*> StackDiagPair;
384typedef SmallVector<StackDiagPair, 6> StackDiagVector;
385
Anna Zaks368a0d52012-03-15 21:13:02 +0000386static void updateStackPiecesWithMessage(PathDiagnosticPiece *P,
Anna Zaks56a938f2012-03-16 23:24:20 +0000387 StackDiagVector &CallStack) {
Anna Zaks368a0d52012-03-15 21:13:02 +0000388 // If the piece contains a special message, add it to all the call
389 // pieces on the active stack.
390 if (PathDiagnosticEventPiece *ep =
391 dyn_cast<PathDiagnosticEventPiece>(P)) {
Anna Zaks368a0d52012-03-15 21:13:02 +0000392
Anna Zaks56a938f2012-03-16 23:24:20 +0000393 if (ep->hasCallStackHint())
394 for (StackDiagVector::iterator I = CallStack.begin(),
395 E = CallStack.end(); I != E; ++I) {
396 PathDiagnosticCallPiece *CP = I->first;
397 const ExplodedNode *N = I->second;
NAKAMURA Takumi8fe45252012-03-17 13:06:05 +0000398 std::string stackMsg = ep->getCallStackMessage(N);
Anna Zaks56a938f2012-03-16 23:24:20 +0000399
Anna Zaks368a0d52012-03-15 21:13:02 +0000400 // The last message on the path to final bug is the most important
401 // one. Since we traverse the path backwards, do not add the message
402 // if one has been previously added.
Anna Zaks56a938f2012-03-16 23:24:20 +0000403 if (!CP->hasCallStackMessage())
404 CP->setCallStackMessage(stackMsg);
405 }
Anna Zaks368a0d52012-03-15 21:13:02 +0000406 }
407}
Ted Kremenek31061982009-03-31 23:00:32 +0000408
Ted Kremenek77d09442012-03-02 01:27:31 +0000409static void CompactPathDiagnostic(PathPieces &path, const SourceManager& SM);
Ted Kremenek14856d72009-04-06 23:06:54 +0000410
Ted Kremenek31061982009-03-31 23:00:32 +0000411static void GenerateMinimalPathDiagnostic(PathDiagnostic& PD,
412 PathDiagnosticBuilder &PDB,
Jordy Rose3bc75ca2012-03-24 03:03:29 +0000413 const ExplodedNode *N,
414 ArrayRef<BugReporterVisitor *> visitors) {
Ted Kremenek8966bc12009-05-06 21:39:49 +0000415
Ted Kremenek31061982009-03-31 23:00:32 +0000416 SourceManager& SMgr = PDB.getSourceManager();
Ted Kremenek59950d32012-02-24 07:12:52 +0000417 const LocationContext *LC = PDB.LC;
Ted Kremenek9c378f72011-08-12 23:37:29 +0000418 const ExplodedNode *NextNode = N->pred_empty()
Ted Kremenek31061982009-03-31 23:00:32 +0000419 ? NULL : *(N->pred_begin());
Anna Zaks368a0d52012-03-15 21:13:02 +0000420
Anna Zaks56a938f2012-03-16 23:24:20 +0000421 StackDiagVector CallStack;
Anna Zaks368a0d52012-03-15 21:13:02 +0000422
Ted Kremenek31061982009-03-31 23:00:32 +0000423 while (NextNode) {
Mike Stump1eb44332009-09-09 15:08:12 +0000424 N = NextNode;
Ted Kremenek59950d32012-02-24 07:12:52 +0000425 PDB.LC = N->getLocationContext();
Ted Kremenek31061982009-03-31 23:00:32 +0000426 NextNode = GetPredecessorNode(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000427
Ted Kremenek31061982009-03-31 23:00:32 +0000428 ProgramPoint P = N->getLocation();
Ted Kremenek2042fc12012-02-24 06:00:00 +0000429
Anna Zaks0b3ade82012-04-20 21:59:08 +0000430 if (const CallExitEnd *CE = dyn_cast<CallExitEnd>(&P)) {
Ted Kremenek2042fc12012-02-24 06:00:00 +0000431 PathDiagnosticCallPiece *C =
432 PathDiagnosticCallPiece::construct(N, *CE, SMgr);
433 PD.getActivePath().push_front(C);
434 PD.pushActivePath(&C->path);
Anna Zaks56a938f2012-03-16 23:24:20 +0000435 CallStack.push_back(StackDiagPair(C, N));
Ted Kremenek2042fc12012-02-24 06:00:00 +0000436 continue;
437 }
438
439 if (const CallEnter *CE = dyn_cast<CallEnter>(&P)) {
440 PD.popActivePath();
441 // The current active path should never be empty. Either we
442 // just added a bunch of stuff to the top-level path, or
Anna Zaks0b3ade82012-04-20 21:59:08 +0000443 // we have a previous CallExitEnd. If the front of the active
Ted Kremenek2042fc12012-02-24 06:00:00 +0000444 // path is not a PathDiagnosticCallPiece, it means that the
445 // path terminated within a function call. We must then take the
446 // current contents of the active path and place it within
447 // a new PathDiagnosticCallPiece.
448 assert(!PD.getActivePath().empty());
449 PathDiagnosticCallPiece *C =
450 dyn_cast<PathDiagnosticCallPiece>(PD.getActivePath().front());
Anna Zaks93739372012-03-14 18:58:28 +0000451 if (!C) {
452 const Decl *Caller = CE->getLocationContext()->getDecl();
453 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
454 }
Ted Kremenek2042fc12012-02-24 06:00:00 +0000455 C->setCallee(*CE, SMgr);
Anna Zaks368a0d52012-03-15 21:13:02 +0000456 if (!CallStack.empty()) {
Anna Zaks56a938f2012-03-16 23:24:20 +0000457 assert(CallStack.back().first == C);
Anna Zaks368a0d52012-03-15 21:13:02 +0000458 CallStack.pop_back();
459 }
Ted Kremenek2042fc12012-02-24 06:00:00 +0000460 continue;
461 }
Mike Stump1eb44332009-09-09 15:08:12 +0000462
Ted Kremenek9c378f72011-08-12 23:37:29 +0000463 if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P)) {
464 const CFGBlock *Src = BE->getSrc();
465 const CFGBlock *Dst = BE->getDst();
466 const Stmt *T = Src->getTerminator();
Mike Stump1eb44332009-09-09 15:08:12 +0000467
Ted Kremenek31061982009-03-31 23:00:32 +0000468 if (!T)
469 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000470
Anna Zaks590dd8e2011-09-20 21:38:35 +0000471 PathDiagnosticLocation Start =
472 PathDiagnosticLocation::createBegin(T, SMgr,
473 N->getLocationContext());
Mike Stump1eb44332009-09-09 15:08:12 +0000474
Ted Kremenek31061982009-03-31 23:00:32 +0000475 switch (T->getStmtClass()) {
476 default:
477 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000478
Ted Kremenek31061982009-03-31 23:00:32 +0000479 case Stmt::GotoStmtClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000480 case Stmt::IndirectGotoStmtClass: {
Ted Kremenek9c378f72011-08-12 23:37:29 +0000481 const Stmt *S = GetNextStmt(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000482
Ted Kremenek31061982009-03-31 23:00:32 +0000483 if (!S)
484 continue;
Mike Stump1eb44332009-09-09 15:08:12 +0000485
Ted Kremenek31061982009-03-31 23:00:32 +0000486 std::string sbuf;
Mike Stump1eb44332009-09-09 15:08:12 +0000487 llvm::raw_string_ostream os(sbuf);
Ted Kremenek31061982009-03-31 23:00:32 +0000488 const PathDiagnosticLocation &End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000489
Ted Kremenek31061982009-03-31 23:00:32 +0000490 os << "Control jumps to line "
Chandler Carruth64211622011-07-25 21:09:52 +0000491 << End.asLocation().getExpansionLineNumber();
Ted Kremenek2042fc12012-02-24 06:00:00 +0000492 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek802e0242012-02-08 04:32:34 +0000493 os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000494 break;
495 }
Mike Stump1eb44332009-09-09 15:08:12 +0000496
497 case Stmt::SwitchStmtClass: {
Ted Kremenek31061982009-03-31 23:00:32 +0000498 // Figure out what case arm we took.
499 std::string sbuf;
500 llvm::raw_string_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000501
Ted Kremenek9c378f72011-08-12 23:37:29 +0000502 if (const Stmt *S = Dst->getLabel()) {
Anna Zaks220ac8c2011-09-15 01:08:34 +0000503 PathDiagnosticLocation End(S, SMgr, LC);
Mike Stump1eb44332009-09-09 15:08:12 +0000504
Ted Kremenek31061982009-03-31 23:00:32 +0000505 switch (S->getStmtClass()) {
506 default:
507 os << "No cases match in the switch statement. "
508 "Control jumps to line "
Chandler Carruth64211622011-07-25 21:09:52 +0000509 << End.asLocation().getExpansionLineNumber();
Ted Kremenek31061982009-03-31 23:00:32 +0000510 break;
511 case Stmt::DefaultStmtClass:
512 os << "Control jumps to the 'default' case at line "
Chandler Carruth64211622011-07-25 21:09:52 +0000513 << End.asLocation().getExpansionLineNumber();
Ted Kremenek31061982009-03-31 23:00:32 +0000514 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000515
Ted Kremenek31061982009-03-31 23:00:32 +0000516 case Stmt::CaseStmtClass: {
Mike Stump1eb44332009-09-09 15:08:12 +0000517 os << "Control jumps to 'case ";
Ted Kremenek9c378f72011-08-12 23:37:29 +0000518 const CaseStmt *Case = cast<CaseStmt>(S);
519 const Expr *LHS = Case->getLHS()->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +0000520
521 // Determine if it is an enum.
Ted Kremenek31061982009-03-31 23:00:32 +0000522 bool GetRawInt = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000523
Ted Kremenek9c378f72011-08-12 23:37:29 +0000524 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(LHS)) {
Ted Kremenek31061982009-03-31 23:00:32 +0000525 // FIXME: Maybe this should be an assertion. Are there cases
526 // were it is not an EnumConstantDecl?
Ted Kremenek9c378f72011-08-12 23:37:29 +0000527 const EnumConstantDecl *D =
Zhongxing Xu03509ae2010-07-20 06:22:24 +0000528 dyn_cast<EnumConstantDecl>(DR->getDecl());
Mike Stump1eb44332009-09-09 15:08:12 +0000529
Ted Kremenek31061982009-03-31 23:00:32 +0000530 if (D) {
531 GetRawInt = false;
Benjamin Kramerb8989f22011-10-14 18:45:37 +0000532 os << *D;
Ted Kremenek31061982009-03-31 23:00:32 +0000533 }
534 }
Eli Friedman9ec64d62009-04-26 19:04:51 +0000535
536 if (GetRawInt)
Richard Smitha6b8b2c2011-10-10 18:28:20 +0000537 os << LHS->EvaluateKnownConstInt(PDB.getASTContext());
Eli Friedman9ec64d62009-04-26 19:04:51 +0000538
Ted Kremenek31061982009-03-31 23:00:32 +0000539 os << ":' at line "
Chandler Carruth64211622011-07-25 21:09:52 +0000540 << End.asLocation().getExpansionLineNumber();
Ted Kremenek31061982009-03-31 23:00:32 +0000541 break;
542 }
543 }
Ted Kremenek2042fc12012-02-24 06:00:00 +0000544 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000545 os.str()));
546 }
547 else {
548 os << "'Default' branch taken. ";
Mike Stump1eb44332009-09-09 15:08:12 +0000549 const PathDiagnosticLocation &End = PDB.ExecutionContinues(os, N);
Ted Kremenek2042fc12012-02-24 06:00:00 +0000550 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000551 os.str()));
552 }
Mike Stump1eb44332009-09-09 15:08:12 +0000553
Ted Kremenek31061982009-03-31 23:00:32 +0000554 break;
555 }
Mike Stump1eb44332009-09-09 15:08:12 +0000556
Ted Kremenek31061982009-03-31 23:00:32 +0000557 case Stmt::BreakStmtClass:
558 case Stmt::ContinueStmtClass: {
559 std::string sbuf;
560 llvm::raw_string_ostream os(sbuf);
561 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
Ted Kremenek2042fc12012-02-24 06:00:00 +0000562 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000563 os.str()));
564 break;
565 }
Mike Stump1eb44332009-09-09 15:08:12 +0000566
Ted Kremenek31061982009-03-31 23:00:32 +0000567 // Determine control-flow for ternary '?'.
John McCall56ca35d2011-02-17 10:25:35 +0000568 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek31061982009-03-31 23:00:32 +0000569 case Stmt::ConditionalOperatorClass: {
570 std::string sbuf;
571 llvm::raw_string_ostream os(sbuf);
572 os << "'?' condition is ";
Mike Stump1eb44332009-09-09 15:08:12 +0000573
Ted Kremenek31061982009-03-31 23:00:32 +0000574 if (*(Src->succ_begin()+1) == Dst)
575 os << "false";
576 else
577 os << "true";
Mike Stump1eb44332009-09-09 15:08:12 +0000578
Ted Kremenek31061982009-03-31 23:00:32 +0000579 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000580
Ted Kremenek31061982009-03-31 23:00:32 +0000581 if (const Stmt *S = End.asStmt())
582 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000583
Ted Kremenek2042fc12012-02-24 06:00:00 +0000584 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000585 os.str()));
586 break;
587 }
Mike Stump1eb44332009-09-09 15:08:12 +0000588
Ted Kremenek31061982009-03-31 23:00:32 +0000589 // Determine control-flow for short-circuited '&&' and '||'.
590 case Stmt::BinaryOperatorClass: {
591 if (!PDB.supportsLogicalOpControlFlow())
592 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000593
Zhongxing Xu03509ae2010-07-20 06:22:24 +0000594 const BinaryOperator *B = cast<BinaryOperator>(T);
Ted Kremenek31061982009-03-31 23:00:32 +0000595 std::string sbuf;
596 llvm::raw_string_ostream os(sbuf);
597 os << "Left side of '";
Mike Stump1eb44332009-09-09 15:08:12 +0000598
John McCall2de56d12010-08-25 11:45:40 +0000599 if (B->getOpcode() == BO_LAnd) {
Ted Kremenek31061982009-03-31 23:00:32 +0000600 os << "&&" << "' is ";
Mike Stump1eb44332009-09-09 15:08:12 +0000601
Ted Kremenek31061982009-03-31 23:00:32 +0000602 if (*(Src->succ_begin()+1) == Dst) {
603 os << "false";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000604 PathDiagnosticLocation End(B->getLHS(), SMgr, LC);
Anna Zaks0cd59482011-09-16 19:18:30 +0000605 PathDiagnosticLocation Start =
606 PathDiagnosticLocation::createOperatorLoc(B, SMgr);
Ted Kremenek2042fc12012-02-24 06:00:00 +0000607 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000608 os.str()));
Mike Stump1eb44332009-09-09 15:08:12 +0000609 }
Ted Kremenek31061982009-03-31 23:00:32 +0000610 else {
611 os << "true";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000612 PathDiagnosticLocation Start(B->getLHS(), SMgr, LC);
Ted Kremenek31061982009-03-31 23:00:32 +0000613 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Ted Kremenek2042fc12012-02-24 06:00:00 +0000614 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000615 os.str()));
Mike Stump1eb44332009-09-09 15:08:12 +0000616 }
Ted Kremenek31061982009-03-31 23:00:32 +0000617 }
618 else {
John McCall2de56d12010-08-25 11:45:40 +0000619 assert(B->getOpcode() == BO_LOr);
Ted Kremenek31061982009-03-31 23:00:32 +0000620 os << "||" << "' is ";
Mike Stump1eb44332009-09-09 15:08:12 +0000621
Ted Kremenek31061982009-03-31 23:00:32 +0000622 if (*(Src->succ_begin()+1) == Dst) {
623 os << "false";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000624 PathDiagnosticLocation Start(B->getLHS(), SMgr, LC);
Ted Kremenek31061982009-03-31 23:00:32 +0000625 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Ted Kremenek2042fc12012-02-24 06:00:00 +0000626 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Mike Stump1eb44332009-09-09 15:08:12 +0000627 os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000628 }
629 else {
630 os << "true";
Anna Zaks220ac8c2011-09-15 01:08:34 +0000631 PathDiagnosticLocation End(B->getLHS(), SMgr, LC);
Anna Zaks0cd59482011-09-16 19:18:30 +0000632 PathDiagnosticLocation Start =
633 PathDiagnosticLocation::createOperatorLoc(B, SMgr);
Ted Kremenek2042fc12012-02-24 06:00:00 +0000634 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Mike Stump1eb44332009-09-09 15:08:12 +0000635 os.str()));
Ted Kremenek31061982009-03-31 23:00:32 +0000636 }
637 }
Mike Stump1eb44332009-09-09 15:08:12 +0000638
Ted Kremenek31061982009-03-31 23:00:32 +0000639 break;
640 }
Mike Stump1eb44332009-09-09 15:08:12 +0000641
642 case Stmt::DoStmtClass: {
Ted Kremenek31061982009-03-31 23:00:32 +0000643 if (*(Src->succ_begin()) == Dst) {
644 std::string sbuf;
645 llvm::raw_string_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000646
Ted Kremenek31061982009-03-31 23:00:32 +0000647 os << "Loop condition is true. ";
648 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
Mike Stump1eb44332009-09-09 15:08:12 +0000649
Ted Kremenek31061982009-03-31 23:00:32 +0000650 if (const Stmt *S = End.asStmt())
651 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000652
Ted Kremenek2042fc12012-02-24 06:00:00 +0000653 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000654 os.str()));
655 }
656 else {
657 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Ted Kremenek31061982009-03-31 23:00:32 +0000659 if (const Stmt *S = End.asStmt())
660 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000661
Ted Kremenek2042fc12012-02-24 06:00:00 +0000662 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000663 "Loop condition is false. Exiting loop"));
664 }
Mike Stump1eb44332009-09-09 15:08:12 +0000665
Ted Kremenek31061982009-03-31 23:00:32 +0000666 break;
667 }
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Ted Kremenek31061982009-03-31 23:00:32 +0000669 case Stmt::WhileStmtClass:
Mike Stump1eb44332009-09-09 15:08:12 +0000670 case Stmt::ForStmtClass: {
Ted Kremenek31061982009-03-31 23:00:32 +0000671 if (*(Src->succ_begin()+1) == Dst) {
672 std::string sbuf;
673 llvm::raw_string_ostream os(sbuf);
Mike Stump1eb44332009-09-09 15:08:12 +0000674
Ted Kremenek31061982009-03-31 23:00:32 +0000675 os << "Loop condition is false. ";
676 PathDiagnosticLocation End = PDB.ExecutionContinues(os, N);
677 if (const Stmt *S = End.asStmt())
678 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000679
Ted Kremenek2042fc12012-02-24 06:00:00 +0000680 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek31061982009-03-31 23:00:32 +0000681 os.str()));
682 }
683 else {
684 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
685 if (const Stmt *S = End.asStmt())
686 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000687
Ted Kremenek2042fc12012-02-24 06:00:00 +0000688 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000689 "Loop condition is true. Entering loop body"));
Ted Kremenek31061982009-03-31 23:00:32 +0000690 }
Mike Stump1eb44332009-09-09 15:08:12 +0000691
Ted Kremenek31061982009-03-31 23:00:32 +0000692 break;
693 }
Mike Stump1eb44332009-09-09 15:08:12 +0000694
Ted Kremenek31061982009-03-31 23:00:32 +0000695 case Stmt::IfStmtClass: {
696 PathDiagnosticLocation End = PDB.ExecutionContinues(N);
Mike Stump1eb44332009-09-09 15:08:12 +0000697
Ted Kremenek31061982009-03-31 23:00:32 +0000698 if (const Stmt *S = End.asStmt())
699 End = PDB.getEnclosingStmtLocation(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000700
Ted Kremenek31061982009-03-31 23:00:32 +0000701 if (*(Src->succ_begin()+1) == Dst)
Ted Kremenek2042fc12012-02-24 06:00:00 +0000702 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000703 "Taking false branch"));
Mike Stump1eb44332009-09-09 15:08:12 +0000704 else
Ted Kremenek2042fc12012-02-24 06:00:00 +0000705 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(Start, End,
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000706 "Taking true branch"));
Mike Stump1eb44332009-09-09 15:08:12 +0000707
Ted Kremenek31061982009-03-31 23:00:32 +0000708 break;
709 }
710 }
711 }
Mike Stump1eb44332009-09-09 15:08:12 +0000712
Ted Kremenekdd986cc2009-05-07 00:45:33 +0000713 if (NextNode) {
Anna Zaks8e6431a2011-08-18 22:37:56 +0000714 // Add diagnostic pieces from custom visitors.
715 BugReport *R = PDB.getBugReport();
Jordy Rose3bc75ca2012-03-24 03:03:29 +0000716 for (ArrayRef<BugReporterVisitor *>::iterator I = visitors.begin(),
717 E = visitors.end();
718 I != E; ++I) {
Anna Zaks368a0d52012-03-15 21:13:02 +0000719 if (PathDiagnosticPiece *p = (*I)->VisitNode(N, NextNode, PDB, *R)) {
Ted Kremenek2042fc12012-02-24 06:00:00 +0000720 PD.getActivePath().push_front(p);
Anna Zaks368a0d52012-03-15 21:13:02 +0000721 updateStackPiecesWithMessage(p, CallStack);
722 }
Ted Kremenekdd986cc2009-05-07 00:45:33 +0000723 }
Ted Kremenek8966bc12009-05-06 21:39:49 +0000724 }
Ted Kremenek31061982009-03-31 23:00:32 +0000725 }
Mike Stump1eb44332009-09-09 15:08:12 +0000726
Ted Kremenek14856d72009-04-06 23:06:54 +0000727 // After constructing the full PathDiagnostic, do a pass over it to compact
728 // PathDiagnosticPieces that occur within a macro.
Ted Kremenek77d09442012-03-02 01:27:31 +0000729 CompactPathDiagnostic(PD.getMutablePieces(), PDB.getSourceManager());
Ted Kremenek31061982009-03-31 23:00:32 +0000730}
731
732//===----------------------------------------------------------------------===//
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000733// "Extensive" PathDiagnostic generation.
734//===----------------------------------------------------------------------===//
735
736static bool IsControlFlowExpr(const Stmt *S) {
737 const Expr *E = dyn_cast<Expr>(S);
Mike Stump1eb44332009-09-09 15:08:12 +0000738
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000739 if (!E)
740 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000741
742 E = E->IgnoreParenCasts();
743
John McCall56ca35d2011-02-17 10:25:35 +0000744 if (isa<AbstractConditionalOperator>(E))
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000745 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000746
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000747 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(E))
748 if (B->isLogicalOp())
749 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000750
751 return false;
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +0000752}
753
Ted Kremenek14856d72009-04-06 23:06:54 +0000754namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000755class ContextLocation : public PathDiagnosticLocation {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000756 bool IsDead;
757public:
758 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
759 : PathDiagnosticLocation(L), IsDead(isdead) {}
Mike Stump1eb44332009-09-09 15:08:12 +0000760
761 void markDead() { IsDead = true; }
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000762 bool isDead() const { return IsDead; }
763};
Mike Stump1eb44332009-09-09 15:08:12 +0000764
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +0000765class EdgeBuilder {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000766 std::vector<ContextLocation> CLocs;
767 typedef std::vector<ContextLocation>::iterator iterator;
Ted Kremenek14856d72009-04-06 23:06:54 +0000768 PathDiagnostic &PD;
769 PathDiagnosticBuilder &PDB;
770 PathDiagnosticLocation PrevLoc;
Mike Stump1eb44332009-09-09 15:08:12 +0000771
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000772 bool IsConsumedExpr(const PathDiagnosticLocation &L);
Mike Stump1eb44332009-09-09 15:08:12 +0000773
Ted Kremenek14856d72009-04-06 23:06:54 +0000774 bool containsLocation(const PathDiagnosticLocation &Container,
775 const PathDiagnosticLocation &Containee);
Mike Stump1eb44332009-09-09 15:08:12 +0000776
Ted Kremenek14856d72009-04-06 23:06:54 +0000777 PathDiagnosticLocation getContextLocation(const PathDiagnosticLocation &L);
Mike Stump1eb44332009-09-09 15:08:12 +0000778
Ted Kremenek9650cf32009-05-11 21:42:34 +0000779 PathDiagnosticLocation cleanUpLocation(PathDiagnosticLocation L,
780 bool firstCharOnly = false) {
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000781 if (const Stmt *S = L.asStmt()) {
Ted Kremenek9650cf32009-05-11 21:42:34 +0000782 const Stmt *Original = S;
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000783 while (1) {
784 // Adjust the location for some expressions that are best referenced
785 // by one of their subexpressions.
Ted Kremenek9650cf32009-05-11 21:42:34 +0000786 switch (S->getStmtClass()) {
787 default:
788 break;
789 case Stmt::ParenExprClass:
Peter Collingbournef111d932011-04-15 00:35:48 +0000790 case Stmt::GenericSelectionExprClass:
791 S = cast<Expr>(S)->IgnoreParens();
Ted Kremenek9650cf32009-05-11 21:42:34 +0000792 firstCharOnly = true;
793 continue;
John McCall56ca35d2011-02-17 10:25:35 +0000794 case Stmt::BinaryConditionalOperatorClass:
Ted Kremenek9650cf32009-05-11 21:42:34 +0000795 case Stmt::ConditionalOperatorClass:
John McCall56ca35d2011-02-17 10:25:35 +0000796 S = cast<AbstractConditionalOperator>(S)->getCond();
Ted Kremenek9650cf32009-05-11 21:42:34 +0000797 firstCharOnly = true;
798 continue;
799 case Stmt::ChooseExprClass:
800 S = cast<ChooseExpr>(S)->getCond();
801 firstCharOnly = true;
802 continue;
803 case Stmt::BinaryOperatorClass:
804 S = cast<BinaryOperator>(S)->getLHS();
805 firstCharOnly = true;
806 continue;
807 }
Mike Stump1eb44332009-09-09 15:08:12 +0000808
Ted Kremenek9650cf32009-05-11 21:42:34 +0000809 break;
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000810 }
Mike Stump1eb44332009-09-09 15:08:12 +0000811
Ted Kremenek9650cf32009-05-11 21:42:34 +0000812 if (S != Original)
Ted Kremenek59950d32012-02-24 07:12:52 +0000813 L = PathDiagnosticLocation(S, L.getManager(), PDB.LC);
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000814 }
Mike Stump1eb44332009-09-09 15:08:12 +0000815
Ted Kremenek9650cf32009-05-11 21:42:34 +0000816 if (firstCharOnly)
Anna Zaks1531bb02011-09-20 01:38:47 +0000817 L = PathDiagnosticLocation::createSingleLocation(L);
Ted Kremenek9650cf32009-05-11 21:42:34 +0000818
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000819 return L;
820 }
Mike Stump1eb44332009-09-09 15:08:12 +0000821
Ted Kremenek14856d72009-04-06 23:06:54 +0000822 void popLocation() {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000823 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {
Ted Kremenek5c7168c2009-04-22 20:36:26 +0000824 // For contexts, we only one the first character as the range.
Ted Kremenek07c015c2009-05-15 02:46:13 +0000825 rawAddEdge(cleanUpLocation(CLocs.back(), true));
Ted Kremenek5c7168c2009-04-22 20:36:26 +0000826 }
Ted Kremenek14856d72009-04-06 23:06:54 +0000827 CLocs.pop_back();
828 }
Mike Stump1eb44332009-09-09 15:08:12 +0000829
Ted Kremenek14856d72009-04-06 23:06:54 +0000830public:
831 EdgeBuilder(PathDiagnostic &pd, PathDiagnosticBuilder &pdb)
832 : PD(pd), PDB(pdb) {
Mike Stump1eb44332009-09-09 15:08:12 +0000833
Ted Kremeneka301a672009-04-22 18:16:20 +0000834 // If the PathDiagnostic already has pieces, add the enclosing statement
835 // of the first piece as a context as well.
Ted Kremenek802e0242012-02-08 04:32:34 +0000836 if (!PD.path.empty()) {
837 PrevLoc = (*PD.path.begin())->getLocation();
Mike Stump1eb44332009-09-09 15:08:12 +0000838
Ted Kremenek14856d72009-04-06 23:06:54 +0000839 if (const Stmt *S = PrevLoc.asStmt())
Ted Kremeneke1baed32009-05-05 23:13:38 +0000840 addExtendedContext(PDB.getEnclosingStmtLocation(S).asStmt());
Ted Kremenek14856d72009-04-06 23:06:54 +0000841 }
842 }
843
844 ~EdgeBuilder() {
845 while (!CLocs.empty()) popLocation();
Anna Zaks0cd59482011-09-16 19:18:30 +0000846
Ted Kremeneka301a672009-04-22 18:16:20 +0000847 // Finally, add an initial edge from the start location of the first
848 // statement (if it doesn't already exist).
Anna Zaks0cd59482011-09-16 19:18:30 +0000849 PathDiagnosticLocation L = PathDiagnosticLocation::createDeclBegin(
Ted Kremenek59950d32012-02-24 07:12:52 +0000850 PDB.LC,
Anna Zaks0cd59482011-09-16 19:18:30 +0000851 PDB.getSourceManager());
852 if (L.isValid())
853 rawAddEdge(L);
Ted Kremenek14856d72009-04-06 23:06:54 +0000854 }
855
Ted Kremenek5de4fdb2012-02-07 02:26:17 +0000856 void flushLocations() {
857 while (!CLocs.empty())
858 popLocation();
859 PrevLoc = PathDiagnosticLocation();
860 }
861
Ted Kremenek14856d72009-04-06 23:06:54 +0000862 void addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd = false);
Mike Stump1eb44332009-09-09 15:08:12 +0000863
Ted Kremenek8bd4d032009-04-28 04:23:15 +0000864 void rawAddEdge(PathDiagnosticLocation NewLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000865
Ted Kremenek14856d72009-04-06 23:06:54 +0000866 void addContext(const Stmt *S);
Ted Kremeneke1baed32009-05-05 23:13:38 +0000867 void addExtendedContext(const Stmt *S);
Mike Stump1eb44332009-09-09 15:08:12 +0000868};
Ted Kremenek14856d72009-04-06 23:06:54 +0000869} // end anonymous namespace
870
871
872PathDiagnosticLocation
873EdgeBuilder::getContextLocation(const PathDiagnosticLocation &L) {
874 if (const Stmt *S = L.asStmt()) {
875 if (IsControlFlowExpr(S))
876 return L;
Mike Stump1eb44332009-09-09 15:08:12 +0000877
878 return PDB.getEnclosingStmtLocation(S);
Ted Kremenek14856d72009-04-06 23:06:54 +0000879 }
Mike Stump1eb44332009-09-09 15:08:12 +0000880
Ted Kremenek14856d72009-04-06 23:06:54 +0000881 return L;
882}
883
884bool EdgeBuilder::containsLocation(const PathDiagnosticLocation &Container,
885 const PathDiagnosticLocation &Containee) {
886
887 if (Container == Containee)
888 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000889
Ted Kremenek14856d72009-04-06 23:06:54 +0000890 if (Container.asDecl())
891 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000892
Ted Kremenek14856d72009-04-06 23:06:54 +0000893 if (const Stmt *S = Containee.asStmt())
894 if (const Stmt *ContainerS = Container.asStmt()) {
895 while (S) {
896 if (S == ContainerS)
897 return true;
898 S = PDB.getParent(S);
899 }
900 return false;
901 }
902
903 // Less accurate: compare using source ranges.
904 SourceRange ContainerR = Container.asRange();
905 SourceRange ContaineeR = Containee.asRange();
Mike Stump1eb44332009-09-09 15:08:12 +0000906
Ted Kremenek14856d72009-04-06 23:06:54 +0000907 SourceManager &SM = PDB.getSourceManager();
Chandler Carruth40278532011-07-25 16:49:02 +0000908 SourceLocation ContainerRBeg = SM.getExpansionLoc(ContainerR.getBegin());
909 SourceLocation ContainerREnd = SM.getExpansionLoc(ContainerR.getEnd());
910 SourceLocation ContaineeRBeg = SM.getExpansionLoc(ContaineeR.getBegin());
911 SourceLocation ContaineeREnd = SM.getExpansionLoc(ContaineeR.getEnd());
Mike Stump1eb44332009-09-09 15:08:12 +0000912
Chandler Carruth64211622011-07-25 21:09:52 +0000913 unsigned ContainerBegLine = SM.getExpansionLineNumber(ContainerRBeg);
914 unsigned ContainerEndLine = SM.getExpansionLineNumber(ContainerREnd);
915 unsigned ContaineeBegLine = SM.getExpansionLineNumber(ContaineeRBeg);
916 unsigned ContaineeEndLine = SM.getExpansionLineNumber(ContaineeREnd);
Mike Stump1eb44332009-09-09 15:08:12 +0000917
Ted Kremenek14856d72009-04-06 23:06:54 +0000918 assert(ContainerBegLine <= ContainerEndLine);
Mike Stump1eb44332009-09-09 15:08:12 +0000919 assert(ContaineeBegLine <= ContaineeEndLine);
920
Ted Kremenek14856d72009-04-06 23:06:54 +0000921 return (ContainerBegLine <= ContaineeBegLine &&
922 ContainerEndLine >= ContaineeEndLine &&
923 (ContainerBegLine != ContaineeBegLine ||
Chandler Carrutha77c0312011-07-25 20:57:57 +0000924 SM.getExpansionColumnNumber(ContainerRBeg) <=
925 SM.getExpansionColumnNumber(ContaineeRBeg)) &&
Ted Kremenek14856d72009-04-06 23:06:54 +0000926 (ContainerEndLine != ContaineeEndLine ||
Chandler Carrutha77c0312011-07-25 20:57:57 +0000927 SM.getExpansionColumnNumber(ContainerREnd) >=
Ted Kremenek6488dc32012-03-28 05:24:50 +0000928 SM.getExpansionColumnNumber(ContaineeREnd)));
Ted Kremenek14856d72009-04-06 23:06:54 +0000929}
930
Ted Kremenek14856d72009-04-06 23:06:54 +0000931void EdgeBuilder::rawAddEdge(PathDiagnosticLocation NewLoc) {
932 if (!PrevLoc.isValid()) {
933 PrevLoc = NewLoc;
934 return;
935 }
Mike Stump1eb44332009-09-09 15:08:12 +0000936
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000937 const PathDiagnosticLocation &NewLocClean = cleanUpLocation(NewLoc);
938 const PathDiagnosticLocation &PrevLocClean = cleanUpLocation(PrevLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000939
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000940 if (NewLocClean.asLocation() == PrevLocClean.asLocation())
Ted Kremenek14856d72009-04-06 23:06:54 +0000941 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000942
Ted Kremenek14856d72009-04-06 23:06:54 +0000943 // FIXME: Ignore intra-macro edges for now.
Chandler Carruth40278532011-07-25 16:49:02 +0000944 if (NewLocClean.asLocation().getExpansionLoc() ==
945 PrevLocClean.asLocation().getExpansionLoc())
Ted Kremenek14856d72009-04-06 23:06:54 +0000946 return;
947
Ted Kremenek2042fc12012-02-24 06:00:00 +0000948 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece(NewLocClean, PrevLocClean));
Ted Kremenek8c8b0ad2009-05-11 19:50:47 +0000949 PrevLoc = NewLoc;
Ted Kremenek14856d72009-04-06 23:06:54 +0000950}
951
952void EdgeBuilder::addEdge(PathDiagnosticLocation NewLoc, bool alwaysAdd) {
Mike Stump1eb44332009-09-09 15:08:12 +0000953
Ted Kremeneka301a672009-04-22 18:16:20 +0000954 if (!alwaysAdd && NewLoc.asLocation().isMacroID())
955 return;
Mike Stump1eb44332009-09-09 15:08:12 +0000956
Ted Kremenek14856d72009-04-06 23:06:54 +0000957 const PathDiagnosticLocation &CLoc = getContextLocation(NewLoc);
958
959 while (!CLocs.empty()) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000960 ContextLocation &TopContextLoc = CLocs.back();
Mike Stump1eb44332009-09-09 15:08:12 +0000961
Ted Kremenek14856d72009-04-06 23:06:54 +0000962 // Is the top location context the same as the one for the new location?
963 if (TopContextLoc == CLoc) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000964 if (alwaysAdd) {
Ted Kremenek4c6f8d32009-05-04 18:15:17 +0000965 if (IsConsumedExpr(TopContextLoc) &&
966 !IsControlFlowExpr(TopContextLoc.asStmt()))
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000967 TopContextLoc.markDead();
968
Ted Kremenek14856d72009-04-06 23:06:54 +0000969 rawAddEdge(NewLoc);
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000970 }
Ted Kremenek14856d72009-04-06 23:06:54 +0000971
972 return;
973 }
974
975 if (containsLocation(TopContextLoc, CLoc)) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000976 if (alwaysAdd) {
Ted Kremenek14856d72009-04-06 23:06:54 +0000977 rawAddEdge(NewLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000978
Ted Kremenek4c6f8d32009-05-04 18:15:17 +0000979 if (IsConsumedExpr(CLoc) && !IsControlFlowExpr(CLoc.asStmt())) {
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000980 CLocs.push_back(ContextLocation(CLoc, true));
981 return;
982 }
983 }
Mike Stump1eb44332009-09-09 15:08:12 +0000984
Ted Kremenek14856d72009-04-06 23:06:54 +0000985 CLocs.push_back(CLoc);
Mike Stump1eb44332009-09-09 15:08:12 +0000986 return;
Ted Kremenek14856d72009-04-06 23:06:54 +0000987 }
988
989 // Context does not contain the location. Flush it.
990 popLocation();
991 }
Mike Stump1eb44332009-09-09 15:08:12 +0000992
Ted Kremenek5c7168c2009-04-22 20:36:26 +0000993 // If we reach here, there is no enclosing context. Just add the edge.
994 rawAddEdge(NewLoc);
Ted Kremenek14856d72009-04-06 23:06:54 +0000995}
996
Ted Kremenek8f9b1b32009-05-01 16:08:09 +0000997bool EdgeBuilder::IsConsumedExpr(const PathDiagnosticLocation &L) {
998 if (const Expr *X = dyn_cast_or_null<Expr>(L.asStmt()))
999 return PDB.getParentMap().isConsumedExpr(X) && !IsControlFlowExpr(X);
Mike Stump1eb44332009-09-09 15:08:12 +00001000
Ted Kremenek8f9b1b32009-05-01 16:08:09 +00001001 return false;
1002}
Mike Stump1eb44332009-09-09 15:08:12 +00001003
Ted Kremeneke1baed32009-05-05 23:13:38 +00001004void EdgeBuilder::addExtendedContext(const Stmt *S) {
1005 if (!S)
1006 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001007
1008 const Stmt *Parent = PDB.getParent(S);
Ted Kremeneke1baed32009-05-05 23:13:38 +00001009 while (Parent) {
1010 if (isa<CompoundStmt>(Parent))
1011 Parent = PDB.getParent(Parent);
1012 else
1013 break;
1014 }
1015
1016 if (Parent) {
1017 switch (Parent->getStmtClass()) {
1018 case Stmt::DoStmtClass:
1019 case Stmt::ObjCAtSynchronizedStmtClass:
1020 addContext(Parent);
1021 default:
1022 break;
1023 }
1024 }
Mike Stump1eb44332009-09-09 15:08:12 +00001025
Ted Kremeneke1baed32009-05-05 23:13:38 +00001026 addContext(S);
1027}
Mike Stump1eb44332009-09-09 15:08:12 +00001028
Ted Kremenek14856d72009-04-06 23:06:54 +00001029void EdgeBuilder::addContext(const Stmt *S) {
1030 if (!S)
1031 return;
1032
Ted Kremenek59950d32012-02-24 07:12:52 +00001033 PathDiagnosticLocation L(S, PDB.getSourceManager(), PDB.LC);
Mike Stump1eb44332009-09-09 15:08:12 +00001034
Ted Kremenek14856d72009-04-06 23:06:54 +00001035 while (!CLocs.empty()) {
1036 const PathDiagnosticLocation &TopContextLoc = CLocs.back();
1037
1038 // Is the top location context the same as the one for the new location?
1039 if (TopContextLoc == L)
1040 return;
1041
1042 if (containsLocation(TopContextLoc, L)) {
Ted Kremenek14856d72009-04-06 23:06:54 +00001043 CLocs.push_back(L);
Mike Stump1eb44332009-09-09 15:08:12 +00001044 return;
Ted Kremenek14856d72009-04-06 23:06:54 +00001045 }
1046
1047 // Context does not contain the location. Flush it.
1048 popLocation();
1049 }
1050
1051 CLocs.push_back(L);
1052}
1053
Ted Kremenek11abcec2012-05-02 00:31:29 +00001054// Cone-of-influence: support the reverse propagation of "interesting" symbols
1055// and values by tracing interesting calculations backwards through evaluated
1056// expressions along a path. This is probably overly complicated, but the idea
1057// is that if an expression computed an "interesting" value, the child
1058// expressions are are also likely to be "interesting" as well (which then
1059// propagates to the values they in turn compute). This reverse propagation
1060// is needed to track interesting correlations across function call boundaries,
1061// where formal arguments bind to actual arguments, etc. This is also needed
1062// because the constraint solver sometimes simplifies certain symbolic values
1063// into constants when appropriate, and this complicates reasoning about
1064// interesting values.
1065typedef llvm::DenseSet<const Expr *> InterestingExprs;
1066
1067static void reversePropagateIntererstingSymbols(BugReport &R,
1068 InterestingExprs &IE,
1069 const ProgramState *State,
1070 const Expr *Ex,
1071 const LocationContext *LCtx) {
1072 SVal V = State->getSVal(Ex, LCtx);
1073 if (!(R.isInteresting(V) || IE.count(Ex)))
1074 return;
1075
1076 switch (Ex->getStmtClass()) {
1077 default:
1078 if (!isa<CastExpr>(Ex))
1079 break;
1080 // Fall through.
1081 case Stmt::BinaryOperatorClass:
1082 case Stmt::UnaryOperatorClass: {
1083 for (Stmt::const_child_iterator CI = Ex->child_begin(),
1084 CE = Ex->child_end();
1085 CI != CE; ++CI) {
1086 if (const Expr *child = dyn_cast_or_null<Expr>(*CI)) {
1087 IE.insert(child);
1088 SVal ChildV = State->getSVal(child, LCtx);
1089 R.markInteresting(ChildV);
1090 }
1091 break;
1092 }
1093 }
1094 }
1095
1096 R.markInteresting(V);
1097}
1098
1099static void reversePropagateInterestingSymbols(BugReport &R,
1100 InterestingExprs &IE,
1101 const ProgramState *State,
1102 const LocationContext *CalleeCtx,
1103 const LocationContext *CallerCtx)
1104{
1105 // FIXME: Handle CXXConstructExpr.
1106 // FIXME: Handle calls to blocks.
1107 const StackFrameContext *Callee = CalleeCtx->getCurrentStackFrame();
1108 const Stmt *CallSite = Callee->getCallSite();
1109 if (const CallExpr *CE = dyn_cast<CallExpr>(CallSite)) {
1110 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CalleeCtx->getDecl())) {
1111 FunctionDecl::param_const_iterator PI = FD->param_begin(),
1112 PE = FD->param_end();
1113 CallExpr::const_arg_iterator AI = CE->arg_begin(), AE = CE->arg_end();
1114 for (; AI != AE && PI != PE; ++AI, ++PI) {
1115 if (const Expr *ArgE = *AI) {
1116 if (const ParmVarDecl *PD = *PI) {
1117 Loc LV = State->getLValue(PD, CalleeCtx);
1118 if (R.isInteresting(LV) || R.isInteresting(State->getRawSVal(LV)))
1119 IE.insert(ArgE);
1120 }
1121 }
1122 }
1123 }
1124 }
1125}
1126
Ted Kremenek14856d72009-04-06 23:06:54 +00001127static void GenerateExtensivePathDiagnostic(PathDiagnostic& PD,
1128 PathDiagnosticBuilder &PDB,
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001129 const ExplodedNode *N,
1130 ArrayRef<BugReporterVisitor *> visitors) {
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();
Anna Zaks56a938f2012-03-16 23:24:20 +00001133 StackDiagVector CallStack;
Ted Kremenek11abcec2012-05-02 00:31:29 +00001134 InterestingExprs IE;
Ted Kremenek14856d72009-04-06 23:06:54 +00001135
Ted Kremenek9c378f72011-08-12 23:37:29 +00001136 const ExplodedNode *NextNode = N->pred_empty() ? NULL : *(N->pred_begin());
Ted Kremenek14856d72009-04-06 23:06:54 +00001137 while (NextNode) {
1138 N = NextNode;
1139 NextNode = GetPredecessorNode(N);
1140 ProgramPoint P = N->getLocation();
1141
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001142 do {
Ted Kremenek11abcec2012-05-02 00:31:29 +00001143 if (const PostStmt *PS = dyn_cast<PostStmt>(&P)) {
1144 if (const Expr *Ex = PS->getStmtAs<Expr>())
1145 reversePropagateIntererstingSymbols(*PDB.getBugReport(), IE,
1146 N->getState().getPtr(), Ex,
1147 N->getLocationContext());
1148 }
1149
Anna Zaks0b3ade82012-04-20 21:59:08 +00001150 if (const CallExitEnd *CE = dyn_cast<CallExitEnd>(&P)) {
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001151 const StackFrameContext *LCtx =
1152 CE->getLocationContext()->getCurrentStackFrame();
Anna Zaks0b3ade82012-04-20 21:59:08 +00001153 PathDiagnosticLocation Loc(CE->getStmt(),
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001154 PDB.getSourceManager(),
1155 LCtx);
1156 EB.addEdge(Loc, true);
1157 EB.flushLocations();
Ted Kremenek2042fc12012-02-24 06:00:00 +00001158 PathDiagnosticCallPiece *C =
1159 PathDiagnosticCallPiece::construct(N, *CE, SM);
1160 PD.getActivePath().push_front(C);
1161 PD.pushActivePath(&C->path);
Anna Zaks56a938f2012-03-16 23:24:20 +00001162 CallStack.push_back(StackDiagPair(C, N));
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001163 break;
1164 }
Ted Kremenek4ba86bc2012-03-02 21:16:22 +00001165
Ted Kremenek2042fc12012-02-24 06:00:00 +00001166 // Pop the call hierarchy if we are done walking the contents
1167 // of a function call.
1168 if (const CallEnter *CE = dyn_cast<CallEnter>(&P)) {
Ted Kremenek097ebb32012-03-06 01:25:01 +00001169 // Add an edge to the start of the function.
1170 const Decl *D = CE->getCalleeContext()->getDecl();
1171 PathDiagnosticLocation pos =
1172 PathDiagnosticLocation::createBegin(D, SM);
1173 EB.addEdge(pos);
1174
1175 // Flush all locations, and pop the active path.
Ted Kremenek4ba86bc2012-03-02 21:16:22 +00001176 EB.flushLocations();
Ted Kremenek2042fc12012-02-24 06:00:00 +00001177 PD.popActivePath();
Ted Kremenek4ba86bc2012-03-02 21:16:22 +00001178 assert(!PD.getActivePath().empty());
1179 PDB.LC = N->getLocationContext();
Ted Kremenek097ebb32012-03-06 01:25:01 +00001180
Ted Kremenek2042fc12012-02-24 06:00:00 +00001181 // The current active path should never be empty. Either we
1182 // just added a bunch of stuff to the top-level path, or
Anna Zaks0b3ade82012-04-20 21:59:08 +00001183 // we have a previous CallExitEnd. If the front of the active
Ted Kremenek2042fc12012-02-24 06:00:00 +00001184 // path is not a PathDiagnosticCallPiece, it means that the
1185 // path terminated within a function call. We must then take the
1186 // current contents of the active path and place it within
1187 // a new PathDiagnosticCallPiece.
Ted Kremenek4ba86bc2012-03-02 21:16:22 +00001188 PathDiagnosticCallPiece *C =
Ted Kremenek2042fc12012-02-24 06:00:00 +00001189 dyn_cast<PathDiagnosticCallPiece>(PD.getActivePath().front());
Anna Zaks93739372012-03-14 18:58:28 +00001190 if (!C) {
1191 const Decl * Caller = CE->getLocationContext()->getDecl();
1192 C = PathDiagnosticCallPiece::construct(PD.getActivePath(), Caller);
1193 }
Ted Kremenek2042fc12012-02-24 06:00:00 +00001194 C->setCallee(*CE, SM);
1195 EB.addContext(CE->getCallExpr());
Anna Zaks368a0d52012-03-15 21:13:02 +00001196
1197 if (!CallStack.empty()) {
Anna Zaks56a938f2012-03-16 23:24:20 +00001198 assert(CallStack.back().first == C);
Anna Zaks368a0d52012-03-15 21:13:02 +00001199 CallStack.pop_back();
1200 }
Ted Kremenek2042fc12012-02-24 06:00:00 +00001201 break;
1202 }
Ted Kremenek4ba86bc2012-03-02 21:16:22 +00001203
1204 // Note that is important that we update the LocationContext
1205 // after looking at CallExits. CallExit basically adds an
1206 // edge in the *caller*, so we don't want to update the LocationContext
1207 // too soon.
1208 PDB.LC = N->getLocationContext();
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001209
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001210 // Block edges.
Ted Kremenek11abcec2012-05-02 00:31:29 +00001211 if (const BlockEdge *BE = dyn_cast<BlockEdge>(&P)) {
1212 // Does this represent entering a call? If so, look at propagating
1213 // interesting symbols across call boundaries.
1214 if (NextNode) {
1215 const LocationContext *CallerCtx = NextNode->getLocationContext();
1216 const LocationContext *CalleeCtx = PDB.LC;
1217 if (CallerCtx != CalleeCtx) {
1218 reversePropagateInterestingSymbols(*PDB.getBugReport(), IE,
1219 N->getState().getPtr(),
1220 CalleeCtx, CallerCtx);
1221 }
1222 }
1223
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001224 const CFGBlock &Blk = *BE->getSrc();
1225 const Stmt *Term = Blk.getTerminator();
Mike Stump1eb44332009-09-09 15:08:12 +00001226
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001227 // Are we jumping to the head of a loop? Add a special diagnostic.
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001228 if (const Stmt *Loop = BE->getDst()->getLoopTarget()) {
Ted Kremenek59950d32012-02-24 07:12:52 +00001229 PathDiagnosticLocation L(Loop, SM, PDB.LC);
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001230 const CompoundStmt *CS = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001231
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001232 if (!Term) {
1233 if (const ForStmt *FS = dyn_cast<ForStmt>(Loop))
1234 CS = dyn_cast<CompoundStmt>(FS->getBody());
1235 else if (const WhileStmt *WS = dyn_cast<WhileStmt>(Loop))
Mike Stump1eb44332009-09-09 15:08:12 +00001236 CS = dyn_cast<CompoundStmt>(WS->getBody());
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001237 }
Mike Stump1eb44332009-09-09 15:08:12 +00001238
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001239 PathDiagnosticEventPiece *p =
1240 new PathDiagnosticEventPiece(L,
Ted Kremenek07c015c2009-05-15 02:46:13 +00001241 "Looping back to the head of the loop");
Ted Kremenek2dd17ab2012-03-06 01:00:36 +00001242 p->setPrunable(true);
Mike Stump1eb44332009-09-09 15:08:12 +00001243
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001244 EB.addEdge(p->getLocation(), true);
Ted Kremenek2042fc12012-02-24 06:00:00 +00001245 PD.getActivePath().push_front(p);
Mike Stump1eb44332009-09-09 15:08:12 +00001246
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001247 if (CS) {
Anna Zaks0cd59482011-09-16 19:18:30 +00001248 PathDiagnosticLocation BL =
1249 PathDiagnosticLocation::createEndBrace(CS, SM);
Ted Kremenek07c015c2009-05-15 02:46:13 +00001250 EB.addEdge(BL);
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001251 }
Ted Kremenek8bd4d032009-04-28 04:23:15 +00001252 }
Mike Stump1eb44332009-09-09 15:08:12 +00001253
Ted Kremenekddb7bab2009-05-15 01:50:15 +00001254 if (Term)
1255 EB.addContext(Term);
Mike Stump1eb44332009-09-09 15:08:12 +00001256
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001257 break;
Ted Kremenek14856d72009-04-06 23:06:54 +00001258 }
1259
Mike Stump1eb44332009-09-09 15:08:12 +00001260 if (const BlockEntrance *BE = dyn_cast<BlockEntrance>(&P)) {
Ted Kremenek3c0349e2011-03-01 03:15:10 +00001261 if (const CFGStmt *S = BE->getFirstElement().getAs<CFGStmt>()) {
1262 const Stmt *stmt = S->getStmt();
1263 if (IsControlFlowExpr(stmt)) {
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00001264 // Add the proper context for '&&', '||', and '?'.
Ted Kremenek3c0349e2011-03-01 03:15:10 +00001265 EB.addContext(stmt);
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00001266 }
1267 else
Ted Kremenek3c0349e2011-03-01 03:15:10 +00001268 EB.addExtendedContext(PDB.getEnclosingStmtLocation(stmt).asStmt());
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001269 }
Zhongxing Xub36cd3e2010-09-16 01:25:47 +00001270
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001271 break;
1272 }
Ted Kremenek5de4fdb2012-02-07 02:26:17 +00001273
1274
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001275 } while (0);
Mike Stump1eb44332009-09-09 15:08:12 +00001276
Ted Kremenekdd986cc2009-05-07 00:45:33 +00001277 if (!NextNode)
Ted Kremenek14856d72009-04-06 23:06:54 +00001278 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001279
Anna Zaks8e6431a2011-08-18 22:37:56 +00001280 // Add pieces from custom visitors.
1281 BugReport *R = PDB.getBugReport();
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001282 for (ArrayRef<BugReporterVisitor *>::iterator I = visitors.begin(),
1283 E = visitors.end();
1284 I != E; ++I) {
Anna Zaks8e6431a2011-08-18 22:37:56 +00001285 if (PathDiagnosticPiece *p = (*I)->VisitNode(N, NextNode, PDB, *R)) {
Ted Kremenek8966bc12009-05-06 21:39:49 +00001286 const PathDiagnosticLocation &Loc = p->getLocation();
1287 EB.addEdge(Loc, true);
Ted Kremenek2042fc12012-02-24 06:00:00 +00001288 PD.getActivePath().push_front(p);
Anna Zaks368a0d52012-03-15 21:13:02 +00001289 updateStackPiecesWithMessage(p, CallStack);
1290
Ted Kremenek8966bc12009-05-06 21:39:49 +00001291 if (const Stmt *S = Loc.asStmt())
Mike Stump1eb44332009-09-09 15:08:12 +00001292 EB.addExtendedContext(PDB.getEnclosingStmtLocation(S).asStmt());
Ted Kremenek8966bc12009-05-06 21:39:49 +00001293 }
Mike Stump1eb44332009-09-09 15:08:12 +00001294 }
Ted Kremenek14856d72009-04-06 23:06:54 +00001295 }
1296}
1297
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +00001298//===----------------------------------------------------------------------===//
Ted Kremenekcf118d42009-02-04 23:49:09 +00001299// Methods for BugType and subclasses.
1300//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001301BugType::~BugType() { }
1302
Ted Kremenekcf118d42009-02-04 23:49:09 +00001303void BugType::FlushReports(BugReporter &BR) {}
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001304
David Blaikie99ba9e32011-12-20 02:48:34 +00001305void BuiltinBug::anchor() {}
1306
Ted Kremenekcf118d42009-02-04 23:49:09 +00001307//===----------------------------------------------------------------------===//
1308// Methods for BugReport and subclasses.
1309//===----------------------------------------------------------------------===//
Anna Zakse172e8b2011-08-17 23:00:25 +00001310
David Blaikie99ba9e32011-12-20 02:48:34 +00001311void BugReport::NodeResolver::anchor() {}
1312
Anna Zaks8e6431a2011-08-18 22:37:56 +00001313void BugReport::addVisitor(BugReporterVisitor* visitor) {
1314 if (!visitor)
1315 return;
1316
1317 llvm::FoldingSetNodeID ID;
1318 visitor->Profile(ID);
1319 void *InsertPos;
1320
1321 if (CallbacksSet.FindNodeOrInsertPos(ID, InsertPos)) {
1322 delete visitor;
1323 return;
1324 }
1325
1326 CallbacksSet.InsertNode(visitor, InsertPos);
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001327 Callbacks.push_back(visitor);
1328 ++ConfigurationChangeToken;
Anna Zaks8e6431a2011-08-18 22:37:56 +00001329}
1330
1331BugReport::~BugReport() {
1332 for (visitor_iterator I = visitor_begin(), E = visitor_end(); I != E; ++I) {
Anna Zaksdc757b02011-08-19 23:21:56 +00001333 delete *I;
Anna Zaks8e6431a2011-08-18 22:37:56 +00001334 }
1335}
Anna Zakse172e8b2011-08-17 23:00:25 +00001336
Ted Kremenek07189522012-04-04 18:11:35 +00001337const Decl *BugReport::getDeclWithIssue() const {
1338 if (DeclWithIssue)
1339 return DeclWithIssue;
1340
1341 const ExplodedNode *N = getErrorNode();
1342 if (!N)
1343 return 0;
1344
1345 const LocationContext *LC = N->getLocationContext();
1346 return LC->getCurrentStackFrame()->getDecl();
1347}
1348
Anna Zakse172e8b2011-08-17 23:00:25 +00001349void BugReport::Profile(llvm::FoldingSetNodeID& hash) const {
1350 hash.AddPointer(&BT);
Anna Zakse172e8b2011-08-17 23:00:25 +00001351 hash.AddString(Description);
Anna Zaksca8e36e2012-02-23 21:38:21 +00001352 if (UniqueingLocation.isValid()) {
1353 UniqueingLocation.Profile(hash);
1354 } else if (Location.isValid()) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001355 Location.Profile(hash);
1356 } else {
1357 assert(ErrorNode);
1358 hash.AddPointer(GetCurrentOrPreviousStmt(ErrorNode));
1359 }
Anna Zakse172e8b2011-08-17 23:00:25 +00001360
1361 for (SmallVectorImpl<SourceRange>::const_iterator I =
1362 Ranges.begin(), E = Ranges.end(); I != E; ++I) {
1363 const SourceRange range = *I;
1364 if (!range.isValid())
1365 continue;
1366 hash.AddInteger(range.getBegin().getRawEncoding());
1367 hash.AddInteger(range.getEnd().getRawEncoding());
1368 }
1369}
Ted Kremenekcf118d42009-02-04 23:49:09 +00001370
Ted Kremenek76aadc32012-03-09 01:13:14 +00001371void BugReport::markInteresting(SymbolRef sym) {
1372 if (!sym)
1373 return;
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001374
1375 // If the symbol wasn't already in our set, note a configuration change.
1376 if (interestingSymbols.insert(sym).second)
1377 ++ConfigurationChangeToken;
Jordy Rose8ec588e2012-03-15 22:45:29 +00001378
1379 if (const SymbolMetadata *meta = dyn_cast<SymbolMetadata>(sym))
1380 interestingRegions.insert(meta->getRegion());
Ted Kremenek76aadc32012-03-09 01:13:14 +00001381}
1382
1383void BugReport::markInteresting(const MemRegion *R) {
1384 if (!R)
1385 return;
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001386
1387 // If the base region wasn't already in our set, note a configuration change.
Ted Kremenek76aadc32012-03-09 01:13:14 +00001388 R = R->getBaseRegion();
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001389 if (interestingRegions.insert(R).second)
1390 ++ConfigurationChangeToken;
Jordy Rose8ec588e2012-03-15 22:45:29 +00001391
Ted Kremenek76aadc32012-03-09 01:13:14 +00001392 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R))
1393 interestingSymbols.insert(SR->getSymbol());
1394}
1395
1396void BugReport::markInteresting(SVal V) {
1397 markInteresting(V.getAsRegion());
1398 markInteresting(V.getAsSymbol());
1399}
1400
1401bool BugReport::isInteresting(SVal V) const {
1402 return isInteresting(V.getAsRegion()) || isInteresting(V.getAsSymbol());
1403}
1404
1405bool BugReport::isInteresting(SymbolRef sym) const {
1406 if (!sym)
1407 return false;
Jordy Rose8ec588e2012-03-15 22:45:29 +00001408 // We don't currently consider metadata symbols to be interesting
1409 // even if we know their region is interesting. Is that correct behavior?
Ted Kremenek76aadc32012-03-09 01:13:14 +00001410 return interestingSymbols.count(sym);
1411}
1412
1413bool BugReport::isInteresting(const MemRegion *R) const {
1414 if (!R)
1415 return false;
1416 R = R->getBaseRegion();
1417 bool b = interestingRegions.count(R);
1418 if (b)
1419 return true;
1420 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(R))
1421 return interestingSymbols.count(SR->getSymbol());
1422 return false;
1423}
1424
1425
Ted Kremenek9c378f72011-08-12 23:37:29 +00001426const Stmt *BugReport::getStmt() const {
Anna Zakse172e8b2011-08-17 23:00:25 +00001427 if (!ErrorNode)
1428 return 0;
1429
Tom Care212f6d32010-09-16 03:50:38 +00001430 ProgramPoint ProgP = ErrorNode->getLocation();
Ted Kremenek5f85e172009-07-22 22:35:28 +00001431 const Stmt *S = NULL;
Mike Stump1eb44332009-09-09 15:08:12 +00001432
Ted Kremenek9c378f72011-08-12 23:37:29 +00001433 if (BlockEntrance *BE = dyn_cast<BlockEntrance>(&ProgP)) {
Zhongxing Xufafd3832009-08-20 01:23:34 +00001434 CFGBlock &Exit = ProgP.getLocationContext()->getCFG()->getExit();
Zhongxing Xu50d5bc42009-08-18 08:46:04 +00001435 if (BE->getBlock() == &Exit)
Tom Care212f6d32010-09-16 03:50:38 +00001436 S = GetPreviousStmt(ErrorNode);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001437 }
Ted Kremenek5f85e172009-07-22 22:35:28 +00001438 if (!S)
Mike Stump1eb44332009-09-09 15:08:12 +00001439 S = GetStmt(ProgP);
1440
1441 return S;
Ted Kremenekbb77e9b2008-05-01 22:50:36 +00001442}
1443
Argyrios Kyrtzidis640ccf02010-12-04 01:12:15 +00001444std::pair<BugReport::ranges_iterator, BugReport::ranges_iterator>
Anna Zakse172e8b2011-08-17 23:00:25 +00001445BugReport::getRanges() {
1446 // If no custom ranges, add the range of the statement corresponding to
1447 // the error node.
1448 if (Ranges.empty()) {
1449 if (const Expr *E = dyn_cast_or_null<Expr>(getStmt()))
1450 addRange(E->getSourceRange());
1451 else
1452 return std::make_pair(ranges_iterator(), ranges_iterator());
1453 }
1454
Anna Zaks14924262011-08-24 20:31:06 +00001455 // User-specified absence of range info.
1456 if (Ranges.size() == 1 && !Ranges.begin()->isValid())
1457 return std::make_pair(ranges_iterator(), ranges_iterator());
1458
Anna Zakse172e8b2011-08-17 23:00:25 +00001459 return std::make_pair(Ranges.begin(), Ranges.end());
Ted Kremenekf1ae7052008-04-03 17:57:38 +00001460}
1461
Anna Zaks590dd8e2011-09-20 21:38:35 +00001462PathDiagnosticLocation BugReport::getLocation(const SourceManager &SM) const {
Anna Zaksb7530a42011-08-17 23:21:23 +00001463 if (ErrorNode) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001464 assert(!Location.isValid() &&
Anna Zaksb7530a42011-08-17 23:21:23 +00001465 "Either Location or ErrorNode should be specified but not both.");
1466
Ted Kremenek9c378f72011-08-12 23:37:29 +00001467 if (const Stmt *S = GetCurrentOrPreviousStmt(ErrorNode)) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00001468 const LocationContext *LC = ErrorNode->getLocationContext();
1469
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001470 // For member expressions, return the location of the '.' or '->'.
Ted Kremenek5b9bd212009-09-11 22:07:28 +00001471 if (const MemberExpr *ME = dyn_cast<MemberExpr>(S))
Anna Zaks590dd8e2011-09-20 21:38:35 +00001472 return PathDiagnosticLocation::createMemberLoc(ME, SM);
Ted Kremenek5b9bd212009-09-11 22:07:28 +00001473 // For binary operators, return the location of the operator.
1474 if (const BinaryOperator *B = dyn_cast<BinaryOperator>(S))
Anna Zaks590dd8e2011-09-20 21:38:35 +00001475 return PathDiagnosticLocation::createOperatorLoc(B, SM);
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001476
Anna Zaks590dd8e2011-09-20 21:38:35 +00001477 return PathDiagnosticLocation::createBegin(S, SM, LC);
Ted Kremenek9b5e5052009-02-27 20:05:10 +00001478 }
Anna Zaksb7530a42011-08-17 23:21:23 +00001479 } else {
1480 assert(Location.isValid());
1481 return Location;
1482 }
1483
Anna Zaks590dd8e2011-09-20 21:38:35 +00001484 return PathDiagnosticLocation();
Ted Kremenekd2f642b2008-04-14 17:39:48 +00001485}
1486
Ted Kremenekcf118d42009-02-04 23:49:09 +00001487//===----------------------------------------------------------------------===//
1488// Methods for BugReporter and subclasses.
1489//===----------------------------------------------------------------------===//
1490
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001491BugReportEquivClass::~BugReportEquivClass() { }
Zhongxing Xua2f4ec02009-09-05 06:06:49 +00001492GRBugReporter::~GRBugReporter() { }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001493BugReporterData::~BugReporterData() {}
1494
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001495ExplodedGraph &GRBugReporter::getGraph() { return Eng.getGraph(); }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001496
Ted Kremenek18c66fd2011-08-15 22:09:50 +00001497ProgramStateManager&
Ted Kremenekcf118d42009-02-04 23:49:09 +00001498GRBugReporter::getStateManager() { return Eng.getStateManager(); }
1499
Anna Zaks3b030a22011-08-19 01:57:09 +00001500BugReporter::~BugReporter() {
1501 FlushReports();
1502
1503 // Free the bug reports we are tracking.
1504 typedef std::vector<BugReportEquivClass *> ContTy;
1505 for (ContTy::iterator I = EQClassesVector.begin(), E = EQClassesVector.end();
1506 I != E; ++I) {
1507 delete *I;
1508 }
1509}
Ted Kremenekcf118d42009-02-04 23:49:09 +00001510
1511void BugReporter::FlushReports() {
1512 if (BugTypes.isEmpty())
1513 return;
1514
1515 // First flush the warnings for each BugType. This may end up creating new
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001516 // warnings and new BugTypes.
1517 // FIXME: Only NSErrorChecker needs BugType's FlushReports.
1518 // Turn NSErrorChecker into a proper checker and remove this.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001519 SmallVector<const BugType*, 16> bugTypes;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001520 for (BugTypesTy::iterator I=BugTypes.begin(), E=BugTypes.end(); I!=E; ++I)
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001521 bugTypes.push_back(*I);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001522 for (SmallVector<const BugType*, 16>::iterator
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001523 I = bugTypes.begin(), E = bugTypes.end(); I != E; ++I)
Ted Kremenekcf118d42009-02-04 23:49:09 +00001524 const_cast<BugType*>(*I)->FlushReports(*this);
1525
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001526 typedef llvm::FoldingSet<BugReportEquivClass> SetTy;
1527 for (SetTy::iterator EI=EQClasses.begin(), EE=EQClasses.end(); EI!=EE;++EI){
1528 BugReportEquivClass& EQ = *EI;
1529 FlushReport(EQ);
Ted Kremenek94826a72008-04-03 04:59:14 +00001530 }
Ted Kremenekcf118d42009-02-04 23:49:09 +00001531
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001532 // BugReporter owns and deletes only BugTypes created implicitly through
1533 // EmitBasicReport.
1534 // FIXME: There are leaks from checkers that assume that the BugTypes they
1535 // create will be destroyed by the BugReporter.
1536 for (llvm::StringMap<BugType*>::iterator
1537 I = StrBugTypes.begin(), E = StrBugTypes.end(); I != E; ++I)
1538 delete I->second;
1539
Ted Kremenekcf118d42009-02-04 23:49:09 +00001540 // Remove all references to the BugType objects.
Ted Kremenek3baf6722010-11-24 00:54:37 +00001541 BugTypes = F.getEmptySet();
Ted Kremenekcf118d42009-02-04 23:49:09 +00001542}
1543
1544//===----------------------------------------------------------------------===//
1545// PathDiagnostics generation.
1546//===----------------------------------------------------------------------===//
1547
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001548static std::pair<std::pair<ExplodedGraph*, NodeBackMap*>,
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001549 std::pair<ExplodedNode*, unsigned> >
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001550MakeReportGraph(const ExplodedGraph* G,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001551 SmallVectorImpl<const ExplodedNode*> &nodes) {
Mike Stump1eb44332009-09-09 15:08:12 +00001552
Ted Kremenekcf118d42009-02-04 23:49:09 +00001553 // Create the trimmed graph. It will contain the shortest paths from the
Mike Stump1eb44332009-09-09 15:08:12 +00001554 // error nodes to the root. In the new graph we should only have one
Ted Kremenekcf118d42009-02-04 23:49:09 +00001555 // error node unless there are two or more error nodes with the same minimum
1556 // path length.
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001557 ExplodedGraph* GTrim;
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001558 InterExplodedGraphMap* NMap;
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001559
1560 llvm::DenseMap<const void*, const void*> InverseMap;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001561 llvm::tie(GTrim, NMap) = G->Trim(nodes.data(), nodes.data() + nodes.size(),
1562 &InverseMap);
Mike Stump1eb44332009-09-09 15:08:12 +00001563
Ted Kremenekcf118d42009-02-04 23:49:09 +00001564 // Create owning pointers for GTrim and NMap just to ensure that they are
1565 // released when this function exists.
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00001566 OwningPtr<ExplodedGraph> AutoReleaseGTrim(GTrim);
1567 OwningPtr<InterExplodedGraphMap> AutoReleaseNMap(NMap);
Mike Stump1eb44332009-09-09 15:08:12 +00001568
Ted Kremenekcf118d42009-02-04 23:49:09 +00001569 // Find the (first) error node in the trimmed graph. We just need to consult
1570 // the node map (NMap) which maps from nodes in the original graph to nodes
1571 // in the new graph.
Ted Kremenek938332c2009-05-16 01:11:58 +00001572
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001573 std::queue<const ExplodedNode*> WS;
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001574 typedef llvm::DenseMap<const ExplodedNode*, unsigned> IndexMapTy;
Ted Kremenek938332c2009-05-16 01:11:58 +00001575 IndexMapTy IndexMap;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001576
Ted Kremenek40406fe2010-12-03 06:52:30 +00001577 for (unsigned nodeIndex = 0 ; nodeIndex < nodes.size(); ++nodeIndex) {
1578 const ExplodedNode *originalNode = nodes[nodeIndex];
1579 if (const ExplodedNode *N = NMap->getMappedNode(originalNode)) {
Ted Kremenek938332c2009-05-16 01:11:58 +00001580 WS.push(N);
Ted Kremenek40406fe2010-12-03 06:52:30 +00001581 IndexMap[originalNode] = nodeIndex;
Ted Kremenekcf118d42009-02-04 23:49:09 +00001582 }
Ted Kremenek40406fe2010-12-03 06:52:30 +00001583 }
Mike Stump1eb44332009-09-09 15:08:12 +00001584
Ted Kremenek938332c2009-05-16 01:11:58 +00001585 assert(!WS.empty() && "No error node found in the trimmed graph.");
Ted Kremenekcf118d42009-02-04 23:49:09 +00001586
1587 // Create a new (third!) graph with a single path. This is the graph
1588 // that will be returned to the caller.
Zhongxing Xuc77a5512010-07-01 07:10:59 +00001589 ExplodedGraph *GNew = new ExplodedGraph();
Mike Stump1eb44332009-09-09 15:08:12 +00001590
Ted Kremenek10aa5542009-03-12 23:41:59 +00001591 // Sometimes the trimmed graph can contain a cycle. Perform a reverse BFS
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001592 // to the root node, and then construct a new graph that contains only
1593 // a single path.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001594 llvm::DenseMap<const void*,unsigned> Visited;
Mike Stump1eb44332009-09-09 15:08:12 +00001595
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001596 unsigned cnt = 0;
Ted Kremenek9c378f72011-08-12 23:37:29 +00001597 const ExplodedNode *Root = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001598
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001599 while (!WS.empty()) {
Ted Kremenek9c378f72011-08-12 23:37:29 +00001600 const ExplodedNode *Node = WS.front();
Ted Kremenek10aa5542009-03-12 23:41:59 +00001601 WS.pop();
Mike Stump1eb44332009-09-09 15:08:12 +00001602
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001603 if (Visited.find(Node) != Visited.end())
1604 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001605
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001606 Visited[Node] = cnt++;
Mike Stump1eb44332009-09-09 15:08:12 +00001607
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001608 if (Node->pred_empty()) {
1609 Root = Node;
1610 break;
1611 }
Mike Stump1eb44332009-09-09 15:08:12 +00001612
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001613 for (ExplodedNode::const_pred_iterator I=Node->pred_begin(),
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001614 E=Node->pred_end(); I!=E; ++I)
Ted Kremenek10aa5542009-03-12 23:41:59 +00001615 WS.push(*I);
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001616 }
Mike Stump1eb44332009-09-09 15:08:12 +00001617
Ted Kremenek938332c2009-05-16 01:11:58 +00001618 assert(Root);
Mike Stump1eb44332009-09-09 15:08:12 +00001619
Ted Kremenek10aa5542009-03-12 23:41:59 +00001620 // Now walk from the root down the BFS path, always taking the successor
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001621 // with the lowest number.
Mike Stump1eb44332009-09-09 15:08:12 +00001622 ExplodedNode *Last = 0, *First = 0;
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001623 NodeBackMap *BM = new NodeBackMap();
Ted Kremenek938332c2009-05-16 01:11:58 +00001624 unsigned NodeIndex = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001625
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001626 for ( const ExplodedNode *N = Root ;;) {
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001627 // Lookup the number associated with the current node.
Ted Kremenek3148eb42009-01-24 00:55:43 +00001628 llvm::DenseMap<const void*,unsigned>::iterator I = Visited.find(N);
Ted Kremenek938332c2009-05-16 01:11:58 +00001629 assert(I != Visited.end());
Mike Stump1eb44332009-09-09 15:08:12 +00001630
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001631 // Create the equivalent node in the new graph with the same state
1632 // and location.
Ted Kremenek9c378f72011-08-12 23:37:29 +00001633 ExplodedNode *NewN = GNew->getNode(N->getLocation(), N->getState());
Mike Stump1eb44332009-09-09 15:08:12 +00001634
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001635 // Store the mapping to the original node.
1636 llvm::DenseMap<const void*, const void*>::iterator IMitr=InverseMap.find(N);
1637 assert(IMitr != InverseMap.end() && "No mapping to original node.");
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001638 (*BM)[NewN] = (const ExplodedNode*) IMitr->second;
Mike Stump1eb44332009-09-09 15:08:12 +00001639
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001640 // Link up the new node with the previous node.
1641 if (Last)
Ted Kremenek5fe4d9d2009-10-07 00:42:52 +00001642 NewN->addPredecessor(Last, *GNew);
Mike Stump1eb44332009-09-09 15:08:12 +00001643
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001644 Last = NewN;
Mike Stump1eb44332009-09-09 15:08:12 +00001645
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001646 // Are we at the final node?
Ted Kremenek938332c2009-05-16 01:11:58 +00001647 IndexMapTy::iterator IMI =
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001648 IndexMap.find((const ExplodedNode*)(IMitr->second));
Ted Kremenek938332c2009-05-16 01:11:58 +00001649 if (IMI != IndexMap.end()) {
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001650 First = NewN;
Ted Kremenek938332c2009-05-16 01:11:58 +00001651 NodeIndex = IMI->second;
Ted Kremenekc1da4412008-06-17 19:14:06 +00001652 break;
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001653 }
Mike Stump1eb44332009-09-09 15:08:12 +00001654
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001655 // Find the next successor node. We choose the node that is marked
1656 // with the lowest DFS number.
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001657 ExplodedNode::const_succ_iterator SI = N->succ_begin();
1658 ExplodedNode::const_succ_iterator SE = N->succ_end();
Ted Kremenekc1da4412008-06-17 19:14:06 +00001659 N = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001660
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001661 for (unsigned MinVal = 0; SI != SE; ++SI) {
Mike Stump1eb44332009-09-09 15:08:12 +00001662
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001663 I = Visited.find(*SI);
Mike Stump1eb44332009-09-09 15:08:12 +00001664
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001665 if (I == Visited.end())
1666 continue;
Mike Stump1eb44332009-09-09 15:08:12 +00001667
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001668 if (!N || I->second < MinVal) {
1669 N = *SI;
1670 MinVal = I->second;
Ted Kremenekc1da4412008-06-17 19:14:06 +00001671 }
Ted Kremenek331b0ac2008-06-18 05:34:07 +00001672 }
Mike Stump1eb44332009-09-09 15:08:12 +00001673
Ted Kremenek938332c2009-05-16 01:11:58 +00001674 assert(N);
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001675 }
Mike Stump1eb44332009-09-09 15:08:12 +00001676
Ted Kremenek938332c2009-05-16 01:11:58 +00001677 assert(First);
1678
Ted Kremenekfe9e5432009-02-18 03:48:14 +00001679 return std::make_pair(std::make_pair(GNew, BM),
1680 std::make_pair(First, NodeIndex));
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001681}
1682
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001683/// CompactPathDiagnostic - This function postprocesses a PathDiagnostic object
1684/// and collapses PathDiagosticPieces that are expanded by macros.
Ted Kremenek77d09442012-03-02 01:27:31 +00001685static void CompactPathDiagnostic(PathPieces &path, const SourceManager& SM) {
Ted Kremenek2042fc12012-02-24 06:00:00 +00001686 typedef std::vector<std::pair<IntrusiveRefCntPtr<PathDiagnosticMacroPiece>,
1687 SourceLocation> > MacroStackTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001688
Dylan Noblesmithc93dc782012-02-20 14:00:23 +00001689 typedef std::vector<IntrusiveRefCntPtr<PathDiagnosticPiece> >
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001690 PiecesTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001691
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001692 MacroStackTy MacroStack;
1693 PiecesTy Pieces;
Mike Stump1eb44332009-09-09 15:08:12 +00001694
Ted Kremenek77d09442012-03-02 01:27:31 +00001695 for (PathPieces::const_iterator I = path.begin(), E = path.end();
Ted Kremenek2042fc12012-02-24 06:00:00 +00001696 I!=E; ++I) {
Ted Kremenek77d09442012-03-02 01:27:31 +00001697
1698 PathDiagnosticPiece *piece = I->getPtr();
1699
1700 // Recursively compact calls.
1701 if (PathDiagnosticCallPiece *call=dyn_cast<PathDiagnosticCallPiece>(piece)){
1702 CompactPathDiagnostic(call->path, SM);
1703 }
1704
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001705 // Get the location of the PathDiagnosticPiece.
Ted Kremenek77d09442012-03-02 01:27:31 +00001706 const FullSourceLoc Loc = piece->getLocation().asLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001707
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001708 // Determine the instantiation location, which is the location we group
1709 // related PathDiagnosticPieces.
Mike Stump1eb44332009-09-09 15:08:12 +00001710 SourceLocation InstantiationLoc = Loc.isMacroID() ?
Chandler Carruth40278532011-07-25 16:49:02 +00001711 SM.getExpansionLoc(Loc) :
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001712 SourceLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001713
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001714 if (Loc.isFileID()) {
1715 MacroStack.clear();
Ted Kremenek77d09442012-03-02 01:27:31 +00001716 Pieces.push_back(piece);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001717 continue;
1718 }
1719
1720 assert(Loc.isMacroID());
Mike Stump1eb44332009-09-09 15:08:12 +00001721
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001722 // Is the PathDiagnosticPiece within the same macro group?
1723 if (!MacroStack.empty() && InstantiationLoc == MacroStack.back().second) {
Ted Kremenek77d09442012-03-02 01:27:31 +00001724 MacroStack.back().first->subPieces.push_back(piece);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001725 continue;
1726 }
1727
1728 // We aren't in the same group. Are we descending into a new macro
1729 // or are part of an old one?
Dylan Noblesmithc93dc782012-02-20 14:00:23 +00001730 IntrusiveRefCntPtr<PathDiagnosticMacroPiece> MacroGroup;
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001731
1732 SourceLocation ParentInstantiationLoc = InstantiationLoc.isMacroID() ?
Chandler Carruth40278532011-07-25 16:49:02 +00001733 SM.getExpansionLoc(Loc) :
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001734 SourceLocation();
Mike Stump1eb44332009-09-09 15:08:12 +00001735
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001736 // Walk the entire macro stack.
1737 while (!MacroStack.empty()) {
1738 if (InstantiationLoc == MacroStack.back().second) {
1739 MacroGroup = MacroStack.back().first;
1740 break;
1741 }
Mike Stump1eb44332009-09-09 15:08:12 +00001742
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001743 if (ParentInstantiationLoc == MacroStack.back().second) {
1744 MacroGroup = MacroStack.back().first;
1745 break;
1746 }
Mike Stump1eb44332009-09-09 15:08:12 +00001747
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001748 MacroStack.pop_back();
1749 }
Mike Stump1eb44332009-09-09 15:08:12 +00001750
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001751 if (!MacroGroup || ParentInstantiationLoc == MacroStack.back().second) {
1752 // Create a new macro group and add it to the stack.
Anna Zaks590dd8e2011-09-20 21:38:35 +00001753 PathDiagnosticMacroPiece *NewGroup =
1754 new PathDiagnosticMacroPiece(
Ted Kremenek77d09442012-03-02 01:27:31 +00001755 PathDiagnosticLocation::createSingleLocation(piece->getLocation()));
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001756
1757 if (MacroGroup)
Ted Kremenek802e0242012-02-08 04:32:34 +00001758 MacroGroup->subPieces.push_back(NewGroup);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001759 else {
1760 assert(InstantiationLoc.isFileID());
1761 Pieces.push_back(NewGroup);
1762 }
Mike Stump1eb44332009-09-09 15:08:12 +00001763
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001764 MacroGroup = NewGroup;
1765 MacroStack.push_back(std::make_pair(MacroGroup, InstantiationLoc));
1766 }
1767
1768 // Finally, add the PathDiagnosticPiece to the group.
Ted Kremenek77d09442012-03-02 01:27:31 +00001769 MacroGroup->subPieces.push_back(piece);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001770 }
Mike Stump1eb44332009-09-09 15:08:12 +00001771
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001772 // Now take the pieces and construct a new PathDiagnostic.
Ted Kremenek77d09442012-03-02 01:27:31 +00001773 path.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001774
Ted Kremenek77d09442012-03-02 01:27:31 +00001775 for (PiecesTy::iterator I=Pieces.begin(), E=Pieces.end(); I!=E; ++I)
1776 path.push_back(*I);
Ted Kremenek0e5c8d42009-03-10 05:16:17 +00001777}
1778
Ted Kremenek7dc86642009-03-31 20:22:36 +00001779void GRBugReporter::GeneratePathDiagnostic(PathDiagnostic& PD,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001780 SmallVectorImpl<BugReport *> &bugReports) {
Mike Stump1eb44332009-09-09 15:08:12 +00001781
Ted Kremenek40406fe2010-12-03 06:52:30 +00001782 assert(!bugReports.empty());
Chris Lattner5f9e2722011-07-23 10:55:15 +00001783 SmallVector<const ExplodedNode *, 10> errorNodes;
1784 for (SmallVectorImpl<BugReport*>::iterator I = bugReports.begin(),
Ted Kremenek40406fe2010-12-03 06:52:30 +00001785 E = bugReports.end(); I != E; ++I) {
1786 errorNodes.push_back((*I)->getErrorNode());
1787 }
Mike Stump1eb44332009-09-09 15:08:12 +00001788
Ted Kremeneka43a1eb2008-04-23 23:02:12 +00001789 // Construct a new graph that contains only a single path from the error
Mike Stump1eb44332009-09-09 15:08:12 +00001790 // node to a root.
Zhongxing Xu38b02b92009-08-06 06:28:40 +00001791 const std::pair<std::pair<ExplodedGraph*, NodeBackMap*>,
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001792 std::pair<ExplodedNode*, unsigned> >&
Ted Kremenek40406fe2010-12-03 06:52:30 +00001793 GPair = MakeReportGraph(&getGraph(), errorNodes);
Mike Stump1eb44332009-09-09 15:08:12 +00001794
Ted Kremenekcf118d42009-02-04 23:49:09 +00001795 // Find the BugReport with the original location.
Ted Kremenek40406fe2010-12-03 06:52:30 +00001796 assert(GPair.second.second < bugReports.size());
1797 BugReport *R = bugReports[GPair.second.second];
Ted Kremenekcf118d42009-02-04 23:49:09 +00001798 assert(R && "No original report found for sliced graph.");
Mike Stump1eb44332009-09-09 15:08:12 +00001799
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00001800 OwningPtr<ExplodedGraph> ReportGraph(GPair.first.first);
1801 OwningPtr<NodeBackMap> BackMap(GPair.first.second);
Zhongxing Xuc5619d92009-08-06 01:32:16 +00001802 const ExplodedNode *N = GPair.second.first;
Mike Stump1eb44332009-09-09 15:08:12 +00001803
1804 // Start building the path diagnostic...
David Blaikieef3643f2011-09-26 00:51:36 +00001805 PathDiagnosticBuilder PDB(*this, R, BackMap.get(),
1806 getPathDiagnosticConsumer());
Mike Stump1eb44332009-09-09 15:08:12 +00001807
Anna Zaks8e6431a2011-08-18 22:37:56 +00001808 // Register additional node visitors.
Anna Zaks50bbc162011-08-19 22:33:38 +00001809 R->addVisitor(new NilReceiverBRVisitor());
1810 R->addVisitor(new ConditionBRVisitor());
Mike Stump1eb44332009-09-09 15:08:12 +00001811
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001812 BugReport::VisitorList visitors;
1813 unsigned originalReportConfigToken, finalReportConfigToken;
Anna Zaks23f395e2011-08-20 01:27:22 +00001814
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001815 // While generating diagnostics, it's possible the visitors will decide
1816 // new symbols and regions are interesting, or add other visitors based on
1817 // the information they find. If they do, we need to regenerate the path
1818 // based on our new report configuration.
1819 do {
1820 // Get a clean copy of all the visitors.
1821 for (BugReport::visitor_iterator I = R->visitor_begin(),
1822 E = R->visitor_end(); I != E; ++I)
1823 visitors.push_back((*I)->clone());
1824
1825 // Clear out the active path from any previous work.
1826 PD.getActivePath().clear();
1827 originalReportConfigToken = R->getConfigurationChangeToken();
1828
1829 // Generate the very last diagnostic piece - the piece is visible before
1830 // the trace is expanded.
1831 PathDiagnosticPiece *LastPiece = 0;
1832 for (BugReport::visitor_iterator I = visitors.begin(), E = visitors.end();
1833 I != E; ++I) {
1834 if (PathDiagnosticPiece *Piece = (*I)->getEndPath(PDB, N, *R)) {
1835 assert (!LastPiece &&
1836 "There can only be one final piece in a diagnostic.");
1837 LastPiece = Piece;
1838 }
1839 }
1840 if (!LastPiece)
1841 LastPiece = BugReporterVisitor::getDefaultEndPath(PDB, N, *R);
1842 if (LastPiece)
1843 PD.getActivePath().push_back(LastPiece);
1844 else
1845 return;
1846
1847 switch (PDB.getGenerationScheme()) {
David Blaikieef3643f2011-09-26 00:51:36 +00001848 case PathDiagnosticConsumer::Extensive:
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001849 GenerateExtensivePathDiagnostic(PD, PDB, N, visitors);
Ted Kremenek5fb5dfb2009-04-01 06:13:56 +00001850 break;
David Blaikieef3643f2011-09-26 00:51:36 +00001851 case PathDiagnosticConsumer::Minimal:
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001852 GenerateMinimalPathDiagnostic(PD, PDB, N, visitors);
Ted Kremenek7dc86642009-03-31 20:22:36 +00001853 break;
Jordy Rose3bc75ca2012-03-24 03:03:29 +00001854 }
1855
1856 // Clean up the visitors we used.
1857 llvm::DeleteContainerPointers(visitors);
1858
1859 // Did anything change while generating this path?
1860 finalReportConfigToken = R->getConfigurationChangeToken();
1861 } while(finalReportConfigToken != originalReportConfigToken);
1862
Ted Kremenekc89f4b02012-02-28 23:06:21 +00001863 // Finally, prune the diagnostic path of uninteresting stuff.
1864 bool hasSomethingInteresting = RemoveUneededCalls(PD.getMutablePieces());
1865 assert(hasSomethingInteresting);
1866 (void) hasSomethingInteresting;
Ted Kremenek7dc86642009-03-31 20:22:36 +00001867}
1868
Ted Kremenekcf118d42009-02-04 23:49:09 +00001869void BugReporter::Register(BugType *BT) {
Ted Kremenek3baf6722010-11-24 00:54:37 +00001870 BugTypes = F.add(BugTypes, BT);
Ted Kremenek76d90c82008-05-16 18:33:14 +00001871}
1872
Mike Stump1eb44332009-09-09 15:08:12 +00001873void BugReporter::EmitReport(BugReport* R) {
Ted Kremenekcf118d42009-02-04 23:49:09 +00001874 // Compute the bug report's hash to determine its equivalence class.
1875 llvm::FoldingSetNodeID ID;
1876 R->Profile(ID);
Mike Stump1eb44332009-09-09 15:08:12 +00001877
1878 // Lookup the equivance class. If there isn't one, create it.
Ted Kremenekcf118d42009-02-04 23:49:09 +00001879 BugType& BT = R->getBugType();
1880 Register(&BT);
1881 void *InsertPos;
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001882 BugReportEquivClass* EQ = EQClasses.FindNodeOrInsertPos(ID, InsertPos);
Mike Stump1eb44332009-09-09 15:08:12 +00001883
Ted Kremenekcf118d42009-02-04 23:49:09 +00001884 if (!EQ) {
1885 EQ = new BugReportEquivClass(R);
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00001886 EQClasses.InsertNode(EQ, InsertPos);
Anna Zaks3b030a22011-08-19 01:57:09 +00001887 EQClassesVector.push_back(EQ);
Ted Kremenekcf118d42009-02-04 23:49:09 +00001888 }
1889 else
1890 EQ->AddReport(R);
Ted Kremenek61f3e052008-04-03 04:42:52 +00001891}
1892
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001893
1894//===----------------------------------------------------------------------===//
1895// Emitting reports in equivalence classes.
1896//===----------------------------------------------------------------------===//
1897
1898namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +00001899struct FRIEC_WLItem {
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001900 const ExplodedNode *N;
1901 ExplodedNode::const_succ_iterator I, E;
1902
1903 FRIEC_WLItem(const ExplodedNode *n)
1904 : N(n), I(N->succ_begin()), E(N->succ_end()) {}
1905};
1906}
1907
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001908static BugReport *
1909FindReportInEquivalenceClass(BugReportEquivClass& EQ,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001910 SmallVectorImpl<BugReport*> &bugReports) {
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001911
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001912 BugReportEquivClass::iterator I = EQ.begin(), E = EQ.end();
1913 assert(I != E);
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001914 BugType& BT = I->getBugType();
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001915
Ted Kremenek40406fe2010-12-03 06:52:30 +00001916 // If we don't need to suppress any of the nodes because they are
1917 // post-dominated by a sink, simply add all the nodes in the equivalence class
1918 // to 'Nodes'. Any of the reports will serve as a "representative" report.
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001919 if (!BT.isSuppressOnSink()) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001920 BugReport *R = I;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001921 for (BugReportEquivClass::iterator I=EQ.begin(), E=EQ.end(); I!=E; ++I) {
Ted Kremenek9c378f72011-08-12 23:37:29 +00001922 const ExplodedNode *N = I->getErrorNode();
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001923 if (N) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001924 R = I;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001925 bugReports.push_back(R);
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001926 }
1927 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001928 return R;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001929 }
1930
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001931 // For bug reports that should be suppressed when all paths are post-dominated
1932 // by a sink node, iterate through the reports in the equivalence class
1933 // until we find one that isn't post-dominated (if one exists). We use a
1934 // DFS traversal of the ExplodedGraph to find a non-sink node. We could write
1935 // this as a recursive function, but we don't want to risk blowing out the
1936 // stack for very long paths.
Ted Kremenek40406fe2010-12-03 06:52:30 +00001937 BugReport *exampleReport = 0;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001938
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001939 for (; I != E; ++I) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001940 const ExplodedNode *errorNode = I->getErrorNode();
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001941
Ted Kremenek40406fe2010-12-03 06:52:30 +00001942 if (!errorNode)
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001943 continue;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001944 if (errorNode->isSink()) {
David Blaikieb219cfc2011-09-23 05:06:16 +00001945 llvm_unreachable(
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001946 "BugType::isSuppressSink() should not be 'true' for sink end nodes");
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001947 }
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001948 // No successors? By definition this nodes isn't post-dominated by a sink.
Ted Kremenek40406fe2010-12-03 06:52:30 +00001949 if (errorNode->succ_empty()) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001950 bugReports.push_back(I);
Ted Kremenek40406fe2010-12-03 06:52:30 +00001951 if (!exampleReport)
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001952 exampleReport = I;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001953 continue;
1954 }
1955
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001956 // At this point we know that 'N' is not a sink and it has at least one
1957 // successor. Use a DFS worklist to find a non-sink end-of-path node.
1958 typedef FRIEC_WLItem WLItem;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001959 typedef SmallVector<WLItem, 10> DFSWorkList;
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001960 llvm::DenseMap<const ExplodedNode *, unsigned> Visited;
1961
1962 DFSWorkList WL;
Ted Kremenek40406fe2010-12-03 06:52:30 +00001963 WL.push_back(errorNode);
1964 Visited[errorNode] = 1;
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001965
1966 while (!WL.empty()) {
1967 WLItem &WI = WL.back();
1968 assert(!WI.N->succ_empty());
1969
1970 for (; WI.I != WI.E; ++WI.I) {
1971 const ExplodedNode *Succ = *WI.I;
1972 // End-of-path node?
1973 if (Succ->succ_empty()) {
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001974 // If we found an end-of-path node that is not a sink.
1975 if (!Succ->isSink()) {
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001976 bugReports.push_back(I);
Ted Kremenek40406fe2010-12-03 06:52:30 +00001977 if (!exampleReport)
Benjamin Kramer4a5f7242012-04-01 19:30:51 +00001978 exampleReport = I;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001979 WL.clear();
1980 break;
1981 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001982 // Found a sink? Continue on to the next successor.
1983 continue;
1984 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001985 // Mark the successor as visited. If it hasn't been explored,
1986 // enqueue it to the DFS worklist.
1987 unsigned &mark = Visited[Succ];
1988 if (!mark) {
1989 mark = 1;
1990 WL.push_back(Succ);
1991 break;
1992 }
1993 }
Ted Kremenek61f52bd2010-09-09 19:05:34 +00001994
1995 // The worklist may have been cleared at this point. First
1996 // check if it is empty before checking the last item.
1997 if (!WL.empty() && &WL.back() == &WI)
Ted Kremenek06c9cb42009-09-14 22:01:32 +00001998 WL.pop_back();
1999 }
2000 }
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002001
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002002 // ExampleReport will be NULL if all the nodes in the equivalence class
2003 // were post-dominated by sinks.
Ted Kremenek40406fe2010-12-03 06:52:30 +00002004 return exampleReport;
Ted Kremenek61f52bd2010-09-09 19:05:34 +00002005}
Ted Kremeneke0a58072009-09-18 22:37:37 +00002006
2007//===----------------------------------------------------------------------===//
2008// DiagnosticCache. This is a hack to cache analyzer diagnostics. It
2009// uses global state, which eventually should go elsewhere.
2010//===----------------------------------------------------------------------===//
2011namespace {
Kovarththanan Rajaratnamba5fb5a2009-11-28 06:07:30 +00002012class DiagCacheItem : public llvm::FoldingSetNode {
Ted Kremeneke0a58072009-09-18 22:37:37 +00002013 llvm::FoldingSetNodeID ID;
2014public:
2015 DiagCacheItem(BugReport *R, PathDiagnostic *PD) {
Anna Zaks4522e2a2011-09-19 23:44:31 +00002016 R->Profile(ID);
2017 PD->Profile(ID);
Ted Kremeneke0a58072009-09-18 22:37:37 +00002018 }
2019
2020 void Profile(llvm::FoldingSetNodeID &id) {
2021 id = ID;
2022 }
2023
2024 llvm::FoldingSetNodeID &getID() { return ID; }
2025};
2026}
2027
2028static bool IsCachedDiagnostic(BugReport *R, PathDiagnostic *PD) {
2029 // FIXME: Eventually this diagnostic cache should reside in something
2030 // like AnalysisManager instead of being a static variable. This is
2031 // really unsafe in the long term.
2032 typedef llvm::FoldingSet<DiagCacheItem> DiagnosticCache;
2033 static DiagnosticCache DC;
2034
2035 void *InsertPos;
2036 DiagCacheItem *Item = new DiagCacheItem(R, PD);
2037
2038 if (DC.FindNodeOrInsertPos(Item->getID(), InsertPos)) {
2039 delete Item;
2040 return true;
2041 }
2042
2043 DC.InsertNode(Item, InsertPos);
2044 return false;
2045}
2046
Ted Kremenekcf118d42009-02-04 23:49:09 +00002047void BugReporter::FlushReport(BugReportEquivClass& EQ) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002048 SmallVector<BugReport*, 10> bugReports;
Ted Kremenek40406fe2010-12-03 06:52:30 +00002049 BugReport *exampleReport = FindReportInEquivalenceClass(EQ, bugReports);
2050 if (!exampleReport)
Ted Kremenek06c9cb42009-09-14 22:01:32 +00002051 return;
2052
David Blaikieef3643f2011-09-26 00:51:36 +00002053 PathDiagnosticConsumer* PD = getPathDiagnosticConsumer();
Mike Stump1eb44332009-09-09 15:08:12 +00002054
Ted Kremenekcf118d42009-02-04 23:49:09 +00002055 // FIXME: Make sure we use the 'R' for the path that was actually used.
Mike Stump1eb44332009-09-09 15:08:12 +00002056 // Probably doesn't make a difference in practice.
Ted Kremenek40406fe2010-12-03 06:52:30 +00002057 BugType& BT = exampleReport->getBugType();
Mike Stump1eb44332009-09-09 15:08:12 +00002058
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00002059 OwningPtr<PathDiagnostic>
Ted Kremenek07189522012-04-04 18:11:35 +00002060 D(new PathDiagnostic(exampleReport->getDeclWithIssue(),
2061 exampleReport->getBugType().getName(),
Ted Kremenekda0e8422009-04-29 22:05:03 +00002062 !PD || PD->useVerboseDescription()
Ted Kremenek40406fe2010-12-03 06:52:30 +00002063 ? exampleReport->getDescription()
2064 : exampleReport->getShortDescription(),
Ted Kremenekd49967f2009-04-29 21:58:13 +00002065 BT.getCategory()));
2066
Ted Kremenek40406fe2010-12-03 06:52:30 +00002067 if (!bugReports.empty())
2068 GeneratePathDiagnostic(*D.get(), bugReports);
Ted Kremeneke0a58072009-09-18 22:37:37 +00002069
Ted Kremenek072192b2008-04-30 23:47:44 +00002070 // Get the meta data.
Anna Zaks7f2531c2011-08-22 20:31:28 +00002071 const BugReport::ExtraTextList &Meta =
2072 exampleReport->getExtraText();
2073 for (BugReport::ExtraTextList::const_iterator i = Meta.begin(),
2074 e = Meta.end(); i != e; ++i) {
2075 D->addMeta(*i);
2076 }
Ted Kremenek75840e12008-04-18 01:56:37 +00002077
Ted Kremenek3148eb42009-01-24 00:55:43 +00002078 // Emit a summary diagnostic to the regular Diagnostics engine.
Argyrios Kyrtzidis640ccf02010-12-04 01:12:15 +00002079 BugReport::ranges_iterator Beg, End;
2080 llvm::tie(Beg, End) = exampleReport->getRanges();
David Blaikied6471f72011-09-25 23:23:43 +00002081 DiagnosticsEngine &Diag = getDiagnostic();
Ted Kremenekc213b482010-01-15 07:56:51 +00002082
Ted Kremenek88fc1812012-04-04 00:55:29 +00002083 if (!IsCachedDiagnostic(exampleReport, D.get())) {
2084 // Search the description for '%', as that will be interpretted as a
2085 // format character by FormatDiagnostics.
2086 StringRef desc = exampleReport->getShortDescription();
2087
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002088 SmallString<512> TmpStr;
Ted Kremenekc213b482010-01-15 07:56:51 +00002089 llvm::raw_svector_ostream Out(TmpStr);
Ted Kremenek88fc1812012-04-04 00:55:29 +00002090 for (StringRef::iterator I=desc.begin(), E=desc.end(); I!=E; ++I) {
Ted Kremenekc213b482010-01-15 07:56:51 +00002091 if (*I == '%')
2092 Out << "%%";
2093 else
2094 Out << *I;
Ted Kremenek88fc1812012-04-04 00:55:29 +00002095 }
Ted Kremenekc213b482010-01-15 07:56:51 +00002096
2097 Out.flush();
Ted Kremenek88fc1812012-04-04 00:55:29 +00002098 unsigned ErrorDiag = Diag.getCustomDiagID(DiagnosticsEngine::Warning, TmpStr);
Ted Kremenek57202072008-07-14 17:40:50 +00002099
Anna Zaks590dd8e2011-09-20 21:38:35 +00002100 DiagnosticBuilder diagBuilder = Diag.Report(
2101 exampleReport->getLocation(getSourceManager()).asLocation(), ErrorDiag);
Argyrios Kyrtzidis640ccf02010-12-04 01:12:15 +00002102 for (BugReport::ranges_iterator I = Beg; I != End; ++I)
Argyrios Kyrtzidisb6b7e7b2010-12-03 00:58:10 +00002103 diagBuilder << *I;
Ted Kremenek2f0e89e2008-04-18 22:56:53 +00002104 }
Ted Kremenek3148eb42009-01-24 00:55:43 +00002105
David Blaikieef3643f2011-09-26 00:51:36 +00002106 // Emit a full diagnostic for the path if we have a PathDiagnosticConsumer.
Ted Kremenek3148eb42009-01-24 00:55:43 +00002107 if (!PD)
2108 return;
Mike Stump1eb44332009-09-09 15:08:12 +00002109
Ted Kremenek802e0242012-02-08 04:32:34 +00002110 if (D->path.empty()) {
Anna Zaks590dd8e2011-09-20 21:38:35 +00002111 PathDiagnosticPiece *piece = new PathDiagnosticEventPiece(
2112 exampleReport->getLocation(getSourceManager()),
2113 exampleReport->getDescription());
Ted Kremenek07189522012-04-04 18:11:35 +00002114 for ( ; Beg != End; ++Beg)
2115 piece->addRange(*Beg);
Ted Kremenek1fbfd5b2009-03-06 23:58:11 +00002116
Ted Kremenek2042fc12012-02-24 06:00:00 +00002117 D->getActivePath().push_back(piece);
Ted Kremenek3148eb42009-01-24 00:55:43 +00002118 }
Mike Stump1eb44332009-09-09 15:08:12 +00002119
Ted Kremenek3148eb42009-01-24 00:55:43 +00002120 PD->HandlePathDiagnostic(D.take());
Ted Kremenek61f3e052008-04-03 04:42:52 +00002121}
Ted Kremenek57202072008-07-14 17:40:50 +00002122
Ted Kremenek07189522012-04-04 18:11:35 +00002123void BugReporter::EmitBasicReport(const Decl *DeclWithIssue,
Ted Kremenek07189522012-04-04 18:11:35 +00002124 StringRef name,
Chris Lattner5f9e2722011-07-23 10:55:15 +00002125 StringRef category,
Anna Zaks590dd8e2011-09-20 21:38:35 +00002126 StringRef str, PathDiagnosticLocation Loc,
Ted Kremenek8c036c72008-09-20 04:23:38 +00002127 SourceRange* RBeg, unsigned NumRanges) {
Mike Stump1eb44332009-09-09 15:08:12 +00002128
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00002129 // 'BT' is owned by BugReporter.
2130 BugType *BT = getBugTypeForName(name, category);
Anna Zaks590dd8e2011-09-20 21:38:35 +00002131 BugReport *R = new BugReport(*BT, str, Loc);
Ted Kremenek07189522012-04-04 18:11:35 +00002132 R->setDeclWithIssue(DeclWithIssue);
Ted Kremenekcf118d42009-02-04 23:49:09 +00002133 for ( ; NumRanges > 0 ; --NumRanges, ++RBeg) R->addRange(*RBeg);
2134 EmitReport(R);
Ted Kremenek57202072008-07-14 17:40:50 +00002135}
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00002136
Chris Lattner5f9e2722011-07-23 10:55:15 +00002137BugType *BugReporter::getBugTypeForName(StringRef name,
2138 StringRef category) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002139 SmallString<136> fullDesc;
Argyrios Kyrtzidis404fc3a2011-02-23 00:16:01 +00002140 llvm::raw_svector_ostream(fullDesc) << name << ":" << category;
2141 llvm::StringMapEntry<BugType *> &
2142 entry = StrBugTypes.GetOrCreateValue(fullDesc);
2143 BugType *BT = entry.getValue();
2144 if (!BT) {
2145 BT = new BugType(name, category);
2146 entry.setValue(BT);
2147 }
2148 return BT;
2149}